Idris2/libs/contrib/Syntax/PreorderReasoning.idr

38 lines
1018 B
Idris
Raw Normal View History

||| Until Idris2 starts supporting the 'syntax' keyword, here's a
||| poor-man's equational reasoning
2020-05-18 15:59:07 +03:00
module Syntax.PreorderReasoning
infixl 0 ~~
prefix 1 |~
infix 1 ...
2020-05-18 15:59:07 +03:00
|||Slightly nicer syntax for justifying equations:
|||```
||| |~ a
||| ~~ b ...( justification )
|||```
|||and we can think of the `...( justification )` as ASCII art for a thought bubble.
public export
data Step : a -> b -> Type where
(...) : (0 y : a) -> (0 step : x ~=~ y) -> Step x y
2020-05-18 15:59:07 +03:00
public export
data FastDerivation : (x : a) -> (y : b) -> Type where
(|~) : (0 x : a) -> FastDerivation x x
(~~) : FastDerivation x y -> {0 z : a} -> (step : Step y z) -> FastDerivation x z
public export
Calc : {x : a} -> {y : b} -> FastDerivation x y -> x ~=~ y
Calc (|~ x) = Refl
Calc ((~~) {y=_} der (_ ... Refl)) = Calc der
2020-05-18 15:59:07 +03:00
{- -- requires import Data.Nat
0
2020-05-18 15:59:07 +03:00
example : (x : Nat) -> (x + 1) + 0 = 1 + x
example x =
Calc $
|~ (x + 1) + 0
~~ x+1 ...( plusZeroRightNeutral $ x + 1 )
~~ 1+x ...( plusCommutative x 1 )
-}