Exemple #1
0
 public State(int n)
 {
     pool    = new VariablesPool(n);
     stack   = new EvaluationStack();
     visitor = new IntVisitor(this);
 }
Exemple #2
0
 private State(VariablesPool pool, EvaluationStack stack)
 {
     this.pool  = pool;
     this.stack = stack;
     visitor    = new IntVisitor(this);
 }