2014-12-01 05:16:01 +00:00
|
|
|
prelude
|
2014-09-17 21:39:05 +00:00
|
|
|
definition Prop : Type.{1} := Type.{0}
|
2014-10-02 23:20:52 +00:00
|
|
|
constant N : Type.{1}
|
|
|
|
constant and : Prop → Prop → Prop
|
2014-07-01 23:55:41 +00:00
|
|
|
infixr `∧`:35 := and
|
2014-10-02 23:20:52 +00:00
|
|
|
constant le : N → N → Prop
|
|
|
|
constant lt : N → N → Prop
|
|
|
|
constant f : N → N
|
|
|
|
constant add : N → N → N
|
2014-07-03 23:38:49 +00:00
|
|
|
infixl `+`:65 := add
|
2014-06-18 16:14:50 +00:00
|
|
|
precedence `≤`:50
|
|
|
|
precedence `<`:50
|
|
|
|
infixl ≤ := le
|
|
|
|
infixl < := lt
|
2014-07-03 23:38:49 +00:00
|
|
|
notation A ≤ B:prev ≤ C:prev := A ≤ B ∧ B ≤ C
|
|
|
|
notation A ≤ B:prev < C:prev := A ≤ B ∧ B < C
|
|
|
|
notation A < B:prev ≤ C:prev := A < B ∧ B ≤ C
|
2014-10-02 23:20:52 +00:00
|
|
|
constants a b c d e : N
|
2014-07-03 23:38:49 +00:00
|
|
|
check a ≤ b ≤ f c + b ∧ a < b
|
2014-06-18 16:14:50 +00:00
|
|
|
check a ≤ d
|
|
|
|
check a < b ≤ c
|
|
|
|
check a ≤ b < c
|
|
|
|
check a < b
|