-
Notifications
You must be signed in to change notification settings - Fork 2
/
prover.M
68 lines (33 loc) · 856 Bytes
/
prover.M
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
(* Copyright E.M.Clarke and Xudong Zhao, Jan 22, 1991 *)
(* THE PACKAGE CONTAINS THE MAIN ROUTINE OF ANALYTICA *)
BeginPackage["prover`", "UserInterface`", "SystemInterface`"]
(* Functions provided to the user:
Prove (imply.m)
ProveByInduction (imply.m)
TeXOn (print.m)
SuccessStepsOnly (print.m)
EndDocument (print.m)
Abbreviate (print.m)
PrintAbbreviation (print.m)
PrintGiven (print.m)
PrintDefinition (print.m)
Functions needed in other packages but not
available to the user:
BranchStack (imply.m)
TryOtherBranches (imply.m)
orelse (imply.m)
TryProving (imply.m)
FalseQ (imply.m)
PrintMessage (print.m)
PrintResult (print.m)
PrintSequent (print.m)
PrintLemma (print.m)
print (print.m)
SucceedWith (print.m)
*)
Begin["ProverPrivate`"]
<<imply.m;
<<print.m;
<<induction.m;
End[]
EndPackage[]