Skip to content

Commit

Permalink
Use num_tune instead of fixed 50
Browse files Browse the repository at this point in the history
  • Loading branch information
aseyboldt committed Nov 27, 2023
1 parent a78bfe1 commit 973ed31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sampler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ where
.expect("Unrecoverable error during init");

// Burn the first x samples to get away from the initial position
for _ in 0..50 {
for _ in 0..num_tune {
sampler.draw().expect("Unrecoverable error during burning");
}

Expand Down

0 comments on commit 973ed31

Please sign in to comment.