Changeset 15719 for branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Timestamp:
- 02/04/18 21:31:38 (7 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Files:
-
- 7 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization
- Property svn:mergeinfo changed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3
- Property svn:ignore
-
old new 5 5 *.vs10x 6 6 Plugin.cs 7 *.DotSettings
-
- Property svn:ignore
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs
r15605 r15719 221 221 } 222 222 public virtual void CollectResultValues(IDictionary<string, IItem> values) { 223 values.Add("Execution Time", new TimeSpanValue(ExecutionTime)); 223 if (!Results.ContainsKey("Execution Time")) 224 values.Add("Execution Time", new TimeSpanValue(ExecutionTime)); 224 225 Results.CollectResultValues(values); 225 226 } -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Algorithms/EngineAlgorithm.cs
r15605 r15719 170 170 context = new ExecutionContext(context, operatorGraph.InitialOperator, globalScope); 171 171 engine.Prepare(context); 172 engine.Log.Clear(); 172 173 } 173 174 } -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r15688 r15719 158 158 <Compile Include="Interfaces\IPopulationReducer.cs" /> 159 159 <Compile Include="MultiObjective\DominationCalculator.cs" /> 160 <Compile Include="Interfaces\IPreexistingSolutionCreator.cs" /> 161 <Compile Include="Interfaces\ISolutionModel.cs" /> 160 162 <Compile Include="Results\IResultParameter.cs" /> 161 163 <Compile Include="Interfaces\ISingleObjectiveOperator.cs" /> … … 173 175 <Compile Include="MetaOptimizers\TimeLimitRun.cs" /> 174 176 <Compile Include="Results\ResultParameter.cs" /> 177 <Compile Include="RunCollection.cs"> 178 <SubType>Code</SubType> 179 </Compile> 175 180 <Compile Include="RunCollectionModification\RunCollectionRunRemover.cs" /> 176 181 <Compile Include="Plugin.cs" /> … … 230 235 <Compile Include="OptimizerList.cs" /> 231 236 <Compile Include="Interfaces\IOptimizer.cs" /> 232 <Compile Include="RunCollection.cs" />233 237 <Compile Include="Run.cs" /> 234 238 <Compile Include="Results\IResult.cs" /> -
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Problems/SingleObjectiveHeuristicOptimizationProblem.cs
- Property svn:mergeinfo changed
/branches/PerformanceComparison/HeuristicLab.Optimization/3.3/Problems/SingleObjectiveHeuristicOptimizationProblem.cs (added) merged: 13475,14600,15256,15330
- Property svn:mergeinfo changed
-
branches/1614_GeneralizedQAP/HeuristicLab.Optimization/3.3/Results/ResultParameter.cs
r15605 r15719 40 40 get { return resultCollectionName; } 41 41 set { 42 if (value == null) throw new ArgumentNullException(); 42 43 if (string.IsNullOrWhiteSpace(value)) throw new ArgumentNullException(); 43 44 else if (!value.Equals(resultCollectionName)) {
Note: See TracChangeset
for help on using the changeset viewer.