From 5ba1d0cffdb6cb33d8881a1175c35d829193f5be Mon Sep 17 00:00:00 2001 From: Audrey Collard-Daigneault Date: Sat, 10 Aug 2024 14:27:11 -0400 Subject: [PATCH] Fix test --- include/dem/particle_point_line_broad_search.h | 1 - tests/dem/particle_point_contact.cc | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/include/dem/particle_point_line_broad_search.h b/include/dem/particle_point_line_broad_search.h index 68b8d7206f..8d097dfb96 100644 --- a/include/dem/particle_point_line_broad_search.h +++ b/include/dem/particle_point_line_broad_search.h @@ -67,7 +67,6 @@ find_particle_point_contact_pairs( * @param sparse_contacts_object The Adaptive Sparse Contacts for mobility * status checks. */ - template void find_particle_point_contact_pairs( diff --git a/tests/dem/particle_point_contact.cc b/tests/dem/particle_point_contact.cc index 0684d7a441..82dd99a057 100644 --- a/tests/dem/particle_point_contact.cc +++ b/tests/dem/particle_point_contact.cc @@ -37,6 +37,7 @@ #include #include +#include #include #include #include @@ -124,12 +125,11 @@ test() Utilities::MPI::this_mpi_process(MPI_COMM_WORLD) == 0)); // Particle-point broad search - std::unordered_map, Point>> + typename DEM::dem_data_structures::particle_point_candidates contact_candidates; // Particle-point fine search - std::unordered_map> + typename DEM::dem_data_structures::particle_point_in_contact contact_information; ParticlePointLineForce force_object;