Skip to content

Commit

Permalink
formating
Browse files Browse the repository at this point in the history
  • Loading branch information
bam241 committed Dec 11, 2024
1 parent e539b9b commit ebaa4d2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/dagmc/dagmcmetadata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,8 @@ void dagmcMetaData::parse_material_data() {
// set the material value
volume_material_property_data_eh[eh] = grp_name;
logger.message("Group name -- " + grp_name);
bool is_graveyard =
to_lower(grp_name) == to_lower(graveyard_mat_str());
bool is_vacuum =
to_lower(grp_name) == to_lower(vacuum_mat_str());
bool is_graveyard = to_lower(grp_name) == to_lower(graveyard_mat_str());
bool is_vacuum = to_lower(grp_name) == to_lower(vacuum_mat_str());

// not graveyard or vacuum or implicit compliment
if (!is_graveyard && !is_vacuum && !DAG->is_implicit_complement(eh)) {
Expand Down

0 comments on commit ebaa4d2

Please sign in to comment.