Skip to content
Snippets Groups Projects
Commit 717b9749 authored by BRUN Lelio's avatar BRUN Lelio
Browse files

fix clock printing in Velus mode

parent 7f308c4a
No related branches found
No related tags found
No related merge requests found
...@@ -41,10 +41,10 @@ let pp_var_clock fmt id = ...@@ -41,10 +41,10 @@ let pp_var_clock fmt id =
match ck.cdesc with match ck.cdesc with
| Carrow _ | Ctuple _ | Cvar | Cunivar -> | Carrow _ | Ctuple _ | Cvar | Cunivar ->
() ()
| Con (ck, c, "true") -> | Con (_ck, c, "true") ->
fprintf fmt "%a when %a" pp_suffix ck print_carrier c fprintf fmt " when %a" print_carrier c
| Con (ck, c, "false") -> | Con (_ck, c, "false") ->
fprintf fmt "%a when not %a" pp_suffix ck print_carrier c fprintf fmt " when not %a" print_carrier c
| Con _ -> | Con _ ->
error_ns "Generalized clocks" error_ns "Generalized clocks"
| Clink ck' -> | Clink ck' ->
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment