Changeset 5287 for trunk/sources/HeuristicLab.Optimization
- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimization/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs
r5203 r5287 38 38 public override Image ItemImage { 39 39 get { 40 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;41 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStarted;42 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePaused;43 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;44 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;40 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 41 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted; 42 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused; 43 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 44 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 45 45 } 46 46 } -
trunk/sources/HeuristicLab.Optimization/3.3/BatchRun.cs
r4722 r5287 41 41 public override Image ItemImage { 42 42 get { 43 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;44 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStarted;45 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePaused;46 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;47 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;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; 47 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 48 48 } 49 49 } -
trunk/sources/HeuristicLab.Optimization/3.3/Experiment.cs
r4722 r5287 40 40 public override Image ItemImage { 41 41 get { 42 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePrepared;43 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStarted;44 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutablePaused;45 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VS 2008ImageLibrary.ExecutableStopped;46 else return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Event;42 if (ExecutionState == ExecutionState.Prepared) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePrepared; 43 else if (ExecutionState == ExecutionState.Started) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStarted; 44 else if (ExecutionState == ExecutionState.Paused) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutablePaused; 45 else if (ExecutionState == ExecutionState.Stopped) return HeuristicLab.Common.Resources.VSImageLibrary.ExecutableStopped; 46 else return HeuristicLab.Common.Resources.VSImageLibrary.Event; 47 47 } 48 48 } -
trunk/sources/HeuristicLab.Optimization/3.3/Problem.cs
r4722 r5287 39 39 40 40 public override Image ItemImage { 41 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Type; }41 get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; } 42 42 } 43 43 -
trunk/sources/HeuristicLab.Optimization/3.3/UserDefinedProblem.cs
r5193 r5287 24 24 using System.Drawing; 25 25 using System.Linq; 26 using System.Threading; 26 27 using HeuristicLab.Collections; 27 28 using HeuristicLab.Common; … … 30 31 using HeuristicLab.Parameters; 31 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 32 using System.Threading;33 33 34 34 namespace HeuristicLab.Optimization { … … 43 43 44 44 public override Image ItemImage { 45 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Type; }45 get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; } 46 46 } 47 47 public new ParameterCollection Parameters { … … 262 262 263 263 public override Image ItemImage { 264 get { return HeuristicLab.Common.Resources.VS 2008ImageLibrary.Method; }264 get { return HeuristicLab.Common.Resources.VSImageLibrary.Method; } 265 265 } 266 266 }
Note: See TracChangeset
for help on using the changeset viewer.