Skip to content
Snippets Groups Projects
Unverified Commit 5471d8bd authored by Simon Guilloud's avatar Simon Guilloud Committed by GitHub
Browse files

Lattices2 (#206)

Fix README to take the folder change of the reference manual into account. Small improvements to lattices tutorial.
parent 9dcd3b12
Branches
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
LISA is a proof assistant based on first-order logic, sequent calculus, and set
theory. To get started, take a look at the [Reference
Manual](Reference%20Manual/lisa.pdf).
Manual](refman/lisa.pdf).
LISA is developed and maintained by the [Laboratory for Automated Reasoning and
Analysis (LARA)](https://lara.epfl.ch) at the [EPFL](https://epfl.ch).
......
object Lattices extends lisa.Main {
val x = variable
val P = predicate[1]
val f = function[1]
val fixedPointDoubleApplication = Theorem(
∀(x, P(x) ==> P(f(x))) |- P(x) ==> P(f(f(x)))
) {
sorry
}
// We introduce the signature of lattices
val <= = ConstantPredicateLabel.infix("<=", 2)
addSymbol(<=)
......@@ -16,7 +34,6 @@ object Lattices extends lisa.Main {
// We now states the axioms of lattices
val x = variable
val y = variable
val z = variable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment