Skip to content

Commit

Permalink
avoid space
Browse files Browse the repository at this point in the history
  • Loading branch information
Expander committed Jan 27, 2024
1 parent aff1415 commit 6a98bdd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/li2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,16 @@ impl Li2Approx<Complex<f64>> for Complex<f64> {
// bf[1..N-1] are the even Bernoulli numbers / (2 n + 1)!
// generated by: Table[BernoulliB[2 n]/(2 n + 1)!, {n, 1, 19}]
let bf = [
- 1.0_f64/4.0_f64,
1.0_f64/36.0_f64,
- 1.0_f64/3600.0_f64,
1.0_f64/211680.0_f64,
- 1.0_f64/10886400.0_f64,
1.0_f64/526901760.0_f64,
- 4.0647616451442255e-11_f64,
8.9216910204564526e-13_f64,
- 1.9939295860721076e-14_f64,
4.5189800296199182e-16_f64,
-1.0_f64/4.0_f64,
1.0_f64/36.0_f64,
-1.0_f64/3600.0_f64,
1.0_f64/211680.0_f64,
-1.0_f64/10886400.0_f64,
1.0_f64/526901760.0_f64,
-4.0647616451442255e-11_f64,
8.9216910204564526e-13_f64,
-1.9939295860721076e-14_f64,
4.5189800296199182e-16_f64,
];
let x = *self;
let x2 = x*x;
Expand Down

0 comments on commit 6a98bdd

Please sign in to comment.