- Timestamp:
- 03/01/11 14:33:18 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis Refactoring/HeuristicLab.Algorithms.SimulatedAnnealing/3.3/SimulatedAnnealing.cs
r5445 r5578 44 44 #region Problem Properties 45 45 public override Type ProblemType { 46 get { return typeof(ISingleObjective Problem); }47 } 48 public new ISingleObjective Problem Problem {49 get { return (ISingleObjective Problem)base.Problem; }46 get { return typeof(ISingleObjectiveHeuristicOptimizationProblem); } 47 } 48 public new ISingleObjectiveHeuristicOptimizationProblem Problem { 49 get { return (ISingleObjectiveHeuristicOptimizationProblem)base.Problem; } 50 50 set { base.Problem = value; } 51 51 }
Note: See TracChangeset
for help on using the changeset viewer.