Changeset 3492
- Timestamp:
- 04/22/10 18:56:49 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/RunCollection.cs
r3447 r3492 86 86 } 87 87 88 89 90 88 private bool AddParameter(string name, IItem value) { 91 89 if (value == null) … … 125 123 public IItem GetValue(int rowIndex, int columnIndex) { 126 124 IRun run = this.list[rowIndex]; 125 return GetValue(run, columnIndex); 126 } 127 128 public IItem GetValue(IRun run, int columnIndex) { 127 129 IItem value = null; 128 129 130 if (columnIndex < parameterNames.Count) { 130 131 string parameterName = parameterNames[columnIndex]; … … 142 143 [Storable] 143 144 private List<string> parameterNames; 145 public IEnumerable<string> ParameterNames { 146 get { return this.parameterNames; } 147 } 144 148 [Storable] 145 149 private List<string> resultNames; 150 public IEnumerable<string> ResultNames { 151 get { return this.resultNames; } 152 } 146 153 int IStringConvertibleMatrix.Rows { 147 154 get { return this.Count; }
Note: See TracChangeset
for help on using the changeset viewer.