Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/30/11 02:42:47 (13 years ago)
Author:
abeham
Message:

#567

  • Considered new base class names SingleObjectiveHeuristicOptimizationProblem<T, U> and MultiObjectiveHeuristicOptimizationProblem<T, U>
  • Updated template files
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/Templates/HeuristicLab.VS2010Wizards/ProblemWizardForm.cs

    r5704 r5878  
    7676
    7777      if (IsSingleObjective) {
    78         ProblemTypeImplementation = "SingleObjectiveProblem<" + EvaluatorType + ", " + SolutionCreatorType + ">";
     78        ProblemTypeImplementation = "SingleObjectiveHeuristicOptimizationProblem<" + EvaluatorType + ", " + SolutionCreatorType + ">";
    7979      } else if (IsMultiObjective) {
    80         ProblemTypeImplementation = "MultiObjectiveProblem<" + EvaluatorType + ", " + SolutionCreatorType + ">";
     80        ProblemTypeImplementation = "MultiObjectiveHeuristicOptimizationProblem<" + EvaluatorType + ", " + SolutionCreatorType + ">";
    8181      }
    8282    }
Note: See TracChangeset for help on using the changeset viewer.