diff --git a/integraal/src/structure/implementations.rs b/integraal/src/structure/implementations.rs index 524cd89..8001f47 100644 --- a/integraal/src/structure/implementations.rs +++ b/integraal/src/structure/implementations.rs @@ -201,7 +201,7 @@ fn values_uniform_arm( method: &ComputeMethod, ) -> Result { let DomainDescriptor::Uniform { - start, + start: _, step, n_step, } = domain @@ -245,6 +245,7 @@ fn values_uniform_arm( }) .sum() } + #[cfg(feature = "boole")] ComputeMethod::Boole { force } => { let n_step = if *force { *n_step - *n_step % 4 @@ -488,6 +489,7 @@ fn closure_uniform_arm( }) .sum() } + #[cfg(feature = "boole")] ComputeMethod::Boole { force } => { let n_step = if *force { *n_step - *n_step % 4