[2694] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[2790] | 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2694] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using System.Xml;
|
---|
| 26 | using HeuristicLab.Common;
|
---|
| 27 | using HeuristicLab.Core;
|
---|
| 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Data {
|
---|
| 31 | [EmptyStorableClass]
|
---|
| 32 | [Item("DoubleArrayData", "Represents an array of double values.")]
|
---|
| 33 | [Creatable("Test")]
|
---|
| 34 | public sealed class DoubleArrayData : ValueTypeArrayData<double>, IStringConvertibleMatrixData {
|
---|
| 35 | public DoubleArrayData() : base() { }
|
---|
| 36 | public DoubleArrayData(int length) : base(length) { }
|
---|
| 37 | public DoubleArrayData(double[] elements) : base(elements) { }
|
---|
| 38 | private DoubleArrayData(DoubleArrayData elements) : base(elements) { }
|
---|
| 39 |
|
---|
| 40 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 41 | DoubleArrayData clone = new DoubleArrayData(this);
|
---|
| 42 | cloner.RegisterClonedObject(this, clone);
|
---|
| 43 | return clone;
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | #region IStringConvertibleMatrixData Members
|
---|
| 47 | StringConvertibleArrayDataDimensions IStringConvertibleMatrixData.Dimensions {
|
---|
| 48 | get { return StringConvertibleArrayDataDimensions.Rows; }
|
---|
| 49 | }
|
---|
| 50 | int IStringConvertibleMatrixData.Rows {
|
---|
| 51 | get { return Length; }
|
---|
| 52 | set { Length = value; }
|
---|
| 53 | }
|
---|
| 54 | int IStringConvertibleMatrixData.Columns {
|
---|
| 55 | get { return 1; }
|
---|
[2863] | 56 | set { throw new NotSupportedException("The number of columns cannot be changed."); }
|
---|
[2694] | 57 | }
|
---|
| 58 |
|
---|
| 59 | bool IStringConvertibleMatrixData.Validate(string value, out string errorMessage) {
|
---|
| 60 | double val;
|
---|
| 61 | bool valid = double.TryParse(value, out val);
|
---|
| 62 | errorMessage = string.Empty;
|
---|
| 63 | if (!valid) {
|
---|
| 64 | StringBuilder sb = new StringBuilder();
|
---|
| 65 | sb.Append("Invalid Value (Valid Value Format: \"");
|
---|
| 66 | sb.Append(FormatPatterns.GetDoubleFormatPattern());
|
---|
| 67 | sb.Append("\")");
|
---|
| 68 | errorMessage = sb.ToString();
|
---|
| 69 | }
|
---|
| 70 | return valid;
|
---|
| 71 | }
|
---|
| 72 | string IStringConvertibleMatrixData.GetValue(int rowIndex, int columIndex) {
|
---|
| 73 | return this[rowIndex].ToString();
|
---|
| 74 | }
|
---|
| 75 | bool IStringConvertibleMatrixData.SetValue(string value, int rowIndex, int columnIndex) {
|
---|
| 76 | double val;
|
---|
| 77 | if (double.TryParse(value, out val)) {
|
---|
| 78 | this[rowIndex] = val;
|
---|
| 79 | return true;
|
---|
| 80 | } else {
|
---|
| 81 | return false;
|
---|
| 82 | }
|
---|
| 83 | }
|
---|
| 84 | event EventHandler<EventArgs<int, int>> IStringConvertibleMatrixData.ItemChanged {
|
---|
| 85 | add { base.ItemChanged += value; }
|
---|
| 86 | remove { base.ItemChanged -= value; }
|
---|
| 87 | }
|
---|
| 88 | event EventHandler IStringConvertibleMatrixData.Reset {
|
---|
| 89 | add { base.Reset += value; }
|
---|
| 90 | remove { base.Reset -= value; }
|
---|
| 91 | }
|
---|
| 92 | #endregion
|
---|
| 93 | }
|
---|
| 94 | }
|
---|