Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/11 14:33:18 (14 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.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs

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