#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 System.Text; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Data { [Item("DoubleArray", "Represents an array of double values.")] [StorableClass] public class DoubleArray : ValueTypeArray { [StorableConstructor] protected DoubleArray(bool deserializing) : base(deserializing) { } protected DoubleArray(DoubleArray original, Cloner cloner) : base(original, cloner) { } public DoubleArray() : base() { } public DoubleArray(int length) : base(length) { } public DoubleArray(double[] elements) : base(elements) { } public override IDeepCloneable Clone(Cloner cloner) { return new DoubleArray(this, cloner); } protected override bool Validate(string value, out string errorMessage) { double val; bool valid = double.TryParse(value, out val); errorMessage = string.Empty; if (!valid) { StringBuilder sb = new StringBuilder(); sb.Append("Invalid Value (Valid Value Format: \""); sb.Append(FormatPatterns.GetDoubleFormatPattern()); sb.Append("\")"); errorMessage = sb.ToString(); } return valid; } protected override string GetValue(int index) { return this[index].ToString(); } protected override bool SetValue(string value, int index) { if (ReadOnly) throw new NotSupportedException("Item cannot be set. ValueTypeArray is read-only."); double val; if (double.TryParse(value, out val)) { this[index] = val; return true; } else { return false; } } protected override bool SetValues(IEnumerable> arrayValues) { if (ReadOnly) throw new NotSupportedException("Item cannot be set. ValueTypeArray is read-only."); double parsed; if (!arrayValues.All(v => double.TryParse(v.Value, out parsed))) return false; List positions = new List(); foreach (var v in arrayValues) { parsed = double.Parse(v.Value); if (array[v.Index] != parsed) { array[v.Index] = parsed; positions.Add(v.Index); } } OnItemsChanged(positions); return true; } } }