From b76bddb47b903e50621a94e47faa53319f007a34 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 17 Jul 2022 12:51:10 +0200 Subject: [PATCH] rulegen:: split --- rulegen.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/rulegen.cpp b/rulegen.cpp index 7e85ed8c..aaec62f0 100644 --- a/rulegen.cpp +++ b/rulegen.cpp @@ -88,6 +88,7 @@ static const flagtype w_no_queued_extensions = Flag(24); /*< consider extensions static const flagtype w_no_branch_skipping = Flag(24); /*< do not skip branches */ static const flagtype w_vertex_edges = Flag(25); /*< in reg3 all_edges, consider vertex adjacency */ static const flagtype w_ae_extra_step = Flag(26); /*< in reg3 all_edges, make one extra step */ +static const flagtype w_adj_only = Flag(27); /*< in reg3 adjacent only */ #endif EX flagtype flags = 0; @@ -190,7 +191,7 @@ twalker addstep(twalker x) { EX int less_states; -int number_of_types() { +EX int number_of_types() { if(arb::in()) return isize(arb::current.shapes); if(WDIM == 3) return gcd(reg3::quotient_count_sub(), less_states); throw hr_exception("unknown number_of_types"); @@ -1337,7 +1338,7 @@ EX void id_at_spin(twalker cw, vector& sprawl, vector& a = alloc_analyzer(); } states.push_back(a); - if(WDIM == 3) { + if(WDIM == 3 && !(flags & w_adj_only)) { auto& ae = check_all_edges(cw, a, isize(sprawl)); int id = isize(sprawl); if(id < isize(ae)) { @@ -2153,6 +2154,10 @@ EX void generate_rules() { important = t_origin; + rule_iterations(); + } + +EX void rule_iterations() { while(true) { check_timeout(); try {