• Stars
    star
    124
  • Rank 281,912 (Top 6 %)
  • Language
    Scheme
  • Created over 11 years ago
  • Updated over 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Code from 'The Reasoned Schemer' (MIT Press, 2005) by Daniel P. Friedman, William E. Byrd and Oleg Kiselyov.

TheReasonedSchemer

Original code from 'The Reasoned Schemer' (MIT Press, 2005) by Daniel P. Friedman, William E. Byrd and Oleg Kiselyov.

This implementation uses an older version of miniKanren. Newer versions of miniKanren have a simpler language, simpler implementation, and improved performance. (For example, condi has been replaced by an improved version of conde which performs interleaving.).

The code is divided into four files:

mk.scm contains the miniKanren core forms.

mkextraforms.scm contains run* and project.

mkprelude.scm contains useful helper relations, including the full arithmetic system from chapters 7 and 8.

mktests.scm contains essentially every piece of code in the book, along with appropriate tests.

To run all the tests, simply load mktests.scm in an R5RS-compatible Scheme system:

> (load "mktests.scm")

To just play around with miniKanren, instead load mkprelude.scm.