#region License Information /* HeuristicLab * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Collections.Generic; using System.Linq; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Encodings.DecisionList { [StorableClass] [Item("IntVariable", "")] public class IntVariable : Variable { [Storable] protected IList possibleFeatures; public IEnumerable PossibleFeatures { get { return possibleFeatures; } } [StorableConstructor] protected IntVariable(bool deserializing) : base(deserializing) { } protected IntVariable(IntVariable original, Cloner cloner) : base(original, cloner) { this.possibleFeatures = new List(original.possibleFeatures); } public IntVariable() : base() { } public IntVariable(string variableName, IList variableValues) : base(variableName) { if (variableValues.Count() > 0 && variableValues.Count() != variableValues.Distinct().Count()) { throw new ArgumentException("variableValues have to be distinct and there has to be at least one value."); } possibleFeatures = variableValues; attributes = Enumerable.Repeat(true, possibleFeatures.Count).ToList(); } public override IDeepCloneable Clone(Cloner cloner) { return new IntVariable(this, cloner); } public override double ComputeTheoryLength() { return attributes.Count + attributes.Count(x => x == false); } public override bool Match(string input) { return Match(int.Parse(input)); } public bool Match(int input) { return attributes[possibleFeatures.IndexOf(input)]; } public override void SetToMatch(string variableValue) { var value = int.Parse(variableValue); if (!possibleFeatures.Contains(value)) throw new ArgumentException("variableValue " + variableValue + " is not a possible value of variable " + variableName); attributes[possibleFeatures.IndexOf(value)] = true; } } }