]> git.donarmstrong.com Git - bin.git/commitdiff
* indicate that multiword puzzles currently isn't in place
authorDon Armstrong <don@donarmstrong.com>
Sat, 17 Jan 2009 01:20:04 +0000 (01:20 +0000)
committerDon Armstrong <don@donarmstrong.com>
Sat, 17 Jan 2009 01:20:04 +0000 (01:20 +0000)
anamang

diff --git a/anamang b/anamang
index d63874f2e02837cd6ac59ca73f98e5ca98ece314..aa7a006a87bf29562390f3baa6ed4bfc9fa74db1 100755 (executable)
--- 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;
     }
 }