Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/10/10 23:54:46 (14 years ago)
Author:
abeham
Message:

#567

  • Started adding problem wizard
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/Templates/HeuristicLab.VS2010Wizards/AlgorithmWizardForm.cs

    r4187 r4188  
    3737    public AlgorithmWizardForm() {
    3838      InitializeComponent();
    39       AlgorithmName = algorithmNameTextBox.Text;
    40       AlgorithmDescription = algorithmDescriptionTextBox.Text;
    41       IsMultiObjective = isMultiObjectiveCheckBox.Checked;
     39      parametersControl.AddParameter("SetSeedRandomly", "Value", "BoolValue", "True if the random seed should be set to a random value, otherwise false.", "new BoolValue(true)");
     40      parametersControl.AddParameter("Seed", "Value", "IntValue", "The random seed used to initialize the new pseudo random number generator.", string.Empty);
     41      parametersControl.AddParameter("Analyzer", "Value", "MultiAnalyzer", "The operator used to analyze each iteration.", "new MultiAnalyzer()");
    4242    }
    4343
Note: See TracChangeset for help on using the changeset viewer.