package knights_tour

  1. Overview
  2. Docs
Solves the Knight's tour puzzle

Install

Dune Dependency

Authors

Maintainers

Sources

knights_tour-0.0.1.tbz
sha256=457bb41e8bb45a4324c7ab3594fdc7306c76d8988e5e7b011e8a0ed1ca9494be
sha512=19c4dae1737a2d3d9ae75db2c22ceb5c0c7d0c2aea24e7a433bc92e5ca79851e3fe698474669e223387b4c2fbe09bffc3a7f4caeb667a8c39f1e40a40d23f6e9

CHANGES.html

CHANGES

## v0.0.1 (2022-05-8)

Initial release. A simple program that solves the Knight's Tour puzzle.
Includes a library for defining searchspaces abstractly and then searching 
them for solutions.

Compares two different implementations of the knights-tour solver.
- one uses the searchpace library.
- the other is a more direct implementation.