Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/27/11 12:01:10 (13 years ago)
Author:
abeham
Message:

#1663

  • Added hiding of Maximization parameter
  • Fixed AfterDeserializationHook in KnapsackProblem
  • Ported ArtificialAntProblem to use the SingleObjectiveHeuristicOptimizationProblem base class
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/QuadraticAssignmentProblem.cs

    r6891 r6939  
    113113      Parameters.Add(new ValueParameter<DoubleMatrix>("Distances", "The distance matrix which can either be specified directly without the coordinates, or can be calculated automatically from the coordinates.", new DoubleMatrix(5, 5)));
    114114
    115       Maximization = new BoolValue(false);
     115      Maximization.Value = false;
     116      MaximizationParameter.Hidden = true;
    116117
    117118      Weights = new DoubleMatrix(new double[,] {
Note: See TracChangeset for help on using the changeset viewer.