We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34c034 commit 2913b83Copy full SHA for 2913b83
src/ipc/ipc.cpp
@@ -56,6 +56,8 @@ double compute_collision_free_stepsize(
56
"Sweep and Tiniest Queue is only supported in 3D!");
57
}
58
// TODO: Use correct min_distance
59
+ const int max_iterations = 1000;
60
+ const double tolerance = 1e-6;
61
const double step_size = scalable_ccd::cuda::ipc_ccd_strategy(
62
vertices_t0, vertices_t1, mesh.edges(), mesh.faces(),
63
/*min_distance=*/0.0, max_iterations, tolerance);
0 commit comments