Free cookie consent management tool by TermsFeed Policy Generator

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

Removed max. and min. time offset constraints as algorithm parameters and from all engines. The time constraints were added to the relevant terminal symbols (variable & differential) instead. The time offset constraint can be changed by editing the symbols in the function library. #880 (Max and min time offsets for variable symbols are not set correctly by FunctionLibraryInjectors)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/ProblemSpecification.cs

    r2422 r2843  
    8383    }
    8484
    85     public int MaxTimeOffset { get; set; }
    86     public int MinTimeOffset { get; set; }
    87 
    8885    public bool AutoRegressive { get; set; }
    8986
     
    108105      LearningTask = original.LearningTask;
    109106      TargetVariable = original.TargetVariable;
    110       MinTimeOffset = original.MinTimeOffset;
    111       MaxTimeOffset = original.MaxTimeOffset;
    112107      AutoRegressive = original.AutoRegressive;
    113108      TrainingSamplesStart = original.TrainingSamplesStart;
     
    134129      return
    135130        other.LearningTask == LearningTask &&
    136         other.MinTimeOffset == MinTimeOffset &&
    137         other.MaxTimeOffset == MaxTimeOffset &&
    138131        other.AutoRegressive == AutoRegressive &&
    139132        other.TargetVariable == TargetVariable &&
     
    156149        LearningTask.GetHashCode() |
    157150        TargetVariable.GetHashCode() |
    158         MinTimeOffset.GetHashCode() |
    159         MaxTimeOffset.GetHashCode() |
    160151        AutoRegressive.GetHashCode() |
    161152        TrainingSamplesStart.GetHashCode() |
Note: See TracChangeset for help on using the changeset viewer.