@@ -47,7 +47,7 @@ namespace
4747 geode::PoissonProcessDescription< geode::Point2D > poisson;
4848 poisson.domain = { geode::Point2D{ { 0 , 0 } },
4949 geode::Point2D{ { 10 , 10 } }, 0 . };
50- auto & set_config = poisson.add_set ( " set_A" , " density_A " );
50+ auto & set_config = poisson.add_set ( " set_A" );
5151 set_config.lambda = 0.3 ;
5252 set_config.expected_nb_objects = 30 ;
5353 set_config.birth_ratio = birth_ratio[config];
@@ -96,21 +96,21 @@ namespace
9696 geode::PoissonProcessDescription< geode::Point2D > poisson;
9797 poisson.domain = { geode::Point2D{ { 0 , 0 } },
9898 geode::Point2D{ { 10 , 10 } }, 0 . };
99- auto & set_config_01 = poisson.add_set ( " set01" , " density_01 " );
99+ auto & set_config_01 = poisson.add_set ( " set01" );
100100 set_config_01.lambda = 0.1 ;
101101 set_config_01.expected_nb_objects = 10 ;
102102 set_config_01.birth_ratio = 2.0 ;
103103 set_config_01.death_ratio = 3.0 ;
104104 set_config_01.change_ratio = 1.0 ;
105105
106- auto & set_config_02 = poisson.add_set ( " set02" , " density_02 " );
106+ auto & set_config_02 = poisson.add_set ( " set02" );
107107 set_config_02.lambda = 0.4 ;
108108 set_config_01.expected_nb_objects = 40 ;
109109 set_config_02.birth_ratio = 3.0 ;
110110 set_config_02.death_ratio = 0.5 ;
111111 set_config_02.change_ratio = 1.0 ;
112112
113- auto & set_config_03 = poisson.add_set ( " set03" , " density_03 " );
113+ auto & set_config_03 = poisson.add_set ( " set03" );
114114 set_config_03.lambda = 0.3 ;
115115 set_config_01.expected_nb_objects = 30 ;
116116 set_config_03.birth_ratio = 4.0 ;
0 commit comments