Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/20/19 15:33:50 (5 years ago)
Author:
abeham
Message:

#2521: fixed some unit tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/SingleObjectiveExternalEvaluationProblem.cs

    r17320 r17360  
    9393    public ExternalEvaluationProblem(TEncoding encoding)
    9494      : base(encoding) {
     95      MaximizationParameter.ReadOnly = false;
    9596      MaximizationParameter.Value = new BoolValue(); // is a read-only bool value in base class
     97      MaximizationParameter.ReadOnly = true;
    9698      Parameters.Add(new OptionalValueParameter<EvaluationCache>("Cache", "Cache of previously evaluated solutions."));
    9799      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.