Example: Word-square puzzle More...
Public Types | |
enum | { BRANCH_WORDS, BRANCH_LETTERS } |
Branching variants. More... | |
Public Member Functions | |
WordSquare (const SizeOptions &opt) | |
Actual model. | |
WordSquare (bool share, WordSquare &s) | |
Constructor for cloning s. | |
virtual Space * | copy (bool share) |
Copy during cloning. | |
virtual void | print (std::ostream &os) const |
Print solution. | |
Protected Attributes | |
const int | w_l |
Length of words. | |
IntVarArray | letters |
The array of letters. | |
Related Functions | |
(Note that these are not member functions.) | |
int | main (int argc, char *argv[]) |
Main-function. |
Example: Word-square puzzle
From http://en.wikipedia.org/wiki/Word_square: A word square is a special case of acrostic. It consists of a set of words, all having the same number of letters as the total number of words (the "order" of the square); when the words are written out in a square grid horizontally, the same set of words can be read vertically.
Definition at line 63 of file word-square.cpp.
anonymous enum |
Branching variants.
Definition at line 71 of file word-square.cpp.
WordSquare::WordSquare | ( | const SizeOptions & | opt | ) | [inline] |
Actual model.
Definition at line 76 of file word-square.cpp.
WordSquare::WordSquare | ( | bool | share, |
WordSquare & | s | ||
) | [inline] |
Constructor for cloning s.
Definition at line 119 of file word-square.cpp.
virtual Space* WordSquare::copy | ( | bool | share | ) | [inline, virtual] |
Copy during cloning.
Definition at line 125 of file word-square.cpp.
virtual void WordSquare::print | ( | std::ostream & | os | ) | const [inline, virtual] |
Print solution.
Reimplemented from Gecode::Driver::ScriptBase< BaseSpace >.
Definition at line 130 of file word-square.cpp.
int main | ( | int | argc, |
char * | argv[] | ||
) | [related] |
Main-function.
Definition at line 190 of file crossword.cpp.
const int WordSquare::w_l [protected] |
Length of words.
Definition at line 66 of file word-square.cpp.
IntVarArray WordSquare::letters [protected] |
The array of letters.
Definition at line 68 of file word-square.cpp.