Free cookie consent management tool by TermsFeed Policy Generator

Changeset 471


Ignore:
Timestamp:
08/08/08 21:15:01 (16 years ago)
Author:
gkronber
Message:

removed parameter TargetVariable since it is not needed for the FunctionLibraryInjector (#237)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StructureIdentification/FunctionLibraryInjector.cs

    r468 r471  
    3232namespace HeuristicLab.StructureIdentification {
    3333  public class FunctionLibraryInjector : OperatorBase {
    34     private const string TARGETVARIABLE = "TargetVariable";
    3534    private const string ALLOWEDFEATURES = "AllowedFeatures";
    3635    private const string MINTIMEOFFSET = "MinTimeOffset";
     
    4847    public FunctionLibraryInjector()
    4948      : base() {
    50       AddVariableInfo(new VariableInfo(TARGETVARIABLE, "Target variable", typeof(IntData), VariableKind.In));
    5149      AddVariableInfo(new VariableInfo(ALLOWEDFEATURES, "List of indexes of allowed features", typeof(ItemList<IntData>), VariableKind.In));
    5250      GetVariableInfo(ALLOWEDFEATURES).Local = true;
Note: See TracChangeset for help on using the changeset viewer.