Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
6ce6b886
Commit
6ce6b886
authored
Jan 21, 2011
by
Andrei Paskevich
Browse files
ignore labels in Coq printer
parent
6d567c85
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/printer/coq.ml
View file @
6ce6b886
...
...
@@ -192,14 +192,20 @@ and print_opr_term info fmt t = print_lrterm false true info fmt t
and
print_opr_fmla
info
fmt
f
=
print_lrfmla
false
true
info
fmt
f
and
print_lrterm
opl
opr
info
fmt
t
=
match
t
.
t_label
with
|
_
->
print_tnode
opl
opr
info
fmt
t
(*
| [] -> print_tnode opl opr info fmt t
| ll -> fprintf fmt "(%a %a)"
(print_list space print_label) ll (print_tnode false false info) t
*)
and
print_lrfmla
opl
opr
info
fmt
f
=
match
f
.
f_label
with
|
_
->
print_fnode
opl
opr
info
fmt
f
(*
| [] -> print_fnode opl opr info fmt f
| ll -> fprintf fmt "(%a %a)"
(print_list space print_label) ll (print_fnode false false info) f
*)
and
print_tnode
opl
opr
info
fmt
t
=
match
t
.
t_node
with
|
Tvar
v
->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment