Changeset 3506
- Timestamp:
- 04/23/10 02:49:09 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.cs
r3455 r3506 149 149 IContentView view = MainFormManager.CreateDefaultView(Content.Algorithm.Clone()); 150 150 if (view != null) { 151 view.ReadOnly = ReadOnly;152 view.Locked = Locked;153 151 view.Show(); 154 152 } -
trunk/sources/HeuristicLab.Optimization/3.3/Run.cs
r3428 r3506 106 106 private void Initialize(IAlgorithm algorithm) { 107 107 this.algorithm = algorithm; 108 this.algorithm.Runs.Clear();109 108 parameters = new Dictionary<string, IItem>(); 110 109 results = new Dictionary<string, IItem>(); 111 110 this.algorithm.CollectParameterValues(parameters); 112 111 this.algorithm.CollectResultValues(results); 112 this.algorithm.Prepare(true); 113 113 } 114 114
Note: See TracChangeset
for help on using the changeset viewer.