Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/DoubleMatrix.cs @ 3160

Last change on this file since 3160 was 3160, checked in by swagner, 14 years ago

Removed Creatable test attribute (#935).

File size: 3.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
22using System.Text;
23using HeuristicLab.Core;
24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25
26namespace HeuristicLab.Data {
27  [Item("DoubleMatrix", "Represents a matrix of double values.")]
28  [StorableClass]
29  public class DoubleMatrix : ValueTypeMatrix<double>, IStringConvertibleMatrix {
30    public DoubleMatrix() : base() { }
31    public DoubleMatrix(int rows, int columns) : base(rows, columns) { }
32    public DoubleMatrix(double[,] elements) : base(elements) { }
33
34    public override IDeepCloneable Clone(Cloner cloner) {
35      DoubleMatrix clone = new DoubleMatrix(matrix);
36      cloner.RegisterClonedObject(this, clone);
37      return clone;
38    }
39
40    protected virtual bool Validate(string value, out string errorMessage) {
41      double val;
42      bool valid = double.TryParse(value, out val);
43      errorMessage = string.Empty;
44      if (!valid) {
45        StringBuilder sb = new StringBuilder();
46        sb.Append("Invalid Value (Valid Value Format: \"");
47        sb.Append(FormatPatterns.GetDoubleFormatPattern());
48        sb.Append("\")");
49        errorMessage = sb.ToString();
50      }
51      return valid;
52    }
53    protected virtual string GetValue(int rowIndex, int columIndex) {
54      return this[rowIndex, columIndex].ToString();
55    }
56    protected virtual bool SetValue(string value, int rowIndex, int columnIndex) {
57      double val;
58      if (double.TryParse(value, out val)) {
59        this[rowIndex, columnIndex] = val;
60        return true;
61      } else {
62        return false;
63      }
64    }
65
66    #region IStringConvertibleMatrix Members
67    int IStringConvertibleMatrix.Rows {
68      get { return Rows; }
69      set { Rows = value; }
70    }
71    int IStringConvertibleMatrix.Columns {
72      get { return Columns; }
73      set { Columns = value; }
74    }
75    bool IStringConvertibleMatrix.Validate(string value, out string errorMessage) {
76      return Validate(value, out errorMessage);
77    }
78    string IStringConvertibleMatrix.GetValue(int rowIndex, int columIndex) {
79      return GetValue(rowIndex, columIndex);
80    }
81    bool IStringConvertibleMatrix.SetValue(string value, int rowIndex, int columnIndex) {
82      return SetValue(value, rowIndex, columnIndex);
83    }
84    #endregion
85  }
86}
Note: See TracBrowser for help on using the repository browser.