Changeset 13372 for branches/ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces
- Timestamp:
- 11/24/15 17:22:41 (9 years ago)
- Location:
- branches/ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IMultiObjectiveOptimizationSupport.cs
r13183 r13372 25 25 namespace HeuristicLab.Problems.ExternalEvaluation { 26 26 public interface IMultiObjectiveOptimizationSupport { 27 void Analyze(I ndividual[] individuals, double[][] qualities, ResultCollection results, IRandom random);27 void Analyze(ISolution[] individuals, double[][] qualities, ResultCollection results, IRandom random); 28 28 } 29 29 } -
branches/ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/ISingleObjectiveOptimizationSupport.cs
r11961 r13372 26 26 namespace HeuristicLab.Problems.ExternalEvaluation { 27 27 public interface ISingleObjectiveOptimizationSupport { 28 void Analyze(I ndividual[] individuals, double[] qualities, ResultCollection results, IRandom random);29 IEnumerable<I ndividual> GetNeighbors(Individualindividual, IRandom random);28 void Analyze(ISolution[] individuals, double[] qualities, ResultCollection results, IRandom random); 29 IEnumerable<ISolution> GetNeighbors(ISolution individual, IRandom random); 30 30 } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.