A Computer Takes the LSAT: Resources
This is the resources post in a series of posts about encoding LSAT Puzzles in the Ergo Lite programming language. To start from the beginning, go to the introductory post.
If you are interested in learning more about the Ergo Lite programming language, or if you would like to play along with the coding as a learning exercise, here are some useful resources.
The Official LSAT PrepTest from June of 2007 from which the example questions are taken is available online.
If you would like to use Ergo Lite, which is also called “Flora-2”, you can get it at SourceForge.
If you are interested in a more user-friendly way to use Ergo Lite, check out Blawx, which is a prototype drag-and-drop visual development environment for Ergo Lite.
For help learning Ergo Lite, the primary resource is the user manual. However, Coherent Knowledge makes a commercial version of the Ergo Lite language called ErgoAI, and they have learning resources and a mailing list for users of both languages available through their website. The two languages are similar, but not identical, so don’t expect everything that works in ErgoAI to work in Ergo Lite.
If you are using Ergo Lite on a Windows computer, I can recommend using Visual Studio Code as a development environment. Once Ergo Lite is installed on your computer, you can edit the settings of VS Code to allow you to use a Ergo Lite interpreter inside a Terminal window, so you never need to leave VS Code to test what you have written.
This is done by going to File->Preferences->Settings->Features->Terminal and finding the Integrated>Env:Windows setting. Edit the settings.json file and add the line
"terminal.integrated.shell.windows": "C:\\path\\to\\\\runflora.bat"
Then when you hit CTRL-SHIFT-~, it will run Ergo Lite right inside VS Code.
If you would like to get a copy of all of the final code developed in this series, it is available as a Gist on GitHub, and is included here for your convenience.
If you find any bugs in the code in this series, or serious errors in the posts, please do let me know and I’ll do my best to fix them.
Jason Morris is an LLM Candidate in Computational Law at the University of Alberta Faculty of Law, the operator of Round Table Law, and co-founder of Lemma Legal Consulting. He can be reached at @RoundTableLaw on Twitter. If you need help getting computers to do law, feel free to get in touch.