Skip to content

Commit

Permalink
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
Browse files Browse the repository at this point in the history
  • Loading branch information
imrn99 committed Oct 15, 2024
1 parent c7bce77 commit 869aa9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion integraal/src/structure/implementations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ fn values_uniform_arm<X: Scalar>(
method: &ComputeMethod,
) -> Result<X, IntegraalError> {
let DomainDescriptor::Uniform {
start,
start: _,
step,
n_step,
} = domain
Expand Down Expand Up @@ -245,6 +245,7 @@ fn values_uniform_arm<X: Scalar>(
})
.sum()
}
#[cfg(feature = "boole")]
ComputeMethod::Boole { force } => {
let n_step = if *force {
*n_step - *n_step % 4
Expand Down Expand Up @@ -488,6 +489,7 @@ fn closure_uniform_arm<X: Scalar>(
})
.sum()
}
#[cfg(feature = "boole")]
ComputeMethod::Boole { force } => {
let n_step = if *force {
*n_step - *n_step % 4
Expand Down

0 comments on commit 869aa9b

Please sign in to comment.