-
Notifications
You must be signed in to change notification settings - Fork 0
Aris
Tobias J. Park edited this page Feb 14, 2020
·
19 revisions
Aris is a tool created by students working under Professor Bram van Heuveln at Rensselaer Polytechnic Institute for evaluating first order logic proofs. This application could be useful to study in order to help us implement first order logic into ALPACA.
The code for Aris is located at https://github.com/Bram-Hub/Aris and is written in a combination of Java and Rust (frontend is in Java, backend is in Java and Rust). The project has two components: a server (which contains the logic of the program), and a client (for interacting with the server).
The main folders of interest for our project are the following:
- proof-client - Contains the client side module of the Aris Proof system (essentially, this is the frontend). proof-client calls libaris; libaris is the underlying logic engine.
- libaris - Contains a logic software library used by Aris Proof (essentially, this is the backend). The Rust code which powers the logic backend is contained here.
WIP....