diff --git a/counts b/counts deleted file mode 100644 index b58825b..0000000 --- a/counts +++ /dev/null @@ -1,46 +0,0 @@ -1 2 1 A1 -2 6 1 A2 -2 8 2 B2 -2 12 2 G2 -2 4 2 A1A1 -3 24 10 A3 -3 48 29 B3 -3 12 5 A1A2 -3 16 7 A1B2 -3 24 10 A1G2 -3 8 4 A1A1A1 -4 120 4608 A4 -4 384 49404510 B4 -4 192 114964 D4 -# 4 1152 ? F4 -4 36 50 A2A2 -4 48 118 A2B2 -4 72 342 A2G2 -4 64 336 B2B2 -4 96 1410 B2G2 -4 144 10516 G2G2 -4 48 116 A1A3 -4 96 1042 A1B3 -4 24 23 A1A1A2 -4 32 40 A1A1B2 -4 48 86 A1A1G2 -4 16 12 A1A1A1A1 -# 5 720 ? A5 -# 5 3840 ? B5 -# 5 1920 ? D5 -5 240 15591709 A1A4 -# 5 768 ? A1B4 -# 5 384 ? A1D4 -# 5 2304 ? A1F4 -5 114 167866 A2A3 -5 192 2805798 B2A3 -5 288 168775572 G2A3 -5 288 105122719 A2B3 -5 384 9576339067 B2B3 -# 5 576 ? G2B3 -5 96 7676 A1A1A3 -5 192 545430 A1A1B3 -5 96 3856 A1A1A1G2 -5 64 854 A1A1A1B2 -5 48 308 A1A1A1A2 -5 32 81 A1A1A1A1A1 diff --git a/counts.pdf b/counts.pdf deleted file mode 100644 index 1fc8759..0000000 Binary files a/counts.pdf and /dev/null differ diff --git a/thickenings.c b/thickenings.c index b828a5d..0393590 100644 --- a/thickenings.c +++ b/thickenings.c @@ -318,6 +318,10 @@ void enumerate_balanced_thickenings(semisimple_type_t type, node_t *graph, const queue_t queue; + int printstep = 0; + if(getenv("PRINTSTEP")) + printstep = atoi(getenv("PRINTSTEP")); + rank = coxeter_rank(type); order = coxeter_order(type); @@ -375,7 +379,7 @@ void enumerate_balanced_thickenings(semisimple_type_t type, node_t *graph, const if(is_fat) { // ERROR(count >= MAX_THICKENINGS, "Too many balanced thickenings! Increase MAX_THICKENINGS\n"); - if(count % 1 == 0) + if(printstep && (count+1) % printstep == 0) print_thickening(rank, order, level, 0, 0, 0, alphabet, stderr); fwrite(level, sizeof(signed char), order, outfile); count++;