Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.ExternalEvaluation.Matlab/3.3/MatlabParameterOptimizationProblem.cs @ 17184

Last change on this file since 17184 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 3.9 KB
RevLine 
[9690]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[9690]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Common;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Parameters;
[16565]26using HEAL.Attic;
[9690]27using HeuristicLab.Problems.ParameterOptimization;
28
29namespace HeuristicLab.Problems.ExternalEvaluation.Matlab {
[9748]30  [Item("MATLAB Parameter Optimization Problem", "Optimization of a parameter vector which is evaluated in MATLAB.")]
[16565]31  [StorableType("CC937102-7280-484C-BB85-88C357E31C6B")]
[12504]32  [Creatable(CreatableAttribute.Categories.ExternalEvaluationProblems, Priority = 110)]
[9690]33  public class MatlabParameterOptimizationProblem : ParameterOptimizationProblem {
34    private const string QualityVariableParameterName = "QualityVariableName";
[9748]35    private const string MatlabEvaluationScriptParameterName = "MATLABEvaluationScript";
[11029]36    private const string MatlabInitializationScriptParameterName = "MATLABInitializationScript";
[9690]37
38    #region parameters
39    public IFixedValueParameter<StringValue> QualityVariableParameter {
40      get { return (IFixedValueParameter<StringValue>)Parameters[QualityVariableParameterName]; }
41    }
[9715]42    public IFixedValueParameter<TextFileValue> MatlabEvaluationScriptParameter {
43      get { return (IFixedValueParameter<TextFileValue>)Parameters[MatlabEvaluationScriptParameterName]; }
[9690]44    }
[11029]45    public IFixedValueParameter<TextFileValue> MatlabInitializationScriptParameter {
46      get { return (IFixedValueParameter<TextFileValue>)Parameters[MatlabInitializationScriptParameterName]; }
47    }
[9690]48    #endregion
49
50    #region properties
51    public string QualityVariable {
52      get { return QualityVariableParameter.Value.Value; }
53      set { QualityVariableParameter.Value.Value = value; }
54    }
[9715]55    public TextFileValue MatlabEvaluationScript {
[9690]56      get { return MatlabEvaluationScriptParameter.Value; }
57    }
[11029]58    public TextFileValue MatlabInitializationScript {
59      get { return MatlabInitializationScriptParameter.Value; }
60    }
[9690]61    #endregion
62
63    [StorableConstructor]
[16565]64    protected MatlabParameterOptimizationProblem(StorableConstructorFlag _) : base(_) { }
[9690]65    protected MatlabParameterOptimizationProblem(MatlabParameterOptimizationProblem original, Cloner cloner)
66      : base(original, cloner) {
67    }
68    public override IDeepCloneable Clone(Cloner cloner) {
69      return new MatlabParameterOptimizationProblem(this, cloner);
70    }
71
72    public MatlabParameterOptimizationProblem()
73      : base(new MatlabParameterVectorEvaluator()) {
[9748]74      Parameters.Add(new FixedValueParameter<StringValue>(QualityVariableParameterName, "The name of the quality variable of the MATLAB script.", new StringValue("quality")));
75      Parameters.Add(new FixedValueParameter<TextFileValue>(MatlabEvaluationScriptParameterName, "The path to the MATLAB evaluation script.", new TextFileValue()));
[11094]76      Parameters.Add(new FixedValueParameter<TextFileValue>(MatlabInitializationScriptParameterName, "The path to a MATLAB script for initialization that should be executed once before the algorithm starts.", new TextFileValue()));
[9690]77
[9748]78      MatlabEvaluationScript.FileDialogFilter = @"MATLAB Scripts|*.m|All files|*.*";
[9690]79    }
80  }
81}
Note: See TracBrowser for help on using the repository browser.