From 92fe5c67548304af7630ba0dd571b9d95241e412 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 24 Dec 2021 15:13:25 +0100 Subject: Added -c option for solve --- src/steps.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/steps.c') 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 = { .ntables = 2, }; +Step +eofbfin_eofb = { + .shortname = "eofbfin", + .name = "Optimal after EO on F/B without breaking EO", + + .final = true, + .is_done = is_solved, + .estimate = estimate_nxopt31_HTM, + .ready = check_eofb, + .ready_msg = check_eo_msg, + .is_valid = always_valid, + .moveset = &moveset_eofb, + + .pre_trans = uf, + + .tables = {&pd_nxopt31_HTM, &pd_corners_HTM}, + .ntables = 2, +}; + /* EO steps **************************/ Step eoany_HTM = { @@ -861,6 +880,7 @@ htrfin_htr = { Step *steps[NSTEPS] = { &optimal_HTM, /* first is default */ &optimal_light_HTM, + &eofbfin_eofb, &eoany_HTM, &eofb_HTM, -- cgit v1.3