aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-dse/src/main/java/tools/refinery/store/dse/transition/callback/ActionCallback1.java
blob: 7e1dd5b7adeebd4ebcbfd0d89da2620573c05757 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.dse.transition.callback;

import tools.refinery.store.dse.transition.actions.ActionLiteral;
import tools.refinery.logic.term.NodeVariable;

import java.util.List;

@FunctionalInterface
public interface ActionCallback1 {
	List<ActionLiteral> toLiterals(NodeVariable v1);
}