Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: PuzzleSolvers.Slitherlink

Summary

Provides functions to solve Slitherlink puzzles. This solver does not use Puzzle.

Static methods

int[]
CalculateSlitherlinkClues(bool[] grid, int width)
Returns an array containing all of the Slitherlink clues for the specified grid. (see also remarks)
IEnumerable<bool[]>
Solve(int width, int height, int?[] clues = null, Random randomizer = null, int minNumLoops = 1, int maxNumLoops = 1)
Solves a Slitherlink puzzle on a rectangular grid and returns all solutions found.