README 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Introduction
  2. ------------
  3. This project comprises the design and production of a web application that can
  4. assist high school students in learning how to apply mathematical term
  5. reductions.
  6. The basic idea is that the student can work on an assignment using an online
  7. text editor. The text entered in the editor is converted to a mathematical
  8. notation and displayed on the screen in real-time. If the student gets stuck
  9. while rewriting a mathematical formula, he or she can request a `hint' from the
  10. system.
  11. The system should recognize a best reduction to apply at that time, and guide
  12. the student in the right direction by displaying a textual hint that tells the
  13. user what sort of reduction can be applied. When asked the system should apply
  14. an appropriate reduction step itself.
  15. This project is implemented and designed by Taddeus Kroes
  16. <taddeuskroes@hotmail.com> and Sander Mathijs van Veen <smvv@kompiler.org> and
  17. supervised by drs. Krzysztof Apt of the CWI, Amsterdam.
  18. Dependencies
  19. ------------
  20. - GNU Bison and Flex.
  21. - GNU GCC (or another decent C compiler).
  22. - Pyrex <http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/>.
  23. In order to run the unit tests and and see how much coverage the unit tests
  24. have, please install:
  25. - Python testrunner <http://git/kompiler.org/python/testrunner>.
  26. - Python coverage <http://nedbatchelder.com/code/coverage/>.
  27. Deployment / Installation
  28. -------------------------
  29. Use the following commands in order to be able to deploy the term rewriting
  30. system on a Linux box:
  31. git clone git@kompiler.org:trs
  32. cd trs
  33. git submodule init
  34. git submodule update
  35. make -j4