Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/17/13 13:38:25 (11 years ago)
Author:
mkommend
Message:

#2082: Updated external evaluation scientific branch to use the new HL data types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Matlab/3.3/MatlabParameterOptimizationProblem.cs

    r9690 r9715  
    3939      get { return (IFixedValueParameter<StringValue>)Parameters[QualityVariableParameterName]; }
    4040    }
    41     public IFixedValueParameter<TextFile> MatlabEvaluationScriptParameter {
    42       get { return (IFixedValueParameter<TextFile>)Parameters[MatlabEvaluationScriptParameterName]; }
     41    public IFixedValueParameter<TextFileValue> MatlabEvaluationScriptParameter {
     42      get { return (IFixedValueParameter<TextFileValue>)Parameters[MatlabEvaluationScriptParameterName]; }
    4343    }
    4444    #endregion
     
    4949      set { QualityVariableParameter.Value.Value = value; }
    5050    }
    51     public TextFile MatlabEvaluationScript {
     51    public TextFileValue MatlabEvaluationScript {
    5252      get { return MatlabEvaluationScriptParameter.Value; }
    5353    }
     
    6666      : base(new MatlabParameterVectorEvaluator()) {
    6767      Parameters.Add(new FixedValueParameter<StringValue>(QualityVariableParameterName, "The name of the quality variable of the SciLab script.", new StringValue("quality")));
    68       Parameters.Add(new FixedValueParameter<TextFile>(MatlabEvaluationScriptParameterName, "The path to the Matlab evaluation script.", new TextFile()));
     68      Parameters.Add(new FixedValueParameter<TextFileValue>(MatlabEvaluationScriptParameterName, "The path to the Matlab evaluation script.", new TextFileValue()));
    6969
    7070      MatlabEvaluationScript.FileDialogFilter = @"Matlab Scripts|*.m|All files|*.*";
Note: See TracChangeset for help on using the changeset viewer.