#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("DoubleMatrix", "Represents a matrix of double values.")] [StorableClass] public class DoubleMatrix : ValueTypeMatrix { [StorableConstructor] protected DoubleMatrix(bool deserializing) : base(deserializing) { } protected DoubleMatrix(DoubleMatrix original, Cloner cloner) : base(original, cloner) { } public DoubleMatrix() : base() { } public DoubleMatrix(int rows, int columns) : base(rows, columns) { } public DoubleMatrix(int rows, int columns, IEnumerable columnNames) : base(rows, columns, columnNames) { } public DoubleMatrix(int rows, int columns, IEnumerable columnNames, IEnumerable rowNames) : base(rows, columns, columnNames, rowNames) { } public DoubleMatrix(double[,] elements) : base(elements) { } public DoubleMatrix(double[,] elements, IEnumerable columnNames) : base(elements, columnNames) { } public DoubleMatrix(double[,] elements, IEnumerable columnNames, IEnumerable rowNames) : base(elements, columnNames, rowNames) { } public override IDeepCloneable Clone(Cloner cloner) { return new DoubleMatrix(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 rowIndex, int columIndex) { return this[rowIndex, columIndex].ToString(); } protected override bool SetValue(string value, int rowIndex, int columnIndex) { if (ReadOnly) throw new NotSupportedException("Item cannot be set. DoubleMatrix is read-only."); double val; if (double.TryParse(value, out val)) { this[rowIndex, columnIndex] = val; return true; } else { return false; } } protected override bool SetValues(IEnumerable> matrixValues) { if (ReadOnly) throw new NotSupportedException("Item cannot be set. DoubleMatrix is read-only."); double parsed; if (!matrixValues.All(v => double.TryParse(v.Value, out parsed))) return false; List positions = new List(); foreach (var v in matrixValues) { parsed = double.Parse(v.Value); if (matrix[v.Position.Row, v.Position.Column] != parsed) { matrix[v.Position.Row, v.Position.Column] = parsed; positions.Add(v.Position); } } OnItemsChanged(positions); return true; } } }