| 121 | } |
| 122 | |
| 123 | void DataTable::initDataStructures() |
| 124 | { |
| 125 | for (unsigned int i = 0; i < getNumVariables(); i++) |
| 126 | { |
| 127 | grid.push_back(std::set<double>()); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | void DataTable::gridCompleteGuard() const |
| 132 | { |
nothing calls this directly
no test coverage detected