Skip to content

Commit 245ab07

Browse files
committed
Fix spacing in Invariant
1 parent af3a1d5 commit 245ab07

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/cdomain/value/domains/invariant.ml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
2-
31
open GoblintCil
42

53
(** Symbolic (and fully syntactic) expression "lattice". *)
64
module Exp =
75
struct
86
include CilType.Exp
9-
(* This type is abstract in the interface because invariant expressions may be optimized for readability but lack implicit casts, etc, which are required to normally use CIL exp-s in Goblint. *)
7+
(* This type is abstract in the interface because invariant expressions may be optimized for readability but lack implicit casts, etc, which are required to normally use CIL exp-s in Goblint. *)
108

119
let bot () = zero (* false *)
1210
let top () = one (* true *)
@@ -44,8 +42,8 @@ struct
4442
let e1s' = ES.diff e1s e2s in
4543
let e2s' = ES.diff e2s e1s in
4644
(match combine_conjuncts e1s', combine_conjuncts e2s' with
47-
| Some e1e, Some e2e -> ES.add (BinOp(LOr,e1e,e2e,Cil.intType)) common
48-
| _ -> common (* if one of the disjuncts is empty, it is equivalent to true here *)
45+
| Some e1e, Some e2e -> ES.add (BinOp(LOr,e1e,e2e,Cil.intType)) common
46+
| _ -> common (* if one of the disjuncts is empty, it is equivalent to true here *)
4947
)
5048
| e -> to_conjunct_set e
5149

0 commit comments

Comments
 (0)