[14233] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16057] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[14233] | 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 System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 29 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
| 30 | [StorableClass]
|
---|
[14243] | 31 | [Item("BinaryFactorVariable", "Represents a categorical variable (comparable to factors as in R) and it's value.")]
|
---|
[14830] | 32 | public sealed class BinaryFactorVariable : VariableBase {
|
---|
[14233] | 33 |
|
---|
[14249] | 34 | private readonly Dictionary<string, List<string>> variableValues;
|
---|
[14233] | 35 |
|
---|
| 36 | [Storable]
|
---|
| 37 | public IEnumerable<KeyValuePair<string, List<string>>> VariableValues {
|
---|
| 38 | get { return variableValues; }
|
---|
| 39 | set {
|
---|
| 40 | if (value == null) throw new ArgumentNullException();
|
---|
| 41 | variableValues.Clear();
|
---|
| 42 | foreach (var kvp in value) {
|
---|
| 43 | variableValues.Add(kvp.Key, new List<string>(kvp.Value));
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | [StorableConstructor]
|
---|
[14830] | 49 | private BinaryFactorVariable(bool deserializing)
|
---|
[14233] | 50 | : base(deserializing) {
|
---|
| 51 | variableValues = new Dictionary<string, List<string>>();
|
---|
| 52 | }
|
---|
[14830] | 53 | private BinaryFactorVariable(BinaryFactorVariable original, Cloner cloner)
|
---|
[14233] | 54 | : base(original, cloner) {
|
---|
| 55 | variableValues =
|
---|
| 56 | original.variableValues.ToDictionary(kvp => kvp.Key, kvp => new List<string>(kvp.Value));
|
---|
| 57 | }
|
---|
[14243] | 58 | public BinaryFactorVariable() : this("BinaryFactorVariable", "Represents a categorical variable (comparable to factors as in R) and it's value.") { }
|
---|
| 59 | public BinaryFactorVariable(string name, string description)
|
---|
[14233] | 60 | : base(name, description) {
|
---|
| 61 | variableValues = new Dictionary<string, List<string>>();
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | public override ISymbolicExpressionTreeNode CreateTreeNode() {
|
---|
[14249] | 65 | return new BinaryFactorVariableTreeNode(this);
|
---|
[14233] | 66 | }
|
---|
| 67 |
|
---|
| 68 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[14243] | 69 | return new BinaryFactorVariable(this, cloner);
|
---|
[14233] | 70 | }
|
---|
| 71 |
|
---|
| 72 | public IEnumerable<string> GetVariableValues(string variableName) {
|
---|
| 73 | return variableValues[variableName];
|
---|
| 74 | }
|
---|
| 75 | }
|
---|
| 76 | }
|
---|