diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-24 15:13:25 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-12-24 15:13:25 +0100 |
| commit | 92fe5c67548304af7630ba0dd571b9d95241e412 (patch) | |
| tree | 4f394f944bdb05a28a36ae0442d9d2418cb5fa3c /src/steps.c | |
| parent | fe1343560ef17a700cdf3110d2d2b6305338c041 (diff) | |
| download | nissy-92fe5c67548304af7630ba0dd571b9d95241e412.tar.gz nissy-92fe5c67548304af7630ba0dd571b9d95241e412.zip | |
Added -c option for solve
Diffstat (limited to 'src/steps.c')
| -rw-r--r-- | src/steps.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/steps.c b/src/steps.c index ae3f9fd..79f609b 100644 --- a/src/steps.c +++ b/src/steps.c | |||
| @@ -121,6 +121,25 @@ optimal_light_HTM = { | |||
| 121 | .ntables = 2, | 121 | .ntables = 2, |
| 122 | }; | 122 | }; |
| 123 | 123 | ||
| 124 | Step | ||
| 125 | eofbfin_eofb = { | ||
| 126 | .shortname = "eofbfin", | ||
| 127 | .name = "Optimal after EO on F/B without breaking EO", | ||
| 128 | |||
| 129 | .final = true, | ||
| 130 | .is_done = is_solved, | ||
| 131 | .estimate = estimate_nxopt31_HTM, | ||
| 132 | .ready = check_eofb, | ||
| 133 | .ready_msg = check_eo_msg, | ||
| 134 | .is_valid = always_valid, | ||
| 135 | .moveset = &moveset_eofb, | ||
| 136 | |||
| 137 | .pre_trans = uf, | ||
| 138 | |||
| 139 | .tables = {&pd_nxopt31_HTM, &pd_corners_HTM}, | ||
| 140 | .ntables = 2, | ||
| 141 | }; | ||
| 142 | |||
| 124 | /* EO steps **************************/ | 143 | /* EO steps **************************/ |
| 125 | Step | 144 | Step |
| 126 | eoany_HTM = { | 145 | eoany_HTM = { |
| @@ -861,6 +880,7 @@ htrfin_htr = { | |||
| 861 | Step *steps[NSTEPS] = { | 880 | Step *steps[NSTEPS] = { |
| 862 | &optimal_HTM, /* first is default */ | 881 | &optimal_HTM, /* first is default */ |
| 863 | &optimal_light_HTM, | 882 | &optimal_light_HTM, |
| 883 | &eofbfin_eofb, | ||
| 864 | 884 | ||
| 865 | &eoany_HTM, | 885 | &eoany_HTM, |
| 866 | &eofb_HTM, | 886 | &eofb_HTM, |
