@@ -120,7 +120,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_SimpleMerge) {
120120
121121 // Initial orbits: {0, 2} and {1, 3}. Coarse graph: 0 -> 1
122122 // With threshold 2, these should be merged.
123- OrbitGraphProcessor<graph_t , graph_t > processor ( 2 ) ;
123+ OrbitGraphProcessor<graph_t , graph_t > processor;
124124 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
125125 processor.discover_isomorphic_groups (dag, hasher);
126126
@@ -158,7 +158,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_ForkJoinNoMerge) {
158158 // Initial orbits: {0}, {1,2}, {3}. Coarse graph: 0 -> 1 -> 2
159159 // Merging 0 and 1 would result in a group of size 1 ({0,1,2}), which is not viable (threshold 2).
160160 // Merging 1 and 2 would also result in a group of size 1 ({1,2,3}), not viable.
161- OrbitGraphProcessor<graph_t , graph_t > processor ( 2 ) ;
161+ OrbitGraphProcessor<graph_t , graph_t > processor;
162162 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
163163 processor.discover_isomorphic_groups (dag, hasher);
164164
@@ -193,7 +193,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_PartitionCheck_MediumGraph) {
193193 BOOST_REQUIRE_GT (dag.num_vertices (), 0 );
194194
195195 // Use a higher threshold to encourage more merging on this larger graph
196- OrbitGraphProcessor<graph_t , graph_t > processor ( 4 ) ;
196+ OrbitGraphProcessor<graph_t , graph_t > processor;
197197 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
198198 processor.discover_isomorphic_groups (dag, hasher);
199199
@@ -208,7 +208,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_MultiPipelineMerge) {
208208 const auto dag = construct_multi_pipeline_dag<graph_t >(5 , 4 );
209209 BOOST_REQUIRE_EQUAL (dag.num_vertices (), 20 );
210210
211- OrbitGraphProcessor<graph_t , graph_t > processor ( 5 ) ; // Set threshold to match pipeline count
211+ OrbitGraphProcessor<graph_t , graph_t > processor; // Set threshold to match pipeline count
212212 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
213213 processor.discover_isomorphic_groups (dag, hasher);
214214
@@ -236,7 +236,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_LadderNoMerge) {
236236 const auto dag = construct_ladder_dag<graph_t >(10 );
237237 BOOST_REQUIRE_EQUAL (dag.num_vertices (), 22 );
238238
239- OrbitGraphProcessor<graph_t , graph_t > processor ( 2 ) ;
239+ OrbitGraphProcessor<graph_t , graph_t > processor;
240240 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
241241 processor.discover_isomorphic_groups (dag, hasher);
242242
@@ -256,7 +256,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_AsymmetricNoMerge) {
256256 const auto dag = construct_asymmetric_dag<graph_t >(30 );
257257 BOOST_REQUIRE_EQUAL (dag.num_vertices (), 30 );
258258
259- OrbitGraphProcessor<graph_t , graph_t > processor ( 2 ) ;
259+ OrbitGraphProcessor<graph_t , graph_t > processor;
260260 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
261261 processor.discover_isomorphic_groups (dag, hasher);
262262
@@ -278,7 +278,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_BinaryTreeNoMerge) {
278278 const auto dag = construct_binary_out_tree<graph_t >(4 );
279279 BOOST_REQUIRE_EQUAL (dag.num_vertices (), (1 << 5 ) - 1 );
280280
281- OrbitGraphProcessor<graph_t , graph_t > processor ( 2 ) ;
281+ OrbitGraphProcessor<graph_t , graph_t > processor;
282282 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
283283 processor.discover_isomorphic_groups (dag, hasher);
284284
@@ -293,8 +293,7 @@ BOOST_AUTO_TEST_CASE(OrbitGraphProcessor_ButterflyMerge) {
293293 const auto dag = construct_butterfly_dag<graph_t >(3 );
294294 BOOST_REQUIRE_EQUAL (dag.num_vertices (), (3 + 1 ) * 8 );
295295
296- OrbitGraphProcessor<graph_t , graph_t > processor (16 );
297- processor.setMinSymmetry (16 );
296+ OrbitGraphProcessor<graph_t , graph_t > processor;
298297 MerkleHashComputer<graph_t , bwd_merkle_node_hash_func<graph_t >, true > hasher (dag, dag);
299298 processor.discover_isomorphic_groups (dag, hasher);
300299
0 commit comments