Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/11 14:33:18 (13 years ago)
Author:
mkommend
Message:

#1418: Added IHeuristicOptimizationProblem and adapted all according classes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.NSGA2/3.3/NSGA2.cs

    r5445 r5578  
    4646    #region Problem Properties
    4747    public override Type ProblemType {
    48       get { return typeof(IMultiObjectiveProblem); }
    49     }
    50     public new IMultiObjectiveProblem Problem {
    51       get { return (IMultiObjectiveProblem)base.Problem; }
     48      get { return typeof(IMultiObjectiveHeuristicOptimizationProblem); }
     49    }
     50    public new IMultiObjectiveHeuristicOptimizationProblem Problem {
     51      get { return (IMultiObjectiveHeuristicOptimizationProblem)base.Problem; }
    5252      set { base.Problem = value; }
    5353    }
Note: See TracChangeset for help on using the changeset viewer.