File: README

package info (click to toggle)
haskell-tree-monad 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 68 kB
  • sloc: haskell: 63; makefile: 7
file content (12 lines) | stat: -rw-r--r-- 469 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
Non-Determinism Monad for Tree Search
=====================================

This Haskell library provides an implementation of the MonadPlus type
class that represents the search space as a tree whose constructors
represent mzero, return, and mplus.

Such a tree can be used to implement different search strategies,
e.g., by using a queue. It can also be used as a basis for parallel
search strategies that evaluate different parts of the search space
concurrently.