| 380 | } |
| 381 | |
| 382 | MatrixVariable* |
| 383 | Step::addMatrix( |
| 384 | const std::string& name, |
| 385 | const std::string& type, |
| 386 | Variable *rows, |
| 387 | Variable *columns, |
| 388 | Variable *ld, |
| 389 | Variable *off) |
| 390 | { |
| 391 | MatrixVariable *var = new MatrixVariable(name, type, "NULL"); |
| 392 | var->setMatrixSize(rows, columns, ld, off); |
| 393 | arrays_.push_back(var); |
| 394 | return var; |
| 395 | } |
| 396 | |
| 397 | VectorVariable* |
| 398 | Step::addVector( |
nothing calls this directly
no test coverage detected