File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1018,7 +1018,7 @@ class LibMesh : public UnstructuredMesh {
10181018 libMesh::MeshBase* m_; // !< pointer to libMesh MeshBase instance, always set
10191019 // !< during intialization
10201020 vector<unique_ptr<libMesh::PointLocatorBase>>
1021- pl_; // !< per-thread point locators
1021+ pl_; // !< per-thread point locators
10221022 libMesh::BoundingBox bbox_; // !< bounding box of the mesh
10231023
10241024private:
Original file line number Diff line number Diff line change @@ -3732,7 +3732,8 @@ const libMesh::Elem& LibMesh::get_element_from_bin(int bin) const
37323732
37333733double LibMesh::volume (int bin) const
37343734{
3735- return this ->get_element_from_bin (bin).volume () * length_multiplier_ * length_multiplier_ * length_multiplier_;
3735+ return this ->get_element_from_bin (bin).volume () * length_multiplier_ *
3736+ length_multiplier_ * length_multiplier_;
37363737}
37373738
37383739AdaptiveLibMesh::AdaptiveLibMesh (libMesh::MeshBase& input_mesh,
@@ -3756,7 +3757,7 @@ AdaptiveLibMesh::AdaptiveLibMesh(libMesh::MeshBase& input_mesh,
37563757 : m_->active_elements_begin ();
37573758 auto end = block_restrict_ ? m_->active_subdomain_set_elements_end (block_ids_)
37583759 : m_->active_elements_end ();
3759- for (const auto & elem : libMesh::as_range (begin, end)) {
3760+ for (const auto & elem : libMesh::as_range (begin, end)) {
37603761 bin_to_elem_map_.push_back (elem->id ());
37613762 elem_to_bin_map_[elem->id ()] = bin_to_elem_map_.size () - 1 ;
37623763 }
You can’t perform that action at this time.
0 commit comments