- Timestamp:
- 01/03/11 22:20:03 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Algorithm.cs
r4722 r5203 124 124 executionState = ExecutionState.Stopped; 125 125 executionTime = TimeSpan.Zero; 126 storeAlgorithmInEachRun = true;126 storeAlgorithmInEachRun = false; 127 127 runsCounter = 0; 128 128 Runs = new RunCollection(); … … 132 132 executionState = ExecutionState.Stopped; 133 133 executionTime = TimeSpan.Zero; 134 storeAlgorithmInEachRun = true;134 storeAlgorithmInEachRun = false; 135 135 runsCounter = 0; 136 136 Runs = new RunCollection(); … … 140 140 executionState = ExecutionState.Stopped; 141 141 executionTime = TimeSpan.Zero; 142 storeAlgorithmInEachRun = true;142 storeAlgorithmInEachRun = false; 143 143 runsCounter = 0; 144 144 Runs = new RunCollection(); … … 148 148 executionState = ExecutionState.Stopped; 149 149 executionTime = TimeSpan.Zero; 150 storeAlgorithmInEachRun = true;150 storeAlgorithmInEachRun = false; 151 151 runsCounter = 0; 152 152 Runs = new RunCollection(); … … 156 156 executionState = ExecutionState.Stopped; 157 157 executionTime = TimeSpan.Zero; 158 storeAlgorithmInEachRun = true;158 storeAlgorithmInEachRun = false; 159 159 runsCounter = 0; 160 160 Runs = new RunCollection(); 161 161 } 162 162 [StorableConstructor] 163 protected Algorithm(bool deserializing) 164 : base(deserializing) { 165 storeAlgorithmInEachRun = true; 166 } 163 protected Algorithm(bool deserializing) : base(deserializing) { } 167 164 [StorableHook(HookType.AfterDeserialization)] 168 165 private void AfterDeserialization() {
Note: See TracChangeset
for help on using the changeset viewer.