- Timestamp:
- 01/19/16 08:49:23 (9 years ago)
- Location:
- branches/PerformanceComparison/HeuristicLab.Optimization/3.3
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r13475 r13551 198 198 <Compile Include="BasicProblems\Operators\SingleObjectiveMoveMaker.cs" /> 199 199 <Compile Include="BasicProblems\SingleObjectiveBasicProblem.cs" /> 200 <Compile Include="Interfaces\ICharacteristicCalculator.cs" /> 200 201 <Compile Include="Interfaces\ILocalImprovementAlgorithmOperator.cs" /> 201 202 <Compile Include="Interfaces\IMultiObjectiveOperator.cs" /> -
branches/PerformanceComparison/HeuristicLab.Optimization/3.3/Interfaces/ICharacteristicCalculator.cs
r13540 r13551 27 27 IEnumerable<string> Characteristics { get; } 28 28 bool CanCalculate(IProblem problem); 29 IEnumerable<KeyValuePair<string, double>> Calculate(IProblem problem, IEnumerable<string> characteristics = null);29 IEnumerable<KeyValuePair<string, IItem>> Calculate(IProblem problem, IEnumerable<string> characteristics = null); 30 30 } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.