Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
mtao committed Dec 8, 2024
1 parent 458933f commit 9a7153a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions applications/isotropic_remeshing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ wmtk_register_integration_test(
GIT_TAG
363f8e860673a4e4f68df6465b99e86809c96283
CONFIG_PATH ${CMAKE_CURRENT_SOURCE_DIR}/examples

)
#
#wmtk_register_integration_test(
Expand Down
2 changes: 1 addition & 1 deletion src/wmtk/operations/Operation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ void Operation::apply_attribute_transfer(const std::vector<simplex::Simplex>& di
for (const auto& at_ptr : m_attr_transfer_strategies) {
if (&m_mesh == &(at_ptr->mesh())) {
for (const simplex::IdSimplex& s : all.simplex_vector()) {
assert(m_mesh.is_valid(s));
assert(m_mesh.get_const_flag_accessor(s.primitive_type()).is_active(s));
if (s.primitive_type() == at_ptr->primitive_type()) {
at_ptr->run(m_mesh.get_simplex(s));
}
Expand Down

0 comments on commit 9a7153a

Please sign in to comment.