package org.simantics.scl.runtime.chr; public interface Fact { /** * Activates the fact with the given priority. The method returns * the new priority of the fact or a negative number if the fact * is deactivated. */ int activate(Object context, int priority); boolean isAlive(); }