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