From: Don Armstrong Date: Sat, 17 Jan 2009 01:20:04 +0000 (+0000) Subject: * indicate that multiword puzzles currently isn't in place X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8c80559b155a9b6add42cd303ce1652c172ba536;p=bin.git * indicate that multiword puzzles currently isn't in place --- diff --git a/anamang b/anamang index d63874f..aa7a006 100755 --- a/anamang +++ b/anamang @@ -143,21 +143,22 @@ if ($options{acrostic}) { print STDERR "Only showing 200 of the " . @allowable_words . " possible words\n"; @allowable_words = @allowable_words[0..199]; } - while ((@allowable_words == 0 or $options{multiword}) and - (@allowable_words < 200 or $options{show_all}) - ) { - # try for multiple word solutions, start with the longest - # words possible - - # try to split the number of known letters in half, and - # start increasing and decreasing in both directions - - # don't attempt to split each part into bits unless there - # are no solutions - - # avoid searching for words when we only have a length and - # no position information - } + # multiword currently not enabled + # while ((@allowable_words == 0 or $options{multiword}) and + # (@allowable_words < 200 or $options{show_all}) + # ) { + # # try for multiple word solutions, start with the longest + # # words possible + # + # # try to split the number of known letters in half, and + # # start increasing and decreasing in both directions + # + # # don't attempt to split each part into bits unless there + # # are no solutions + # + # # avoid searching for words when we only have a length and + # # no position information + # } print map {$_,qq(\n)} sort @allowable_words; } }