Changeset 17360 for branches/2521_ProblemRefactoring
- Timestamp:
- 11/20/19 15:33:50 (5 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Schedule.cs
r17359 r17360 55 55 [StorableConstructor] 56 56 protected Schedule(StorableConstructorFlag _) : base(_) { } 57 pr ivateSchedule(Schedule original, Cloner cloner)57 protected Schedule(Schedule original, Cloner cloner) 58 58 : base(original, cloner) { 59 59 this.resources = cloner.Clone(original.Resources); -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/SingleObjectiveExternalEvaluationProblem.cs
r17320 r17360 93 93 public ExternalEvaluationProblem(TEncoding encoding) 94 94 : base(encoding) { 95 MaximizationParameter.ReadOnly = false; 95 96 MaximizationParameter.Value = new BoolValue(); // is a read-only bool value in base class 97 MaximizationParameter.ReadOnly = true; 96 98 Parameters.Add(new OptionalValueParameter<EvaluationCache>("Cache", "Cache of previously evaluated solutions.")); 97 99 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.