Skip to content

Commit bd1c303

Browse files
Update default seed value to 99
1 parent 4c474e7 commit bd1c303

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/basic.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use rust_random_logo::{Config, render, rand_sigma_factor_ifs};
88

99
fn main() -> Result<(), Box<dyn std::error::Error>> {
1010
// Create a random number generator with a seed
11-
let mut rng = Xoshiro256PlusPlus::seed_from_u64(42);
11+
let mut rng = Xoshiro256PlusPlus::seed_from_u64(99);
1212

1313
// Create a random IFS
1414
let ifs = rand_sigma_factor_ifs(&mut rng);
@@ -21,7 +21,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
2121
ifs_name: "SigmaFactorIFS".to_string(),
2222
ndims: 2,
2323
rng_name: "Xoshiro256PlusPlus".to_string(),
24-
seed: 42,
24+
seed: 99,
2525
};
2626

2727
// Render the image

src/core/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl Config {
4545
ifs_name: "SigmaFactorIFS".to_string(),
4646
ndims: 2,
4747
rng_name: "Xoshiro256PlusPlus".to_string(),
48-
seed: 42,
48+
seed: 99,
4949
}
5050
}
5151

0 commit comments

Comments
 (0)