@@ -32,7 +32,7 @@ TEST_CASE("Test Systematics", "[evo]")
3232 auto id6 = sys.AddOrg (29 , id5, 39 );
3333 std::cout << " \n AddOrg 30 (id7; parent id1)\n " ;
3434 auto id7 = sys.AddOrg (30 , id1, 6 );
35-
35+
3636
3737 std::cout << " \n RemoveOrg (id2)\n " ;
3838 sys.RemoveOrg (id1);
@@ -148,16 +148,16 @@ TEST_CASE("Test Data Struct", "[evo]")
148148 auto id1 = sys->AddOrg (1 , nullptr );
149149 id1->GetData ().fitness .Add (2 );
150150 id1->GetData ().phenotype = 6 ;
151-
151+
152152 auto id2 = sys->AddOrg (2 , id1);
153153 id2->GetData ().mut_counts [" substitution" ] = 2 ;
154154 id2->GetData ().fitness .Add (1 );
155155 id2->GetData ().phenotype = 6 ;
156156 REQUIRE (id2->GetData ().mut_counts [" substitution" ] == 2 );
157-
157+
158158 auto id3 = sys->AddOrg (3 , id1);
159159 id3->GetData ().mut_counts [" substitution" ] = 5 ;
160- id3->GetData ().fitness .Add (0 );
160+ id3->GetData ().fitness .Add (0 );
161161 id3->GetData ().phenotype = 6 ;
162162
163163 auto id4 = sys->AddOrg (4 , id2);
@@ -179,12 +179,12 @@ TEST_CASE("Test Data Struct", "[evo]")
179179 REQUIRE (CountMuts (id3) == 5 );
180180 REQUIRE (CountDeleteriousSteps (id3) == 1 );
181181 REQUIRE (CountPhenotypeChanges (id3) == 0 );
182- REQUIRE (CountUniquePhenotypes (id3) == 1 );
182+ REQUIRE (CountUniquePhenotypes (id3) == 1 );
183183
184184 REQUIRE (CountMuts (id5) == 4 );
185185 REQUIRE (CountDeleteriousSteps (id5) == 2 );
186186 REQUIRE (CountPhenotypeChanges (id5) == 2 );
187- REQUIRE (CountUniquePhenotypes (id5) == 2 );
187+ REQUIRE (CountUniquePhenotypes (id5) == 2 );
188188
189189 sys.Delete ();
190190
@@ -198,8 +198,8 @@ TEST_CASE("World systematics integration", "[evo]") {
198198 // };
199199
200200 using systematics_t = emp::Systematics<
201- emp::vector<int >,
202- emp::vector<int >,
201+ emp::vector<int >,
202+ emp::vector<int >,
203203 emp::datastruct::mut_landscape_info< int >
204204 >;
205205
@@ -274,7 +274,7 @@ TEST_CASE("Run world", "[evo]") {
274274 using gene_systematics_t = emp::Systematics<org_t , org_t ::genome_t , data_t >;
275275 using phen_systematics_t = emp::Systematics<org_t , emp::vector<double >, data_t >;
276276
277- emp::Random random;
277+ emp::Random random ( 1 ) ;
278278 emp::World<org_t > world (random, " AvidaWorld" );
279279 world.SetPopStruct_Mixed (true );
280280
@@ -335,7 +335,7 @@ TEST_CASE("Run world", "[evo]") {
335335
336336 // Setup the mutation function.
337337 world.SetMutFun ( [&world, &on_mutate_sig](emp::AvidaGP & org, emp::Random & random) {
338-
338+
339339 uint32_t num_muts = random.GetUInt (4 ); // 0 to 3 mutations.
340340 for (uint32_t m = 0 ; m < num_muts; m++) {
341341 const uint32_t pos = random.GetUInt (20 );
0 commit comments