SudokuMonster / SukakuExplainer

Modification to Sudoku Explainer (SE) by Nicolas Juillerat to accommodate Sukaku (Pencilmark) Sudoku puzzles
GNU Lesser General Public License v2.1
71 stars 14 forks source link

Added -P option to control FC+ #72

Open SudokuMonster opened 5 years ago

SudokuMonster commented 5 years ago

--FCPlus=N (-P) con trolls non trivial implication to add in FC+ and nested chains

-P0 (default; similar to SE121):

otherRules.add(new Locking(false));
otherRules.add(new HiddenSet(2, false));
otherRules.add(new NakedSet(2));
otherRules.add(new Fisherman(2));

-P1 Adds also

otherRules.add(new TurbotFish());
otherRules.add(new XYWing(false));
otherRules.add(new XYWing(true));

-P2 Adds also

otherRules.add(new HiddenSet(3, false));
otherRules.add(new NakedSet(3));
otherRules.add(new Fisherman(3));
otherRules.add(new StrongLinks(3));
otherRules.add(new WXYZWing());