sbv-7.9: SMT Based Verification: Symbolic Haskell theorem prover using SMT solving.

Copyright(c) Levent Erkok
LicenseBSD3
Maintainererkokl@gmail.com
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Documentation.SBV.Examples.Puzzles.NQueens

Description

Synopsis

Documentation

type Solution = [SWord8] Source #

A solution is a sequence of row-numbers where queens should be placed

isValid :: Int -> Solution -> SBool Source #

Checks that a given solution of n-queens is valid, i.e., no queen captures any other.

nQueens :: Int -> IO () Source #

Given n, it solves the n-queens puzzle, printing all possible solutions.