Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 619 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 619 Bytes

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.