Changeset 11397 for branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Datastructures/ParameterVector.cs
- Timestamp:
- 09/28/14 09:18:30 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Datastructures/ParameterVector.cs
r11363 r11397 76 76 } 77 77 78 public BinaryVector Binary (string name) {78 public BinaryVector BinaryVector(string name) { 79 79 return BinaryParameters[name]; 80 80 } 81 81 82 public bool Binary (string name, int index) {82 public bool BinaryValue(string name, int index) { 83 83 return BinaryParameters[name][index]; 84 84 } … … 88 88 } 89 89 90 public IntegerVector Integer (string name) {90 public IntegerVector IntegerVector(string name) { 91 91 return IntegerParameters[name]; 92 92 } 93 93 94 public int Integer (string name, int index) {94 public int IntegerValue(string name, int index) { 95 95 return IntegerParameters[name][index]; 96 96 } … … 100 100 } 101 101 102 public RealVector Real (string name) {102 public RealVector RealVector(string name) { 103 103 return RealParameters[name]; 104 104 } 105 105 106 public double Real (string name, int index) {106 public double RealValue(string name, int index) { 107 107 return RealParameters[name][index]; 108 108 }
Note: See TracChangeset
for help on using the changeset viewer.