Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/19 22:21:08 (5 years ago)
Author:
abeham
Message:

#1614: fixed compilation errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GQAP.cs

    r16728 r16961  
    3434using HeuristicLab.PluginInfrastructure;
    3535using HeuristicLab.Problems.Instances;
    36 using HEAL.Attic;
    3736
    3837namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
     
    9695    public GQAP() : base() {
    9796      Encoding = new IntegerVectorEncoding("Assignment");
    98       Parameters.Add(new OptionalValueParameter<GQAPAssignment>("BestKnownSolution", BestKnownSolutionDescription, null, false));
    99       Parameters.Add(new OptionalValueParameter<GQAPAssignmentArchive>("BestKnownSolutions", BestKnownSolutionsDescription, null, false));
    100       Parameters.Add(new ValueParameter<GQAPInstance>("ProblemInstance", "The problem instance that is to be solved.", new GQAPInstance(), false));
     97      Parameters.Add(new OptionalValueParameter<GQAPAssignment>("BestKnownSolution", BestKnownSolutionDescription, null) { GetsCollected = false });
     98      Parameters.Add(new OptionalValueParameter<GQAPAssignmentArchive>("BestKnownSolutions", BestKnownSolutionsDescription, null) { GetsCollected = false });
     99      Parameters.Add(new ValueParameter<GQAPInstance>("ProblemInstance", "The problem instance that is to be solved.", new GQAPInstance()) { GetsCollected = false });
    101100
    102101      InitializeOperators();
Note: See TracChangeset for help on using the changeset viewer.