Free cookie consent management tool by TermsFeed Policy Generator

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

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

Added ReadOnly property to all items of HeuristicLab.Data (#969)

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