Changeset 6569 for branches/QAPAlgorithms/HeuristicLab.Optimization/3.3
- Timestamp:
- 07/17/11 22:51:11 (13 years ago)
- Location:
- branches/QAPAlgorithms
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAPAlgorithms
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/QAPAlgorithms/HeuristicLab.Optimization/3.3/BatchRun.cs
r5445 r6569 41 41 public override Image ItemImage { 42 42 get { 43 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary. ExecutablePrepared;44 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary. ExecutableStarted;45 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary. ExecutablePaused;46 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary. ExecutableStopped;43 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.BatchRunPrepared; 44 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.BatchRunStarted; 45 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.BatchRunPaused; 46 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.BatchRunStopped; 47 47 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 48 48 } … … 220 220 if (clearRuns) runs.Clear(); 221 221 Optimizer.Prepare(clearRuns); 222 } else { 223 ExecutionState = ExecutionState.Stopped; 222 224 } 223 225 } -
branches/QAPAlgorithms/HeuristicLab.Optimization/3.3/Experiment.cs
r5445 r6569 41 41 public override Image ItemImage { 42 42 get { 43 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.Ex ecutablePrepared;44 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.Ex ecutableStarted;45 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.Ex ecutablePaused;46 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.Ex ecutableStopped;43 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExperimentPrepared; 44 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExperimentStarted; 45 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExperimentPaused; 46 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExperimentStopped; 47 47 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 48 48 } -
branches/QAPAlgorithms/HeuristicLab.Optimization/3.3/HeuristicLabOptimizationPlugin.cs.frame
r6099 r6569 26 26 /// Plugin class for HeuristicLab.Optimization plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Optimization", "3.3. 4.$WCREV$")]28 [Plugin("HeuristicLab.Optimization", "3.3.5.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Optimization-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/QAPAlgorithms/HeuristicLab.Optimization/3.3/Problems/SingleObjectiveHeuristicOptimizationProblem.cs
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/QAPAlgorithms/HeuristicLab.Optimization/3.3/Properties/AssemblyInfo.frame
r6099 r6569 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 4.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.5.$WCREV$")] -
branches/QAPAlgorithms/HeuristicLab.Optimization/3.3/ResultCollection.cs
r5445 r6569 40 40 return new ResultCollection(this, cloner); 41 41 } 42 43 public override System.Drawing.Image ItemImage { 44 get { return HeuristicLab.Common.Resources.VSImageLibrary.Object; } 45 } 42 46 } 43 47 }
Note: See TracChangeset
for help on using the changeset viewer.