Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/25/13 12:37:18 (11 years ago)
Author:
sforsten
Message:

#1980:

  • fixed several bugs (crossover, subsumption, serialization etc.)
  • added ModuloOperator
  • CombinedIntegerVectorClassificationProblem\Data and VariableVectorClassificationProblem\Data inherit from ConditionActionClassificationProblem\Data
  • it can now be set how often the analyzers have to be executed
  • VariableVectorAction, VariableVectorCondition and VariableVectorInput now inherit from Item
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/LearningClassifierSystems/HeuristicLab.Algorithms.LearningClassifierSystems/3.3/LearningClassifierSystem.cs

    r9204 r9242  
    123123    public IConstrainedValueParameter<IManipulator> MutatorParameter {
    124124      get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
     125    }
     126    public ValueParameter<IntValue> AnalyzeInIterationParameter {
     127      get { return (ValueParameter<IntValue>)Parameters["AnalyzeInIteration"]; }
    125128    }
    126129    #endregion
     
    253256      Parameters.Add(new ConstrainedValueParameter<ICrossover>("Crossover", "The operator used to cross solutions."));
    254257      Parameters.Add(new ConstrainedValueParameter<IManipulator>("Mutator", "The operator used to mutate solutions."));
     258      Parameters.Add(new ValueParameter<IntValue>("AnalyzeInIteration", "", new IntValue(50)));
    255259      #endregion
    256260
     
    275279      mainLoop.MutatorParameter.ActualName = MutatorParameter.Name;
    276280      mainLoop.CrossoverProbabilityParameter.ActualName = CrossoverProbabilityParameter.Name;
     281      mainLoop.AnalyzeInIterationParameter.ActualName = AnalyzeInIterationParameter.Name;
    277282      #endregion
    278283
Note: See TracChangeset for help on using the changeset viewer.