1
Fork 0
mirror of https://github.com/Jaxan/nominal-lstar.git synced 2025-04-27 14:47:45 +02:00

Formula simplifications + constants.

This commit is contained in:
Michał Szynwelski 2016-04-24 23:15:07 +02:00
parent d52f991a74
commit 440e5ef854
3 changed files with 3 additions and 7 deletions

View file

@ -3,8 +3,7 @@ module Examples.Contrived where
import Teacher
import NLambda hiding (a, b, c, d, e, f, g, h, i, j, k, l, m, n,
o, p, q, r, s, t, u, v, w, x, y, z)
import NLambda
-- Explicit Prelude, as NLambda has quite some clashes
import Data.Either (Either (..))

View file

@ -6,8 +6,7 @@
import Examples
import Teacher
import NLambda hiding (a, b, c, d, e, f, g, h, i, j, k, l, m,
n, o, p, q, r, s, t, u, v, w, x, y, z)
import NLambda
import Data.List (inits)
import Data.Maybe (fromJust)

View file

@ -5,9 +5,7 @@
module Teacher where
import NLambda hiding (a, b, c, d, e, f, g, h, i, j,
k, l, m, n, o, p, q, r, s, t, u, v, w,
x, y, z)
import NLambda
-- Explicit Prelude, as NLambda has quite some clashes
import Data.Function (fix)