Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/MultiObjectiveSymbolicDataAnalysisProblem.cs @ 5681

Last change on this file since 5681 was 5580, checked in by mkommend, 14 years ago

#1418: Added single and multi-objective SymbolicDataAnalysisProblem classes and adapted generic type parameter.

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Optimization;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
30  [StorableClass]
31  public abstract class MultiObjectiveSymbolicDataAnalysisProblem<T, U, V> : SymbolicDataAnalysisProblem<T, U, V>, IMultiObjectiveHeuristicOptimizationProblem
32    where T : class,IDataAnalysisProblemData
33    where U : class, ISymbolicDataAnalysisEvaluator<T>, IMultiObjectiveEvaluator
34    where V : class, ISymbolicDataAnalysisSolutionCreator {
35    private const string MaximizationParameterName = "Maximization";
36    private const string BestKnownQualityParameterName = "BestKnownQuality";
37
38    #region parameter properties
39    public ValueParameter<BoolArray> MaximizationParameter {
40      get { return (ValueParameter<BoolArray>)Parameters[MaximizationParameterName]; }
41    }
42    IParameter IMultiObjectiveHeuristicOptimizationProblem.MaximizationParameter {
43      get { return MaximizationParameter; }
44    }
45    #endregion
46
47    #region properties
48    public BoolArray Maximization {
49      get { return MaximizationParameter.Value; }
50      protected set { MaximizationParameter.Value = value; }
51    }
52    IMultiObjectiveEvaluator IMultiObjectiveHeuristicOptimizationProblem.Evaluator {
53      get { return Evaluator; }
54    }
55    #endregion
56
57    [StorableConstructor]
58    protected MultiObjectiveSymbolicDataAnalysisProblem(bool deserializing) : base(deserializing) { }
59    protected MultiObjectiveSymbolicDataAnalysisProblem(MultiObjectiveSymbolicDataAnalysisProblem<T, U, V> original, Cloner cloner) : base(original, cloner) { }
60
61    public MultiObjectiveSymbolicDataAnalysisProblem()
62      : base() {
63      Parameters.Add(new ValueParameter<BoolArray>(MaximizationParameterName, "Set to false if the problem should be minimized."));
64    }
65  }
66}
Note: See TracBrowser for help on using the repository browser.