Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/17/10 19:22:45 (14 years ago)
Author:
gkronber
Message:

Removed access to local variable DIFFERENTIALS_ALLOWED in time series prognosis engines. #877 (Predefined GP engines for time series prognosis are defect because of the removal of local variables of function library injectors in #748)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/FunctionLibraryInjectors/DefaultFunctionLibraryInjector.cs

    r2728 r2821  
    126126      return functionLibrary;
    127127    }
    128 
    129     private void ConditionalAddFunction(string condName, IFunction fun, List<IFunction> list) {
    130       if (GetVariableValue<BoolData>(condName, null, false).Data) list.Add(fun);
    131     }
    132 
    133     private void ConditionalAddOperator(string condName, FunctionLibrary functionLib, IFunction op) {
    134       if (GetVariableValue<BoolData>(condName, null, false).Data) functionLib.AddFunction(op);
    135     }
    136128  }
    137129}
Note: See TracChangeset for help on using the changeset viewer.