-
Notifications
You must be signed in to change notification settings - Fork 0
/
session.txt
65 lines (64 loc) · 1.69 KB
/
session.txt
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
decaml.ececs.uc.edu ~> cd DML
decaml.ececs.uc.edu ~/DML> make
ocamlyacc -v dmlparser.mly
3 rules never reduced
24 shift/reduce conflicts.
ocamlc -c dmlloc.ml
ocamlc -c dmlsyn.ml
ocamlc -c dmlparser.mli
ocamlc -c dmlparser.ml
ocamlc -c dmldeb.ml
ocamlc -c dmlglo.ml
ocamlc -c dmlcop.ml
ocamlc -c dmlsim.ml
ocamlc -c dmlpat.ml
ocamlc -c dmldtc.ml
ocamlc -c dmlintern.ml
ocamllex dmllexer.mll
84 states, 752 transitions, table size 3512 bytes
ocamlc -c dmllexer.ml
ocamlc -c dmlpar.ml
ocamlc -c dmlsol.ml
ocamlc -c dmlvec.ml
ocamlc -c dmltop.ml
decaml.ececs.uc.edu ~/DML> ocaml
Objective Caml version 2.02
# #use "load";;
The program has been successfully parsed.
# Dmltop.top "bsearch";;
The program has been successfully parsed.
The program is in internal representation.
type constraints are collected.
btv solving is done.
biv solving is done.
iveclistlist: 40
dependent type checking is successfully done!
- : unit = ()
# Dmltop.top "mergesort";;
The program has been successfully parsed.
The program is in internal representation.
type constraints are collected.
btv solving is done.
biv solving is done.
iveclistlist: 156
dependent type checking is successfully done!
- : unit = ()
# Dmltop.top "rbtree2";;
The program has been successfully parsed.
The program is in internal representation.
type constraints are collected.
btv solving is done.
biv solving is done.
iveclistlist: 1632
dependent type checking is successfully done!
- : unit = ()
# Dmltop.top "set";;
The program has been successfully parsed.
The program is in internal representation.
type constraints are collected.
btv solving is done.
biv solving is done.
iveclistlist: 602
dependent type checking is successfully done!
- : unit = ()
#