astra.reasoner.EventUnifier 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;
import java.util.Map;
import astra.core.Agent;
import astra.event.Event;
import astra.term.Term;
public interface EventUnifier {
public Map unify(T source, T target, Agent agent);
}