Skip to content
Snippets Groups Projects
Commit d49e8dc6 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

[FEFLOW] fix a bug that a property vector was not allocated before use

parent 0b427b07
No related branches found
No related tags found
No related merge requests found
...@@ -192,6 +192,7 @@ MeshLib::Mesh* FEFLOWMeshInterface::readFEFLOWFile(const std::string& filename) ...@@ -192,6 +192,7 @@ MeshLib::Mesh* FEFLOWMeshInterface::readFEFLOWFile(const std::string& filename)
} }
else else
{ {
opt_material_ids->resize(mesh->getNumberOfElements());
setMaterialIDs(fem_class, fem_dim, lines, vec_elementsets, vec_elements, setMaterialIDs(fem_class, fem_dim, lines, vec_elementsets, vec_elements,
*opt_material_ids); *opt_material_ids);
} }
...@@ -515,6 +516,7 @@ void FEFLOWMeshInterface::setMaterialIDs( ...@@ -515,6 +516,7 @@ void FEFLOWMeshInterface::setMaterialIDs(
std::vector<MeshLib::Element*> const& vec_elements, std::vector<MeshLib::Element*> const& vec_elements,
std::vector<int>& material_ids) std::vector<int>& material_ids)
{ {
assert(material_ids.size()==vec_elements.size());
if (!vec_elementsets.empty()) if (!vec_elementsets.empty())
{ {
for (std::size_t matid = 0; matid < vec_elementsets.size(); ++matid) for (std::size_t matid = 0; matid < vec_elementsets.size(); ++matid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment