Skip to content
Snippets Groups Projects
Commit 840640e0 authored by David Bühler's avatar David Bühler
Browse files

[Ival] In int_val, fixes [min_max_rem_modu] on singletons.

parent 07b12648
No related branches found
No related tags found
No related merge requests found
...@@ -190,16 +190,15 @@ let inject_set_or_top_or_bottom = function ...@@ -190,16 +190,15 @@ let inject_set_or_top_or_bottom = function
(* Computes [min], [max], [rem] and [modu] from an integer set. *) (* Computes [min], [max], [rem] and [modu] from an integer set. *)
let make_top_from_set s = let make_top_from_set s =
let min = Int_set.min s in let min = Int_set.min s in
let modu = let rem, modu =
Int_set.fold if Int_set.cardinal s = 1
(fun x acc -> then Int.zero, min
if Int.equal x min else
then acc let modu =
else Int.pgcd (Int.sub x min) acc) Int_set.fold (fun x acc -> Int.pgcd (Int.sub x min) acc) s Int.zero
s in
Int.zero Int.e_rem min modu, modu
in in
let rem = Int.e_rem min modu in
let max = Some (Int_set.max s) in let max = Some (Int_set.max s) in
let min = Some min in let min = Some min in
min, max, rem, modu min, max, rem, modu
......
...@@ -86,8 +86,7 @@ val max_int: t -> Integer.t option ...@@ -86,8 +86,7 @@ val max_int: t -> Integer.t option
val min_and_max: t -> Integer.t option * Integer.t option val min_and_max: t -> Integer.t option * Integer.t option
(** Returns [min, max, rem, modu] such that for all integers [i] represented by (** Returns [min, max, rem, modu] such that for all integers [i] represented by
the given abstraction, [i] satisfies min ≤ i ≤ max and i ≅ rem [modu]. the given abstraction, [i] satisfies min ≤ i ≤ max and i ≅ rem [modu]. *)
The abstraction must not be a singleton. *)
val min_max_rem_modu: val min_max_rem_modu:
t -> Integer.t option * Integer.t option * Integer.t * Integer.t t -> Integer.t option * Integer.t option * Integer.t * Integer.t
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment