Skip to content

Commit 6d717b1

Browse files
committed
Setup MAP-Elites example file to be deterministic (fixed random number seed to 1.)
1 parent 7a29b2c commit 6d717b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/Evolve/MAP-Elites.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ int main()
2626

2727
std::cout << "START!" << std::endl;
2828

29-
emp::Random random;
29+
emp::Random random(1);
3030
emp::World<org_t> map_world(random);
3131

3232
std::cout << "World build." << std::endl;

0 commit comments

Comments
 (0)