7 bool all_elems_are(std::vector<int> &container)
8 {
return std::all_of(container.begin(), container.end(), [](
int &e_type){return e_type == TYPE;} ); }
14 bool checkNamedObjects(std::vector<T>
const &v_prm,
const int dim_obj)
16 bool existRegions(
true);
17 std::vector<std::pair<int, int> > physGroups;
18 gmsh::model::getPhysicalGroups(physGroups,dim_obj);
19 std::vector<std::string> o_names;
20 std::for_each(physGroups.begin(),physGroups.end(),[&o_names]( std::pair<int, int> &pGroup)
22 std::string physGroupName;
23 gmsh::model::getPhysicalName(pGroup.first, pGroup.second, physGroupName);
24 o_names.push_back(physGroupName);
27 std::for_each(v_prm.begin(),v_prm.end(),[&existRegions,&o_names](
auto p)
29 if (p.regName !=
"__default__")
31 if (!std::any_of(o_names.begin(),o_names.end(),
32 [&p] (std::string &elem) { return p.regName == elem; } ) )
34 std::cout <<
"Fatal Error: region " << p.regName <<
" not found.\n";