Changeset 6195 for branches/histogram/HeuristicLab.Optimization
- Timestamp:
- 05/14/11 16:45:46 (14 years ago)
- Location:
- branches/histogram
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram
-
branches/histogram/HeuristicLab.Optimization/3.3/Algorithms/Algorithm.cs
r5954 r6195 260 260 public event EventHandler Prepared; 261 261 protected virtual void OnPrepared() { 262 ExecutionState = ExecutionState.Prepared; 262 263 ExecutionTime = TimeSpan.Zero; 263 ExecutionState = ExecutionState.Prepared; 264 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) { 265 statefulObject.InitializeState(); 266 } 264 267 EventHandler handler = Prepared; 265 268 if (handler != null) handler(this, EventArgs.Empty); … … 280 283 protected virtual void OnStopped() { 281 284 ExecutionState = ExecutionState.Stopped; 285 foreach (IStatefulItem statefulObject in this.GetObjectGraphObjects().OfType<IStatefulItem>()) { 286 statefulObject.ClearState(); 287 } 282 288 runsCounter++; 283 289 runs.Add(new Run(string.Format("{0} Run {1}", Name, runsCounter), this)); -
branches/histogram/HeuristicLab.Optimization/3.3/HeuristicLabOptimizationPlugin.cs.frame
r5446 r6195 26 26 /// Plugin class for HeuristicLab.Optimization plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Optimization", "3.3. 3.$WCREV$")]28 [Plugin("HeuristicLab.Optimization", "3.3.4.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Optimization-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] -
branches/histogram/HeuristicLab.Optimization/3.3/Problems/SingleObjectiveHeuristicOptimizationProblem.cs
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/histogram/HeuristicLab.Optimization/3.3/Properties/AssemblyInfo.frame
r5446 r6195 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 3.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.4.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.