Skip to content

Commit 0d9b4e9

Browse files
Fix
1 parent 4799c33 commit 0d9b4e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/ifs.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ pub fn sample_svs<R: Rng>(rng: &mut R, alpha: f64, n: usize) -> Vec<(f64, f64)>
8181
for _ in 0..(n - 1) {
8282
// Define sigma1
8383
let sigma1 = uniform(rng, f64::max(0.0, b_lower / 3.0), f64::min(1.0, b_upper));
84-
b_lower = b_lower - sigma1;
85-
b_upper = b_upper - sigma1;
84+
b_lower -= sigma1;
85+
b_upper -= sigma1;
8686

8787
// Define sigma2
8888
let sigma2 = uniform(
@@ -91,7 +91,7 @@ pub fn sample_svs<R: Rng>(rng: &mut R, alpha: f64, n: usize) -> Vec<(f64, f64)>
9191
f64::min(sigma1, 0.5 * b_upper),
9292
);
9393
b_lower = b_lower - 2.0 * sigma2 + 3.0;
94-
b_upper = b_upper - 2.0 * sigma2;
94+
b_upper -= 2.0 * sigma2;
9595

9696
result.push((sigma1, sigma2));
9797
}

0 commit comments

Comments
 (0)