From c28b14d31c43e1eb97a81df7673127d0c22d8deb Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Mon, 4 Jan 2021 17:59:51 +0100 Subject: Refactor the parallel solver code the same way we did with the non-parallel solver. --- src/dynamics/solver/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/dynamics/solver/mod.rs') diff --git a/src/dynamics/solver/mod.rs b/src/dynamics/solver/mod.rs index 132b882..090d0f3 100644 --- a/src/dynamics/solver/mod.rs +++ b/src/dynamics/solver/mod.rs @@ -5,6 +5,8 @@ pub(crate) use self::parallel_island_solver::{ParallelIslandSolver, ThreadContex #[cfg(feature = "parallel")] pub(self) use self::parallel_position_solver::ParallelPositionSolver; #[cfg(feature = "parallel")] +pub(self) use self::parallel_solver_constraints::ParallelSolverConstraints; +#[cfg(feature = "parallel")] pub(self) use self::parallel_velocity_solver::ParallelVelocitySolver; #[cfg(not(feature = "parallel"))] pub(self) use self::position_solver::PositionSolver; @@ -39,6 +41,8 @@ mod parallel_island_solver; #[cfg(feature = "parallel")] mod parallel_position_solver; #[cfg(feature = "parallel")] +mod parallel_solver_constraints; +#[cfg(feature = "parallel")] mod parallel_velocity_solver; mod position_constraint; #[cfg(feature = "simd-is-enabled")] -- cgit