| 13 | } |
| 14 | |
| 15 | MeshPtr load_tmp_mesh(const std::string& mesh_file) { |
| 16 | MeshPtr mesh = MeshFactory() |
| 17 | .load_file(m_tmp_dir + mesh_file) |
| 18 | .drop_zero_dim() |
| 19 | .create(); |
| 20 | return mesh; |
| 21 | } |
| 22 | |
| 23 | void write_tmp_mesh(const std::string& mesh_file, MeshPtr mesh, |
| 24 | bool in_ascii=false) { |
nothing calls this directly
no test coverage detected