Changeset 11029 for branches/HeuristicLab.ExternalEvaluation Scientific
- Timestamp:
- 06/20/14 15:39:52 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Matlab/3.3/MatlabParameterOptimizationProblem.cs
r10594 r11029 34 34 private const string QualityVariableParameterName = "QualityVariableName"; 35 35 private const string MatlabEvaluationScriptParameterName = "MATLABEvaluationScript"; 36 private const string MatlabInitializationScriptParameterName = "MATLABInitializationScript"; 36 37 37 38 #region parameters … … 41 42 public IFixedValueParameter<TextFileValue> MatlabEvaluationScriptParameter { 42 43 get { return (IFixedValueParameter<TextFileValue>)Parameters[MatlabEvaluationScriptParameterName]; } 44 } 45 public IFixedValueParameter<TextFileValue> MatlabInitializationScriptParameter { 46 get { return (IFixedValueParameter<TextFileValue>)Parameters[MatlabInitializationScriptParameterName]; } 43 47 } 44 48 #endregion … … 51 55 public TextFileValue MatlabEvaluationScript { 52 56 get { return MatlabEvaluationScriptParameter.Value; } 57 } 58 public TextFileValue MatlabInitializationScript { 59 get { return MatlabInitializationScriptParameter.Value; } 53 60 } 54 61 #endregion … … 67 74 Parameters.Add(new FixedValueParameter<StringValue>(QualityVariableParameterName, "The name of the quality variable of the MATLAB script.", new StringValue("quality"))); 68 75 Parameters.Add(new FixedValueParameter<TextFileValue>(MatlabEvaluationScriptParameterName, "The path to the MATLAB evaluation script.", new TextFileValue())); 76 Parameters.Add(new FixedValueParameter<TextFileValue>(MatlabInitializationScriptParameterName, "The path to a MATLAB script the should be execute before the evaluation starts.", new TextFileValue())); 69 77 70 78 MatlabEvaluationScript.FileDialogFilter = @"MATLAB Scripts|*.m|All files|*.*";
Note: See TracChangeset
for help on using the changeset viewer.