package knights_tour
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=4c693ffd5554cdbb064b0aa2ec104ec1831d3abd077ea2cec0a52922ebdc2212
sha512=f3cd71b81c7e44e7186e43c407ee679a2fede799a8aa07c495932a1a7469c5cc80a32f28eaa0b2868d195e64896802baf7959bae5b3466f777279fa1500f3e60
doc/knights_tour.pentominos/Pentominos/Polyomino/index.html
Module Pentominos.Polyomino
Source
A Polyomino is a puzzle piece composed of a number equally sized grid-squares. Depending on the number of squares they can go by different names.
- 5 squares: 5-omino or pentomino
- 2 squares: 2-omino or domino
We represent polyominos as a Set of points with an x
and y
coordinate.
Typically puzzles and games involving polyominos have physical puzzle pieces that can be flipped over and rotated. The pieces can also be placed down on the puzzle board at different locations.
This means that to decide whether two sets of points represent the same Polyomino puzzle piece, we need to consider them equivalent under these transformations:
- rotate 90, 180 or 270 degrees
- flipped around (mirroring along the vertical or horizontal axis)
- translated
An unplaced polyomino puzzle piece. It is characterized by a normalized PointSet, making it invariant to any combination 90 degree rotation, mirroring, and translation.
Gets the 'name' of a polyomino. The name is unique for polyomino of a the same order (i.e. if two polyominos have the same order and the same name, it means they are the same polyomino)
Compares two polymoninos to see if they represent the same shape; invariant to rotation, mirroring and translation
Gets the canonical PointSet that characterizes this Polyomino
Gets all variants of a given Polyomino. A variant is simlar shape obtained by applying rotation and mirroring transformations (but no translation). I.e. it is a specific orientation of Polyomino that has not yet been placed on a specific location of the board.
Print string image of polyomino to a formatter
Find the first polyomino that is completely assymetric and remove all but one of its variants. This is a 'hack' that allows eliminating equivalent symmetric solutions from a puzzle.
Randomize the order of puzzle pieces and their variants. This can make running puzzle solvers more interesting as it then tends to produce different solutions each time you run it.
Writes a list of polyominos and all their variants in a textual format that is human readable; but can also be used to restore that same list of pieces and variants by load
ing the file later.
Like save
but writes the data to Format.formatter
instead of a out_channel
Reads a list of polyominos and all their variants from a file that was previously written using save
Reads a list of polyominos and all their variants from sequence of lines, as previously written using save