ronk wrote:gsf wrote:these are method abbreviations from my command line solver they can be enabled/disabled/listed by command line options
(-qFN => only use FN, -QX => don't use X, -f%q => list methods applied)
Since there is apparently no way to disable guessing ( - QG ), is there some other way to determine how far the solver would get without guessing?
-e lists the puzzle after all constraints have been exhausted (before G)
so this will list the programmer's forum pencimark (hints) grid just before G
- Code: Select all
sudoku -e -f%#ph
ronk wrote:In some of your posts, you've used the phrase "up to coloring". Does that mean x-cycles are disabled ( -QX )?
not very precise/accurate since my solver does not do explicit coloring
I believe the X method at least covers simple coloring, so I should have said
"up to and including simple coloring" or "FNBTXW"
ronk wrote:When using the backdoor listing option ( -f%#am ), is there a way to get the 'fill' values too?
this slipped --man: %#Am lists the backdoor cells with values, so
-f%q%,%#aM%,%#Am will list the methods applied, the number of backdoors, and the backdoor cells with values
ronk wrote:P.S. I'm assuming "Box Claim" means either of:
- Candidates in a row/col are limited to one box, or
- Candidates in a box are limited to one row/col
yes
thanks