Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3506 for trunk


Ignore:
Timestamp:
04/23/10 02:49:09 (14 years ago)
Author:
swagner
Message:

Continued work on algorithm batch processing (#947)

Location:
trunk/sources
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.cs

    r3455 r3506  
    149149        IContentView view = MainFormManager.CreateDefaultView(Content.Algorithm.Clone());
    150150        if (view != null) {
    151           view.ReadOnly = ReadOnly;
    152           view.Locked = Locked;
    153151          view.Show();
    154152        }
  • trunk/sources/HeuristicLab.Optimization/3.3/Run.cs

    r3428 r3506  
    106106    private void Initialize(IAlgorithm algorithm) {
    107107      this.algorithm = algorithm;
    108       this.algorithm.Runs.Clear();
    109108      parameters = new Dictionary<string, IItem>();
    110109      results = new Dictionary<string, IItem>();
    111110      this.algorithm.CollectParameterValues(parameters);
    112111      this.algorithm.CollectResultValues(results);
     112      this.algorithm.Prepare(true);
    113113    }
    114114
Note: See TracChangeset for help on using the changeset viewer.