Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2863


Ignore:
Timestamp:
02/25/10 01:56:48 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments
Location:
trunk/sources
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Data/3.3/BoolArrayData.cs

    r2790 r2863  
    5454    int IStringConvertibleMatrixData.Columns {
    5555      get { return 1; }
    56       set { throw new NotSupportedException("Columns cannot be changed."); }
     56      set { throw new NotSupportedException("The number of columns cannot be changed."); }
    5757    }
    5858
  • trunk/sources/HeuristicLab.Data/3.3/DoubleArrayData.cs

    r2790 r2863  
    5454    int IStringConvertibleMatrixData.Columns {
    5555      get { return 1; }
    56       set { throw new NotSupportedException("Columns cannot be changed."); }
     56      set { throw new NotSupportedException("The number of columns cannot be changed."); }
    5757    }
    5858
  • trunk/sources/HeuristicLab.Data/3.3/IntArrayData.cs

    r2790 r2863  
    5454    int IStringConvertibleMatrixData.Columns {
    5555      get { return 1; }
    56       set { throw new NotSupportedException("Columns cannot be changed."); }
     56      set { throw new NotSupportedException("The number of columns cannot be changed."); }
    5757    }
    5858
  • trunk/sources/HeuristicLab.Data/3.3/StringArrayData.cs

    r2790 r2863  
    108108    int IStringConvertibleMatrixData.Columns {
    109109      get { return 1; }
    110       set { throw new NotSupportedException("Columns cannot be changed."); }
     110      set { throw new NotSupportedException("The number of columns cannot be changed."); }
    111111    }
    112112
  • trunk/sources/HeuristicLab.Permutation/3.3/Permutation.cs

    r2830 r2863  
    9595    int IStringConvertibleMatrixData.Columns {
    9696      get { return 1; }
    97       set { throw new NotSupportedException("Columns cannot be changed."); }
     97      set { throw new NotSupportedException("The number of columns cannot be changed."); }
    9898    }
    9999
Note: See TracChangeset for help on using the changeset viewer.