Changeset 6046 for branches/histogram/HeuristicLab.Optimization
- Timestamp:
- 04/23/11 10:00:31 (14 years ago)
- Location:
- branches/histogram
- Files:
-
- 4 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram
- Property svn:ignore
-
old new 10 10 protoc.exe 11 11 HeuristicLab 3.3.5.1.ReSharper.user 12 *.psess 13 *.vsp
-
- Property svn:mergeinfo changed
/trunk/sources merged: 6026,6029-6031,6035-6037,6042-6045
- Property svn:ignore
-
branches/histogram/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r5954 r6046 120 120 <Compile Include="Interfaces\ILocalParticleUpdater.cs" /> 121 121 <Compile Include="Algorithms\HeuristicOptimizationAlgorithm.cs" /> 122 <Compile Include="Interfaces\IMultiNeighborhoodShakingOperator.cs" /> 123 <Compile Include="MoveHelper.cs" /> 122 124 <Compile Include="Problems\MultiObjectiveHeuristicOptimizationProblem.cs" /> 123 125 <Compile Include="Problems\HeuristicOptimizationProblem.cs" /> -
branches/histogram/HeuristicLab.Optimization/3.3/Interfaces/ILocalImprovementOperator.cs
r5753 r6046 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 23 using HeuristicLab.Core; 27 using HeuristicLab. Optimization;24 using HeuristicLab.Data; 28 25 29 26 namespace HeuristicLab.Optimization { 30 public interface ILocalImprovementOperator: IOperator { 31 void OnProblemChanged(IProblem problem); 27 public interface ILocalImprovementOperator : IOperator { 28 Type ProblemType { get; } 29 IProblem Problem { get; set; } 30 IValueLookupParameter<IntValue> MaximumIterationsParameter { get; } 31 ILookupParameter<IntValue> EvaluatedSolutionsParameter { get; } 32 ILookupParameter<ResultCollection> ResultsParameter { get; } 32 33 } 33 34 } -
branches/histogram/HeuristicLab.Optimization/3.3/Problems/SingleObjectiveHeuristicOptimizationProblem.cs
- Property svn:mergeinfo changed (with no actual effect on merging)
Note: See TracChangeset
for help on using the changeset viewer.