| 141 | } |
| 142 | |
| 143 | int |
| 144 | Information::setVector(const Vector &newVector) |
| 145 | { |
| 146 | if (theVector != 0) { |
| 147 | *theVector = newVector; |
| 148 | } else { |
| 149 | theVector = new Vector(newVector); |
| 150 | } |
| 151 | |
| 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | int |
| 156 | Information::setMatrix(const Matrix &newMatrix) |
no outgoing calls
no test coverage detected