https://github.com/caneroj1/search
Search algorithms in Haskell
https://github.com/caneroj1/search
ai graph-search haskell search-algorithm
Last synced: about 2 months ago
JSON representation
Search algorithms in Haskell
- Host: GitHub
- URL: https://github.com/caneroj1/search
- Owner: caneroj1
- License: bsd-3-clause
- Created: 2016-11-29T01:43:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-16T04:37:43.000Z (over 8 years ago)
- Last Synced: 2025-02-03T11:47:40.904Z (4 months ago)
- Topics: ai, graph-search, haskell, search-algorithm
- Language: Haskell
- Size: 45.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# search
Search algorithms in HaskellGoing through an AI textbook to learn some basic AI principles. Implements
a few different search algorithms, both uninformed and informed. This includes
breadth-first search, depth-first search (and friends), uniform-cost search,
greedy (best-first) search, and a*.