Skip to content
Snippets Groups Projects

rewritten mesh creator to support more general creation

Merged Praetorius, Simon requested to merge feature/mesh_creator into master
All threads resolved!
3 files
+ 63
30
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -154,6 +154,13 @@ namespace AMDiS
}
}
template <class I>
void setBoundaryIds(std::vector<I> const& ids)
{
test_exit(ids.size() == boundaryIds_.size(), "Number of boundary IDs does not match!");
std::copy(ids.begin(), ids.end(), boundaryIds_.begin());
}
private:
std::shared_ptr<Grid> grid_;
using Super::boundaryIds_;
Loading