aboutsummaryrefslogtreecommitdiff
path: root/src/dynamics/solver/interaction_groups.rs
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-01-22 21:06:33 +0100
committerSébastien Crozet <sebcrozet@dimforge.com>2024-01-22 21:06:33 +0100
commitbef72df32c6f5c9275b82b38b387e9295430814a (patch)
treed813501a153938d0d25f7792bfd4b05a780da761 /src/dynamics/solver/interaction_groups.rs
parent9b87f06a856c4d673642e210f8b0986cfdbac3af (diff)
downloadrapier-bef72df32c6f5c9275b82b38b387e9295430814a.tar.gz
rapier-bef72df32c6f5c9275b82b38b387e9295430814a.tar.bz2
rapier-bef72df32c6f5c9275b82b38b387e9295430814a.zip
chore: CI fixes
Diffstat (limited to 'src/dynamics/solver/interaction_groups.rs')
-rw-r--r--src/dynamics/solver/interaction_groups.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynamics/solver/interaction_groups.rs b/src/dynamics/solver/interaction_groups.rs
index 40fbe92..d654a59 100644
--- a/src/dynamics/solver/interaction_groups.rs
+++ b/src/dynamics/solver/interaction_groups.rs
@@ -32,6 +32,7 @@ impl<'a> PairInteraction for JointGraphEdge {
}
#[cfg(feature = "parallel")]
+#[allow(dead_code)] // That will likely be useful when we re-introduce intra-island parallelism.
pub(crate) struct ParallelInteractionGroups {
bodies_color: Vec<u128>, // Workspace.
interaction_indices: Vec<usize>, // Workspace.
@@ -41,6 +42,7 @@ pub(crate) struct ParallelInteractionGroups {
}
#[cfg(feature = "parallel")]
+#[allow(dead_code)] // That will likely be useful when we re-introduce intra-island parallelism.
impl ParallelInteractionGroups {
pub fn new() -> Self {
Self {