Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/13/12 14:21:43 (13 years ago)
Author:
ascheibe
Message:

#1745 added result storing operations for the reducer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/ParallelIslandGeneticAlgorithmMainLoop.cs

    r7323 r7325  
    271271      generationsReducer.TargetParameterName.Value = new StringValue("Generations");
    272272      generationsReducer.ReductionOperation.Value = new ReductionType(ReductionTypes.Min);
     273      generationsReducer.TargetOperation.Value = new TargetOperationType(TargetOperationTypes.Sum);
    273274
    274275      evaluatedSolutionsReducer.Name = "Increment Evaluated Solutions";
     
    276277      evaluatedSolutionsReducer.TargetParameterName.Value = new StringValue(EvaluatedSolutionsParameter.Name);
    277278      evaluatedSolutionsReducer.ReductionOperation.Value = new ReductionType(ReductionTypes.Sum);
     279      evaluatedSolutionsReducer.TargetOperation.Value = new TargetOperationType(TargetOperationTypes.Sum);
    278280
    279281      emigrantsSelector.Name = "Emigrants Selector (placeholder)";
Note: See TracChangeset for help on using the changeset viewer.