aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-reasoning/src/main/java/tools/refinery/store/reasoning/rule/RuleAction.java
blob: bf980759477335c7a700d753aa1a04484a2d9b52 (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.Variable;

import java.util.List;

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

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