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

import tools.refinery.store.model.Model;
import tools.refinery.logic.term.NodeVariable;

import java.util.List;

public interface ActionLiteral {
	List<NodeVariable> getInputVariables();

	List<NodeVariable> getOutputVariables();

	BoundActionLiteral bindToModel(Model model);
}