Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/18/20 00:25:54 (4 years ago)
Author:
abeham
Message:

#2521: working on problems / fixing P3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment/3.3/QuadraticAssignmentProblem.cs

    r17544 r17680  
    106106      : base(new PermutationEncoding("Assignment") { Length = 5 }) {
    107107      Maximization = false;
     108      Encoding.LengthParameter.ReadOnly = DimensionRefParameter.ReadOnly = true;
     109      Encoding.PermutationTypeParameter.ReadOnly = PermutationTypeRefParameter.ReadOnly = true;
     110      PermutationTypeRefParameter.Hidden = true;
     111
    108112      Parameters.Add(BestKnownSolutionsParameter = new OptionalValueParameter<ItemSet<Permutation>>("BestKnownSolutions", "The list of best known solutions which is updated whenever a new better solution is found or may be the optimal solution if it is known beforehand.", null));
    109113      Parameters.Add(BestKnownSolutionParameter = new OptionalValueParameter<Permutation>("BestKnownSolution", "The best known solution which is updated whenever a new better solution is found or may be the optimal solution if it is known beforehand.", null));
Note: See TracChangeset for help on using the changeset viewer.