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