package org.simantics.scl.compiler.elaboration.chr.plan; import java.util.List; import org.simantics.scl.compiler.elaboration.expressions.Variable; import org.simantics.scl.compiler.internal.codegen.ssa.SSAFunction; public class PrioritizedPlan { public int priority; public Variable activeFact; public List ops; public SSAFunction implementation; public PrioritizedPlan(int priority, Variable activeFact, List ops) { this.priority = priority; this.activeFact = activeFact; this.ops = ops; } }