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 |
|
---|
22 | using HeuristicLab.Common;
|
---|
23 | using HeuristicLab.Core;
|
---|
24 | using HeuristicLab.Data;
|
---|
25 | using HeuristicLab.Optimization;
|
---|
26 | using HeuristicLab.Parameters;
|
---|
27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
28 |
|
---|
29 | namespace 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 | }
|
---|