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.SimulatedAnnealing/3.3/SimulatedAnnealing.cs

    r5445 r5578  
    4444    #region Problem Properties
    4545    public override Type ProblemType {
    46       get { return typeof(ISingleObjectiveProblem); }
    47     }
    48     public new ISingleObjectiveProblem Problem {
    49       get { return (ISingleObjectiveProblem)base.Problem; }
     46      get { return typeof(ISingleObjectiveHeuristicOptimizationProblem); }
     47    }
     48    public new ISingleObjectiveHeuristicOptimizationProblem Problem {
     49      get { return (ISingleObjectiveHeuristicOptimizationProblem)base.Problem; }
    5050      set { base.Problem = value; }
    5151    }
Note: See TracChangeset for help on using the changeset viewer.