# HG changeset patch # User Steve Losh # Date 1471992704 0 # Node ID 1d988c779594dc97a0913efcaaf1cbc3f9725958 # Parent e482349e84e788adad075d8c5fc1dfb53edad00c Update diff -r e482349e84e7 -r 1d988c779594 README.markdown --- a/README.markdown Tue Aug 23 10:37:03 2016 +0000 +++ b/README.markdown Tue Aug 23 22:51:44 2016 +0000 @@ -70,6 +70,7 @@ [cl-ppcre]: http://www.weitz.de/cl-ppcre/ [huffman-trees]: https://en.wikipedia.org/wiki/Huffman_coding [cl-adt]: https://bitbucket.org/tarballs_are_good/cl-algebraic-data-type +[gdl-bench]: http://cgi.cse.unsw.edu.au/%7Emit/GGP/GIGA-13-Proceedings.pdf#page=55 ## June 2016 @@ -1213,3 +1214,14 @@ So even after just one day it's already paying off. Once I finish reading Alexandria I'll move on to [cl-ppcre][] and then who knows where from there. + +### 2016-08-23 + +* With Stephan's help I got part of his [GDL Reasoner Benchmark][gdl-bench] up + and running. I think I should be able to plug in Temperance with another day + or so of work. It'll be nice to have a decent benchmark. +* Changed Temperance's API to be more functional (e.g. instead of `(query foo)` + using a global variable for a database it's now `(query db foo)`). This + should make maintenance and composing things saner, at the cost of a bit of + extra typing. +* More [SICP][]. Finished playing around with [Huffman Trees][huffman-trees].