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.Scilab/3.3/ScilabParameterOptimizationProblem.cs

    r9688 r9715  
    3939      get { return (IFixedValueParameter<StringValue>)Parameters[QualityVariableParameterName]; }
    4040    }
    41     public IFixedValueParameter<TextFile> ScilabEvaluationScriptParameter {
    42       get { return (IFixedValueParameter<TextFile>)Parameters[ScilabEvaluationScriptParameterName]; }
     41    public IFixedValueParameter<TextFileValue> ScilabEvaluationScriptParameter {
     42      get { return (IFixedValueParameter<TextFileValue>)Parameters[ScilabEvaluationScriptParameterName]; }
    4343    }
    4444    #endregion
     
    4949      set { QualityVariableParameter.Value.Value = value; }
    5050    }
    51     public TextFile ScilabEvaluationScript {
     51    public TextFileValue ScilabEvaluationScript {
    5252      get { return ScilabEvaluationScriptParameter.Value; }
    5353    }
     
    6666      : base(new ScilabParameterVectorEvaluator()) {
    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>(ScilabEvaluationScriptParameterName, "The path to the Scilab evaluation script.", new TextFile()));
     68      Parameters.Add(new FixedValueParameter<TextFileValue>(ScilabEvaluationScriptParameterName, "The path to the Scilab evaluation script.", new TextFileValue()));
    6969
    7070      ScilabEvaluationScript.FileDialogFilter = @"Scilab Scripts|*.sce|All files|*.*";
Note: See TracChangeset for help on using the changeset viewer.