Skip to content

Commit

Permalink
fix intendation
Browse files Browse the repository at this point in the history
  • Loading branch information
OriginLabs-Iguernlala authored and iguerNL committed Mar 23, 2021
1 parent e8e6c2d commit cb2e74a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/lib/structures/ty.ml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,14 @@ let assoc_destrs hs cases =
let print_generic body_of =
let h = Hashtbl.create 17 in
let rec print body_of fmt = function
| Tint -> if get_output_smtlib () then fprintf fmt "Int"
| Tint ->
if get_output_smtlib () then fprintf fmt "Int"
else fprintf fmt "int"
| Treal -> if get_output_smtlib () then fprintf fmt "Real"
| Treal ->
if get_output_smtlib () then fprintf fmt "Real"
else fprintf fmt "real"
| Tbool -> if get_output_smtlib () then fprintf fmt "Bool"
| Tbool ->
if get_output_smtlib () then fprintf fmt "Bool"
else fprintf fmt "bool"
| Tunit -> fprintf fmt "unit"
| Tbitv n -> fprintf fmt "bitv[%d]" n
Expand Down

0 comments on commit cb2e74a

Please sign in to comment.