]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/chr/plan/PrioritizedPlan.java
Diagram to SVG enhancements
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / chr / plan / PrioritizedPlan.java
1 package org.simantics.scl.compiler.elaboration.chr.plan;
2
3 import java.util.List;
4
5 import org.simantics.scl.compiler.elaboration.expressions.Variable;
6 import org.simantics.scl.compiler.internal.codegen.ssa.SSAFunction;
7
8 public class PrioritizedPlan {
9     public int priority;
10     public Variable activeFact;
11     public List<PlanOp> ops;
12     public SSAFunction implementation;
13     
14     public PrioritizedPlan(int priority, Variable activeFact, List<PlanOp> ops) {
15         this.priority = priority;
16         this.activeFact = activeFact;
17         this.ops = ops;
18     }
19 }