| 395 | } |
| 396 | |
| 397 | VectorVariable* |
| 398 | Step::addVector( |
| 399 | const std::string& name, |
| 400 | const std::string& type, |
| 401 | Variable *N, |
| 402 | Variable *inc, |
| 403 | Variable *off) |
| 404 | { |
| 405 | VectorVariable *var = new VectorVariable(name, type, "NULL"); |
| 406 | var->setVectorSize(N, inc, off); |
| 407 | arrays_.push_back(var); |
| 408 | return var; |
| 409 | } |
| 410 | |
| 411 | Variable* |
| 412 | Step::addBuffer( |
nothing calls this directly
no test coverage detected