Ignore:
Timestamp:
07/09/10 17:01:36 (3 years ago)
Author:
gkronber
Message:

Worked on symbolic regression classes to prepare for time series prognosis plugin. #1081

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/SimpleArithmeticExpressionInterpreter.cs

    r3996 r4022  
    2121 
    2222using System; 
     23using System.Linq; 
    2324using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 
    2425using HeuristicLab.Common; 
     
    9798    private Instruction[] code; 
    9899    private int pc; 
     100    private double[] argumentStack = new double[ARGUMENT_STACK_SIZE]; 
     101    private int argStackPointer; 
    99102 
    100103    public override bool CanChangeName { 
     
    140143    } 
    141144 
    142     private double[] argumentStack = new double[ARGUMENT_STACK_SIZE]; 
    143     private int argStackPointer; 
    144  
    145     public double Evaluate() { 
    146       var currentInstr = code[pc++]; 
     145    private double Evaluate() { 
     146      Instruction currentInstr = code[pc++]; 
    147147      switch (currentInstr.opCode) { 
    148148        case OpCodes.Add: { 
Note: See TracChangeset for help on using the changeset viewer.