Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ExternalEvaluation.Matlab/3.3/MatlabParameterOptimizationProblem.cs @ 9690

Last change on this file since 9690 was 9690, checked in by mkommend, 11 years ago

#2082: Added stub for matlab evaluation, updated plugin files to contain the license information and corrected project references.

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.Problems.ParameterOptimization;
28
29namespace HeuristicLab.Problems.ExternalEvaluation.Matlab {
30  [Item("Matlab Parameter Optimization Problem", "Optimization of a parameter vector which is evaluated in Matlab.")]
31  [StorableClass]
32  [Creatable("Problems")]
33  public class MatlabParameterOptimizationProblem : ParameterOptimizationProblem {
34    private const string QualityVariableParameterName = "QualityVariableName";
35    private const string MatlabEvaluationScriptParameterName = "MatlabEvaluationScript";
36
37    #region parameters
38    public IFixedValueParameter<StringValue> QualityVariableParameter {
39      get { return (IFixedValueParameter<StringValue>)Parameters[QualityVariableParameterName]; }
40    }
41    public IFixedValueParameter<TextFile> MatlabEvaluationScriptParameter {
42      get { return (IFixedValueParameter<TextFile>)Parameters[MatlabEvaluationScriptParameterName]; }
43    }
44    #endregion
45
46    #region properties
47    public string QualityVariable {
48      get { return QualityVariableParameter.Value.Value; }
49      set { QualityVariableParameter.Value.Value = value; }
50    }
51    public TextFile MatlabEvaluationScript {
52      get { return MatlabEvaluationScriptParameter.Value; }
53    }
54    #endregion
55
56    [StorableConstructor]
57    protected MatlabParameterOptimizationProblem(bool deserializing) : base(deserializing) { }
58    protected MatlabParameterOptimizationProblem(MatlabParameterOptimizationProblem original, Cloner cloner)
59      : base(original, cloner) {
60    }
61    public override IDeepCloneable Clone(Cloner cloner) {
62      return new MatlabParameterOptimizationProblem(this, cloner);
63    }
64
65    public MatlabParameterOptimizationProblem()
66      : base(new MatlabParameterVectorEvaluator()) {
67      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()));
69
70      MatlabEvaluationScript.FileDialogFilter = @"Matlab Scripts|*.m|All files|*.*";
71    }
72  }
73}
Note: See TracBrowser for help on using the repository browser.