Changeset 9688
- Timestamp:
- 07/01/13 12:31:59 (11 years ago)
- Location:
- branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/ScilabParameterOptimizationProblem.cs
r9682 r9688 65 65 public ScilabParameterOptimizationProblem() 66 66 : base(new ScilabParameterVectorEvaluator()) { 67 Parameters.Add(new FixedValueParameter<StringValue>(QualityVariableParameterName, "The name of the quality variable of the Sci Lab script.", new StringValue("quality")));67 Parameters.Add(new FixedValueParameter<StringValue>(QualityVariableParameterName, "The name of the quality variable of the Scilab script.", new StringValue("quality"))); 68 68 Parameters.Add(new FixedValueParameter<TextFile>(ScilabEvaluationScriptParameterName, "The path to the Scilab evaluation script.", new TextFile())); 69 69 -
branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Scilab/3.3/ScilabParameterVectorEvaluator.cs
r9682 r9688 65 65 : base() { 66 66 Parameters.Add(new LookupParameter<StringValue>(QualityVariableParameterName, "The name of the quality variable of the SciLab script.")); 67 Parameters.Add(new LookupParameter<TextFile>(ScilabEvaluationScriptParameterName, "The path to the Sci Lab evaluation script."));68 Parameters.Add(new FixedValueParameter<TextFile>(InitializationScriptParameterName, "The path to a Sci Lab script the should be execute before the evaluation starts.", new TextFile()));67 Parameters.Add(new LookupParameter<TextFile>(ScilabEvaluationScriptParameterName, "The path to the Scilab evaluation script.")); 68 Parameters.Add(new FixedValueParameter<TextFile>(InitializationScriptParameterName, "The path to a Scilab script the should be execute before the evaluation starts.", new TextFile())); 69 69 } 70 70
Note: See TracChangeset
for help on using the changeset viewer.