Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/15 13:21:00 (9 years ago)
Author:
abeham
Message:

#2174:

  • Reopened maximization parameter in ExternalEvaluationProblem
  • Added hidden flag to maximization parameter in multi-objective programmable problem
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.4/ExternalEvaluationProblem.cs

    r11961 r12002  
    8585    public ExternalEvaluationProblem()
    8686      : base() {
     87      Parameters.Remove("Maximization"); // readonly in base class
     88      Parameters.Add(new FixedValueParameter<BoolValue>("Maximization", "Set to false if the problem should be minimized.", new BoolValue()));
    8789      Parameters.Add(new OptionalValueParameter<EvaluationCache>("Cache", "Cache of previously evaluated solutions."));
    8890      Parameters.Add(new ValueParameter<CheckedItemCollection<IEvaluationServiceClient>>("Clients", "The clients that are used to communicate with the external application.", new CheckedItemCollection<IEvaluationServiceClient>() { new EvaluationServiceClient() }));
Note: See TracChangeset for help on using the changeset viewer.