// HyperRogue -- expansion_analyzer // Copyright (C) 2011-2018 Zeno Rogue, see 'hyper.cpp' for details namespace hr { int subtype(cell *c) { return patterns::getpatterninfo(c, patterns::PAT_NONE, 0).id; } bignum& bignum::operator +=(const bignum& b) { int K = isize(b.digits); if(K > isize(digits)) digits.resize(K); int carry = 0; for(int i=0; i= isize(digits)) digits.push_back(0); digits[i] += carry; if(i < K) digits[i] += b.digits[i]; if(digits[i] >= BASE) { digits[i] -= BASE; carry = 1; } else carry = 0; } return *this; } string bignum::get_str(int max_length) { if(digits.empty()) return "0"; string ret = its(digits.back()); for(int i=isize(digits)-2; i>=0; i--) { if(isize(ret) > max_length && i) { ret += XLAT(" (%1 more digits)", its(9 * (i+1))); return ret; } ret += " "; string val = its(digits[i]); while(isize(val) < 9) val = "0" + val; ret += val; } return ret; } vector expansion_analyzer::gettype(cell *c) { vector res; res.push_back(subtype(c) * 4 + 2); int d = celldist(c); for(int i=0; itype; i++) { cell *c1 = c->cmove(i); res.push_back(subtype(c1) * 4 + celldist(c1) - d); } return res; } int expansion_analyzer::sample_id(cell *c) { auto t = gettype(c); if(codeid.count(t)) return codeid[t]; auto &cit = codeid[t]; cit = isize(samples); samples.push_back(c); return cit; } void expansion_analyzer::preliminary_grouping() { samples.clear(); codeid.clear(); children.clear(); sample_id(currentmap->gamestart()); for(int i=0; itype; k++) { cell *c1 = c->cmove(k); if(celldist(c1) != d+1) continue; cell *c2 = c->cmove((k+1) % c->type); if(celldist(c2) != d+1) continue; children.back().push_back(sample_id(c1)); } } N = isize(samples); rootid = 0; } void expansion_analyzer::reduce_grouping() { vector grouping; grouping.resize(N); int nogroups = 1; for(int i=0; i, int > > childgroups(N); for(int i=0; i groupsample(nogroups); for(int i=0; i> newchildren(nogroups); for(int i=0; i int size_upto(vector& v, int s) { int res = isize(v); if(res < s) v.resize(s); return res; } bignum& expansion_analyzer::get_descendants(int level) { if(!N) preliminary_grouping(), reduce_grouping(); return get_descendants(level, rootid); } bignum& expansion_analyzer::get_descendants(int level, int type) { auto& pd = descendants; size_upto(pd, level+1); for(int d=0; d<=level; d++) for(int i=size_upto(pd[d], N); i= bignum::BASE) return 0; ld matrix[100][128]; for(int i=0; i=0; k--) for(int l=k-1; l>=0; l--) if(matrix[l][k]) matrix[l][v] -= matrix[l][k] * matrix[k][v]; coef.resize(v); for(int i=0; i= 1) return growth; if(!N) preliminary_grouping(), reduce_grouping(); vector eigen(N, 1); ld total; for(int iter=0; iter<100000; iter++) { total = 0; vector neweigen(N, 0); for(int i=0; i d) return get_descendants(d).get_str(max_length); int v = isize(descendants) - 1; bignum& b = get_descendants(v); if(b.digits.empty()) return "0"; ld log_10 = log(b.digits.back()) / log(10) + 9 * (isize(b.digits) - 1) + (d - v) * log(get_growth()) / log(10); int more_digits = int(log_10); return XLAT("about ") + fts(pow(10, log_10 - more_digits)) + "E" + its(more_digits); } void expansion_analyzer::view_distances_dialog() { distcolors[0] = forecolor; dialog::init(""); long long qty[64]; vector& ac = currentmap->allcells(); for(int i=0; i<64; i++) qty[i] = 0; for(int i=0; i= 0 && d < 64) qty[d]++; } if(sizes_known()) { find_coefficients(); if(gamerange() >= valid_from && coefficients_known == 2) { for(int i=gamerange()+1; i<64; i++) { qty[i] = 0; for(int j=0; j 1) fmt += " + " + its(coef[i]); else if(coef[i] < -1) fmt += " - " + its(-coef[i]); fmt += "a(d"; if(i != isize(coef) - 1) fmt += "+" + its(isize(coef) - 1 - i); fmt += ")"; first = false; } dialog::addHelp(fmt); } else dialog::addBreak(100); char buf[20]; snprintf(buf, 20, "%.8lf", (double) get_growth()); dialog::addInfo("a(d) ~ " + string(buf) + "ᵈ", forecolor); } } dialog::display(); } #if !CAP_MINI void compute_coefficients() { printf("%s %s\n", gp::operation_name().c_str(), ginf[geometry].name); start_game(); printf(" sizes:"); for(int i=0; i<10; i++) printf(" %d", expansion.get_descendants(i).approx_int()); printf(" N = %d\n", expansion.N); expansion.find_coefficients(); if(expansion.coefficients_known == 2) { printf(" coefficients:"); for(int x: expansion.coef) printf(" %d", x); printf(" (tested on %d to %d)\n", expansion.valid_from, expansion.tested_to); } } int readArgs() { using namespace arg; if(0) ; else if(argis("-vap")) { PHASEFROM(2); start_game(); while(true) { string s = expansion.approximate_descendants(10000, 100); printf("s = %s\n", s.c_str()); if(isize(expansion.descendants) >= 10000) break; } } else if(argis("-csizes")) { PHASEFROM(2); start_game(); expansion.get_growth(); for(int i=0; i<30; i++) printf("%s / %s\n", expansion.get_descendants(i).get_str(1000).c_str(), expansion.get_descendants(i, expansion.diskid).get_str(1000).c_str()); } else if(argis("-csolve")) { PHASEFROM(2); start_game(); printf("preliminary_grouping...\n"); expansion.preliminary_grouping(); printf("N = %d\n", expansion.N); printf("reduce_grouping...\n"); expansion.reduce_grouping(); printf("N = %d\n", expansion.N); printf("growth = %lf\n", (double) expansion.get_growth()); expansion.find_coefficients(); if(expansion.coefficients_known == 2) { printf("coefficients:"); for(int x: expansion.coef) printf(" %d", x); printf(", valid from %d to %d\n", expansion.valid_from, expansion.tested_to); } } else if(argis("-csolve_tab")) { for(eGeometry geo: {gNormal, gOctagon, g45, g46, g47}) { set_geometry(geo); set_variation(eVariation::pure); compute_coefficients(); set_variation(eVariation::bitruncated); compute_coefficients(); for(int x=1; x<9; x++) for(int y=0; y<=x; y++) { if(x == 1 && y == 0) continue; if(x == 1 && y == 1 && S3 == 3) continue; if(x+y > 10) continue; stop_game(); gp::param = gp::loc(x, y); need_reset_geometry = true; set_variation(eVariation::goldberg); compute_coefficients(); } } } else return 1; return 0; } auto ea_hook = addHook(hooks_args, 100, readArgs); #endif expansion_analyzer expansion; }