Skip to content

A collection of simple heuristic search algorithms in Clojure

License

Notifications You must be signed in to change notification settings

NicMcPhee/simple-search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

simple-search

A Clojure implementation of a some simple heuristic search tools for the Evolutionary Computation and Artificial Intelligence class at the University of Minnesota, Morris. Students will clone this and add functionality as the semester progresses.

How to run the tests

The project uses Midje.

lein midje will run all tests.

lein midje namespace.* will run only tests beginning with "namespace.".

lein midje :autotest will run all the tests indefinitely. It sets up a watcher on the code files. If they change, only the relevant tests will be run again.