@@ -1108,7 +1108,7 @@ write_out_interior_basis_functions(const std::string & directory_name,
11081108 // Quick return if there is no work to do. Note: make sure all procs
11091109 // agree there is no work to do.
11101110 bool is_empty = _local_eim_basis_functions .empty ();
1111- this -> comm ().verify (is_empty );
1111+ libmesh_assert ( this -> comm ().verify (is_empty ) );
11121112
11131113 if (is_empty )
11141114 return ;
@@ -1279,7 +1279,7 @@ get_interior_basis_functions_as_vecs()
12791279 // Quick return if there is no work to do. Note: make sure all procs
12801280 // agree there is no work to do.
12811281 bool is_empty = _local_eim_basis_functions .empty ();
1282- this -> comm ().verify (is_empty );
1282+ libmesh_assert ( this -> comm ().verify (is_empty ) );
12831283
12841284 if (is_empty )
12851285 return interior_basis_functions ;
@@ -1315,7 +1315,7 @@ write_out_side_basis_functions(const std::string & directory_name,
13151315 // Quick return if there is no work to do. Note: make sure all procs
13161316 // agree there is no work to do.
13171317 bool is_empty = _local_side_eim_basis_functions .empty ();
1318- this -> comm ().verify (is_empty );
1318+ libmesh_assert ( this -> comm ().verify (is_empty ) );
13191319
13201320 if (is_empty )
13211321 return ;
@@ -1431,7 +1431,7 @@ write_out_node_basis_functions(const std::string & directory_name,
14311431 // Quick return if there is no work to do. Note: make sure all procs
14321432 // agree there is no work to do.
14331433 bool is_empty = _local_node_eim_basis_functions .empty ();
1434- this -> comm ().verify (is_empty );
1434+ libmesh_assert ( this -> comm ().verify (is_empty ) );
14351435
14361436 if (is_empty )
14371437 return ;
@@ -1899,7 +1899,7 @@ void RBEIMEvaluation::gather_bfs()
18991899 // each processor is the same, the only thing that differs is the number
19001900 // of elements, so make sure that is the case now.
19011901 auto n_bf = _local_eim_basis_functions .size ();
1902- this -> comm ().verify (n_bf );
1902+ libmesh_assert ( this -> comm ().verify (n_bf ) );
19031903
19041904 // This function should never be called if there are no basis
19051905 // functions, so if it was, something went wrong.
@@ -2047,7 +2047,7 @@ void RBEIMEvaluation::side_gather_bfs()
20472047 // each processor is the same, the only thing that differs is the number
20482048 // of elements, so make sure that is the case now.
20492049 auto n_bf = _local_side_eim_basis_functions .size ();
2050- this -> comm ().verify (n_bf );
2050+ libmesh_assert ( this -> comm ().verify (n_bf ) );
20512051
20522052 // This function should never be called if there are no basis
20532053 // functions, so if it was, something went wrong.
@@ -2195,7 +2195,7 @@ void RBEIMEvaluation::node_gather_bfs()
21952195 // each processor is the same, the only thing that differs is the number
21962196 // of elements, so make sure that is the case now.
21972197 auto n_bf = _local_node_eim_basis_functions .size ();
2198- this -> comm ().verify (n_bf );
2198+ libmesh_assert ( this -> comm ().verify (n_bf ) );
21992199
22002200 // This function should never be called if there are no basis
22012201 // functions, so if it was, something went wrong.
0 commit comments