Changeset 16751 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces
- Timestamp:
- 04/03/19 15:37:38 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/IMultiObjectiveOptimizationSupport.cs
r16723 r16751 27 27 [StorableType("f924ef9c-d824-40d2-89b2-6dd1220df98b")] 28 28 public interface IMultiObjectiveOptimizationSupport { 29 void Analyze(I Solution[] individuals, double[][] qualities, ResultCollection results, IRandom random);29 void Analyze(IEncodedSolution[] individuals, double[][] qualities, ResultCollection results, IRandom random); 30 30 } 31 31 } -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Interfaces/ISingleObjectiveOptimizationSupport.cs
r16723 r16751 28 28 [StorableType("09d522e0-c10f-474c-b7c0-7d7f98e63f44")] 29 29 public interface ISingleObjectiveOptimizationSupport { 30 void Analyze(I Solution[] individuals, double[] qualities, ResultCollection results, IRandom random);31 IEnumerable<I Solution> GetNeighbors(ISolution individual, IRandom random);30 void Analyze(IEncodedSolution[] individuals, double[] qualities, ResultCollection results, IRandom random); 31 IEnumerable<IEncodedSolution> GetNeighbors(IEncodedSolution individual, IRandom random); 32 32 } 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.