1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

rulegen:: epxort flag names

This commit is contained in:
Zeno Rogue 2021-08-22 14:28:54 +02:00
parent 489c930ced
commit 75e637be30

View File

@ -56,6 +56,7 @@ EX int double_live_branches = 0;
/** the number of treestates pre-minimization */
EX int states_premini = 0;
#ifdef HDR
/** change some flags -- they usually make it worse */
static const flagtype w_numerical = Flag(1); /*< build trees numerically (to be implemented) */
static const flagtype w_single_shortcut = Flag(2); /*< generate just one shortcut */
@ -73,6 +74,7 @@ static const flagtype w_parent_never = Flag(13); /*< never consider the full par
static const flagtype w_always_clean = Flag(14); /*< restart following phases after any distance errors */
static const flagtype w_single_origin = Flag(15); /*< consider only one origin */
static const flagtype w_slow_side = Flag(16); /*< do not try get_side optimization */
#endif
EX flagtype flags = 0;