Skip to content

Commit ba2d689

Browse files
committed
fix signs
1 parent ca7e5d8 commit ba2d689

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pineappl/src/interpolation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ mod applgrid {
1616
}
1717

1818
pub fn fx2(y: f64) -> f64 {
19-
let z = -5.0 * (5.0-y).exp();
19+
let z = 5.0 * (5.0-y).exp();
2020
let w = lambert_w::lambert_w0(z);
21-
return -w / 5.0;
21+
return w / 5.0;
2222
}
2323

2424
pub fn fy2(x: f64) -> f64 {

0 commit comments

Comments
 (0)