aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/rule/RuleAction.java
blob: 4753b8bc3ce5a72b28c5a9a81bfc6c170ec3bd03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package tools.refinery.store.reasoning.rule;

import tools.refinery.store.model.Model;
import tools.refinery.store.query.term.Variable;

import java.util.List;

public interface RuleAction {
	List<Variable> arguments();

	RuleActionExecutor createExecutor(int[] argumentIndices, Model model);
}