| 57 | } |
| 58 | |
| 59 | MatrixVariable::MatrixVariable( |
| 60 | const std::string& name, |
| 61 | const std::string& type, |
| 62 | const std::string& defaultValue) |
| 63 | { |
| 64 | name_ = name; |
| 65 | type_ = type; |
| 66 | defaultValue_ = defaultValue; |
| 67 | isBuffer_ = false; |
| 68 | constant_ = false; |
| 69 | |
| 70 | copyOf_ = NULL; |
| 71 | |
| 72 | flags_ = 0; |
| 73 | hostPtr_ = NULL; |
| 74 | |
| 75 | rows_ = NULL; |
| 76 | columns_ = NULL; |
| 77 | ld_ = NULL; |
| 78 | off_ = NULL; |
| 79 | } |
| 80 | |
| 81 | VectorVariable::VectorVariable( |
| 82 | const std::string& name, |
nothing calls this directly
no outgoing calls
no test coverage detected