-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.agda
38 lines (36 loc) · 1013 Bytes
/
index.agda
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{-# OPTIONS --guardedness #-}
module index where
import SMT.Script
import SMT.Theory.Class.Printable
import SMT.Theory.Class.Solvable
import SMT.Theory.Class.Reflectable
import SMT.Theory.Class.Parsable
import SMT.Theory.Base
import SMT.Theory.Raw.Base
import SMT.Theory.Raw.Reflection
import SMT.Theories.Core.Extensions
import SMT.Theories.Core.Base
import SMT.Theories.Core.Reflection
import SMT.Theories.Reals.Base
import SMT.Theories.Reals.Reflection
import SMT.Theories.Reals
import SMT.Theories.Nats
import SMT.Theories.Nats.Solvable
import SMT.Theories.Nats.Base
import SMT.Theories.Nats.Reflection
import SMT.Theories.Core
import SMT.Theories.Ints
import SMT.Theories.Ints.Base
import SMT.Theories.Ints.Reflection
import SMT.Utils.Float
import SMT.Backend.Z3
import SMT.Backend.CVC4
import SMT.Backend.Base
import SMT.Theory
import SMT.Script.Names
import SMT.Script.Show
import SMT.Script.Base
import SMT.Script.Reflection
import Text.Parser.String
import Data.Environment
import Reflection.Normalise