Skip to content

Commit 59d3ccc

Browse files
committed
Fix parallel bounding box union in get_info()
1 parent 7aa5322 commit 59d3ccc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/mesh/mesh_base.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ std::string MeshBase::get_info(const unsigned int verbosity /* = 0 */, const boo
11591159
if (verbosity > 1)
11601160
{
11611161
this->comm().min(info.bbox.min());
1162-
this->comm().min(info.bbox.max());
1162+
this->comm().max(info.bbox.max());
11631163
}
11641164
}
11651165

0 commit comments

Comments
 (0)