| 227 | } |
| 228 | |
| 229 | bool isValidCellSectionHeader(const std::string& line) |
| 230 | { |
| 231 | if (line.find("block") != std::string::npos) |
| 232 | { |
| 233 | return true; |
| 234 | } |
| 235 | return getElementTypeFromString(line) != ElementType::Unknown; |
| 236 | } |
| 237 | |
| 238 | int getNumComponents(VariableType type) |
| 239 | { |
no test coverage detected