Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
840640e0
Commit
840640e0
authored
5 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/kernel_services/abstract_interp/int_val.ml
+8
-9
8 additions, 9 deletions
src/kernel_services/abstract_interp/int_val.ml
src/kernel_services/abstract_interp/int_val.mli
+1
-2
1 addition, 2 deletions
src/kernel_services/abstract_interp/int_val.mli
with
9 additions
and
11 deletions
src/kernel_services/abstract_interp/int_val.ml
+
8
−
9
View file @
840640e0
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/kernel_services/abstract_interp/int_val.mli
+
1
−
2
View file @
840640e0
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment