astra.reasoner.node.ReasonerNodeFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-interpreter Show documentation
Show all versions of astra-interpreter Show documentation
Core interpreter artifact for the ASTRA Language
package astra.reasoner.node;
import java.util.Map;
import astra.formula.Formula;
import astra.term.Term;
public interface ReasonerNodeFactory {
ReasonerNode create(T formula, Map bindings, boolean singleResult);
ReasonerNode create(ReasonerNode node, T formula, Map bindings, boolean singleResult);
}