Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/07/09 16:50:07 (15 years ago)
Author:
gkronber
Message:
  • Reimplemented method to read a list of already executed algorithms and configurations from the results DB
  • Fixed a bug in the GridExecuter
  • Added a button in the dispatcher view to speed up configuration of input variables

#712

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/DispatcherView.cs

    r2223 r2258  
    7171      inputVariableList.Enabled = true;
    7272    }
     73
     74    private void setAllButton_Click(object sender, EventArgs e) {     
     75      foreach (string targetVar in dispatcher.TargetVariables) {
     76        for (int i = 0; i < inputVariableList.Items.Count; i++) {
     77          if (inputVariableList.GetItemChecked(i)) {
     78            dispatcher.EnableInputVariable(targetVar, (string)inputVariableList.Items[i]);
     79          } else {
     80            dispatcher.DisableInputVariable(targetVar, (string)inputVariableList.Items[i]);
     81          }
     82        }
     83      }
     84    }
    7385  }
    7486}
Note: See TracChangeset for help on using the changeset viewer.