Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/10/20 12:15:23 (4 years ago)
Author:
mkommend
Message:

#2521: Added first version of new results. The first algorithm that has been adapted for testing purposes is the hill climber.

Location:
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.IntegerVectorEncoding/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorMultiObjectiveProblem.cs

    r17587 r17594  
    3535  public abstract class IntegerVectorMultiObjectiveProblem : MultiObjectiveProblem<IntegerVectorEncoding, IntegerVector> {
    3636    [Storable] protected IResultParameter<ParetoFrontScatterPlot<IntegerVector>> BestResultParameter { get; private set; }
    37     public IResultDefinition<ParetoFrontScatterPlot<IntegerVector>> BestResult { get { return BestResultParameter; } }
     37    //public IResultDefinition<ParetoFrontScatterPlot<IntegerVector>> BestResult { get { return BestResultParameter; } }
    3838    [Storable] protected ReferenceParameter<IntValue> DimensionRefParameter { get; private set; }
    3939    [Storable] protected ReferenceParameter<IntMatrix> BoundsRefParameter { get; private set; }
  • branches/2521_ProblemRefactoring/HeuristicLab.Encodings.IntegerVectorEncoding/3.3/IntegerVectorProblem.cs

    r17587 r17594  
    3636  public abstract class IntegerVectorProblem : SingleObjectiveProblem<IntegerVectorEncoding, IntegerVector> {
    3737    [Storable] protected IResultParameter<IntegerVector> BestResultParameter { get; private set; }
    38     public IResultDefinition<IntegerVector> BestResult { get => BestResultParameter; }
     38    //public IResultDefinition<IntegerVector> BestResult { get => BestResultParameter; }
    3939    [Storable] protected ReferenceParameter<IntValue> DimensionRefParameter { get; private set; }
    4040    [Storable] protected ReferenceParameter<IntMatrix> BoundsRefParameter { get; private set; }
Note: See TracChangeset for help on using the changeset viewer.