/aima-julia

Julia implementation of algorithms from Russell And Norvig's "Artificial Intelligence - A Modern Approach"

Primary LanguageJuliaMIT LicenseMIT

aima-julia

Build Status

Julia (v0.5+) implementation of the algorithms found in "Artificial Intelligence: A Modern Approach".

Using aima-julia for portable purposes

Include the following lines in all files within the same directory.

include("aimajulia.jl");
using aimajulia;

Running tests

All Base.Test tests for the aima-julia project can be found in the tests directory.

Conventions

  • 4 spaces, not tabs

  • Please try to follow the style conventions of the file your are modifying.

We like this style guide.

Acknowledgements

The algorithms implemented in this project are found from both Russell And Norvig's "Artificial Intelligence - A Modern Approach" and aima-pseudocode.