Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tbetcke committed Jul 13, 2024
1 parent a04f8d8 commit f10573f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/helmholtz_3d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1655,8 +1655,8 @@ mod test {

Helmholtz3dKernel::<c64>::new(wavenumber).greens_fct(
EvalType::Value,
&source.data(),
&target.data(),
source.data(),
target.data(),
expected.as_mut_slice(),
);

Expand Down Expand Up @@ -1700,8 +1700,8 @@ mod test {

Helmholtz3dKernel::<c32>::new(wavenumber).greens_fct(
EvalType::Value,
&source.data(),
&target.data(),
source.data(),
target.data(),
expected.as_mut_slice(),
);

Expand Down Expand Up @@ -1750,8 +1750,8 @@ mod test {

Helmholtz3dKernel::<c32>::new(wavenumber).greens_fct(
EvalType::ValueDeriv,
&source.data(),
&target.data(),
source.data(),
target.data(),
expected.as_mut_slice(),
);

Expand Down Expand Up @@ -1802,8 +1802,8 @@ mod test {

Helmholtz3dKernel::<c64>::new(wavenumber).greens_fct(
EvalType::ValueDeriv,
&source.data(),
&target.data(),
source.data(),
target.data(),
expected.as_mut_slice(),
);

Expand Down

0 comments on commit f10573f

Please sign in to comment.