Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/28/10 04:11:23 (14 years ago)
Author:
swagner
Message:

Implemented first version of algorithm batch processing (#947).

Location:
trunk/sources/HeuristicLab.Optimization.Views/3.3
Files:
8 added
3 edited

Legend:

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

    r3225 r3226  
    5555      this.problemViewHost = new HeuristicLab.Core.Views.ViewHost();
    5656      this.resultsTabPage = new System.Windows.Forms.TabPage();
    57       this.resultsView = new HeuristicLab.Core.Views.VariableCollectionView();
     57      this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
    5858      this.startButton = new System.Windows.Forms.Button();
    5959      this.stopButton = new System.Windows.Forms.Button();
     
    192192                  | System.Windows.Forms.AnchorStyles.Left)
    193193                  | System.Windows.Forms.AnchorStyles.Right)));
    194       this.resultsView.Caption = "VariableCollection";
     194      this.resultsView.Caption = "ResultsCollection";
    195195      this.resultsView.Content = null;
    196196      this.resultsView.Location = new System.Drawing.Point(6, 6);
     
    319319    protected System.Windows.Forms.SaveFileDialog saveFileDialog;
    320320    protected System.Windows.Forms.TabPage resultsTabPage;
    321     protected HeuristicLab.Core.Views.VariableCollectionView resultsView;
     321    protected HeuristicLab.Optimization.Views.ResultCollectionView resultsView;
    322322
    323323  }
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.cs

    r3177 r3226  
    108108        problemViewHost.ViewType = null;
    109109        problemViewHost.Content = Content.Problem;
    110         resultsView.Content = Content.Results;
     110        resultsView.Content = Content.Results.AsReadOnly();
    111111        tabControl.Enabled = true;
    112112        startButton.Enabled = !Content.Finished;
     
    127127        Invoke(new EventHandler(Content_Prepared), sender, e);
    128128      else {
    129         resultsView.Content = Content.Results;
     129        resultsView.Content = Content.Results.AsReadOnly();
    130130        startButton.Enabled = !Content.Finished;
    131131        UpdateExecutionTimeTextBox();
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj

    r2900 r3226  
    9292      <DependentUpon>AlgorithmView.cs</DependentUpon>
    9393    </Compile>
     94    <Compile Include="BatchRunView.cs">
     95      <SubType>UserControl</SubType>
     96    </Compile>
     97    <Compile Include="BatchRunView.Designer.cs">
     98      <DependentUpon>BatchRunView.cs</DependentUpon>
     99    </Compile>
     100    <Compile Include="ResultCollectionListView.cs">
     101      <SubType>UserControl</SubType>
     102    </Compile>
     103    <Compile Include="ResultCollectionListView.Designer.cs">
     104      <DependentUpon>ResultCollectionListView.cs</DependentUpon>
     105    </Compile>
    94106    <Compile Include="UserDefinedAlgorithmView.cs">
    95107      <SubType>UserControl</SubType>
     
    112124    </Compile>
    113125    <Compile Include="Properties\AssemblyInfo.cs" />
     126    <Compile Include="ResultCollectionView.cs">
     127      <SubType>UserControl</SubType>
     128    </Compile>
     129    <Compile Include="ResultCollectionView.Designer.cs">
     130      <DependentUpon>ResultCollectionView.cs</DependentUpon>
     131    </Compile>
     132    <Compile Include="ResultView.cs">
     133      <SubType>UserControl</SubType>
     134    </Compile>
     135    <Compile Include="ResultView.Designer.cs">
     136      <DependentUpon>ResultView.cs</DependentUpon>
     137    </Compile>
    114138  </ItemGroup>
    115139  <ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.