1 package org.simantics.scl.compiler.elaboration.chr.plan;
5 import org.simantics.scl.compiler.elaboration.expressions.Variable;
6 import org.simantics.scl.compiler.internal.codegen.ssa.SSAFunction;
8 public class PrioritizedPlan {
10 public Variable activeFact;
11 public List<PlanOp> ops;
12 public SSAFunction implementation;
14 public PrioritizedPlan(int priority, Variable activeFact, List<PlanOp> ops) {
15 this.priority = priority;
16 this.activeFact = activeFact;