These instructions cover installation of the code for the genetic algorithm tutorial. They assume you have installed the previous weeks' code according to the instructions given. Create a directory for the genetic algorithm software: > mkdir genetic-algorithm > cd genetic-algorithm Copy genetic-algorithm.tar.gz from the course directory. Extract genetic-algorithm.tar.gz in the directory you just created for it. > cp /bham/common/courses/ai-intro/source/genetic-algorithm.tar.gz . > tar -zxvf genetic-algorithm.tar.gz This will create one directory: src/ contains the code you will use Copy any rules you created last week into the the src directory Change to the src directory. > cd src Run SISC: > sisc From within SISC load spam-filter.scm > (load "spam-filter.scm") Remember: - if you want to inspect the corpus directly, it lives in /bham/common/courses/ai-intro/corpus/ - SISC documentation is available locally: file:///bham/common/courses/ai-intro/sisc/doc/index.html - For debugging there is a useful command: (print-last-exception)