Add spaces
This commit is contained in:
parent
e706c4bb9d
commit
97e0ead5fe
@ -17,8 +17,8 @@ let rec string_of_ty (t: ty) : string =
|
|||||||
match t with
|
match t with
|
||||||
| TSimple(tn) -> tn
|
| TSimple(tn) -> tn
|
||||||
| TImpl(t1,t2) -> "(" ^ (string_of_ty t1) ^ " -> " ^ (string_of_ty t2) ^ ")"
|
| TImpl(t1,t2) -> "(" ^ (string_of_ty t1) ^ " -> " ^ (string_of_ty t2) ^ ")"
|
||||||
| TAnd(t1,t2) -> "(" ^ (string_of_ty t1) ^ "/\\" ^ (string_of_ty t2) ^ ")"
|
| TAnd(t1,t2) -> "(" ^ (string_of_ty t1) ^ " /\\ " ^ (string_of_ty t2) ^ ")"
|
||||||
| TOr(t1,t2) -> "(" ^ (string_of_ty t1) ^ "\\/" ^ (string_of_ty t2) ^ ")"
|
| TOr(t1,t2) -> "(" ^ (string_of_ty t1) ^ "\\/ " ^ (string_of_ty t2) ^ ")"
|
||||||
| TFalse -> "False"
|
| TFalse -> "False"
|
||||||
| TTrue -> "True"
|
| TTrue -> "True"
|
||||||
;;
|
;;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user