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
6a012314
Commit
6a012314
authored
5 years ago
by
Loïc Correnson
Committed by
Patrick Baudin
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[qed] introducing affine ratio
parent
aabcbb75
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/qed/term.ml
+47
-14
47 additions, 14 deletions
src/plugins/qed/term.ml
with
47 additions
and
14 deletions
src/plugins/qed/term.ml
+
47
−
14
View file @
6a012314
...
@@ -1173,7 +1173,17 @@ struct
...
@@ -1173,7 +1173,17 @@ struct
let
()
=
extern_fun
:=
e_fungen
let
()
=
extern_fun
:=
e_fungen
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
(* --- Ground & Arithmetics --- *)
(* --- Sign --- *)
(* -------------------------------------------------------------------------- *)
type
sign
=
Null
|
Negative
|
Positive
let
sign
z
=
if
Z
.
lt
z
Z
.
zero
then
Negative
else
if
Z
.
lt
Z
.
zero
z
then
Positive
else
Null
(* -------------------------------------------------------------------------- *)
(* --- Ground Arithmetics --- *)
(* -------------------------------------------------------------------------- *)
(* -------------------------------------------------------------------------- *)
let
rec
i_ground
f
c
xs
=
function
let
rec
i_ground
f
c
xs
=
function
...
@@ -1187,11 +1197,9 @@ struct
...
@@ -1187,11 +1197,9 @@ struct
|
x
::
ts
->
r_ground
f
c
(
x
::
xs
)
ts
|
x
::
ts
->
r_ground
f
c
(
x
::
xs
)
ts
|
[]
->
c
,
xs
|
[]
->
c
,
xs
type
sign
=
Null
|
Negative
|
Positive
(* -------------------------------------------------------------------------- *)
let
sign
z
=
(* --- Affine Comparisons --- *)
if
Z
.
lt
z
Z
.
zero
then
Negative
else
(* -------------------------------------------------------------------------- *)
if
Z
.
lt
Z
.
zero
z
then
Positive
else
Null
let
r_affine_rel
fz
fe
c
xs
ys
=
let
r_affine_rel
fz
fe
c
xs
ys
=
let
a
,
xs
=
r_ground
Q
.
add
(
Q
.
of_bigint
c
)
[]
xs
in
let
a
,
xs
=
r_ground
Q
.
add
(
Q
.
of_bigint
c
)
[]
xs
in
...
@@ -1221,6 +1229,35 @@ struct
...
@@ -1221,6 +1229,35 @@ struct
(* c+xs R ys <-> (c+xs) R ys *)
(* c+xs R ys <-> (c+xs) R ys *)
|
Positive
->
fe
(
c_add
(
e_zint
c
::
xs
))
(
c_add
ys
)
|
Positive
->
fe
(
c_add
(
e_zint
c
::
xs
))
(
c_add
ys
)
let
i_affine_leq
c
xs
ys
=
if
Z
.
equal
c
Z
.
one
then
i_affine_rel
Z
.
lt
c_builtin_lt
Z
.
zero
xs
ys
else
i_affine_rel
Z
.
leq
c_builtin_leq
c
xs
ys
let
i_affine_lt
c
xs
ys
=
if
not
(
Z
.
equal
c
Z
.
zero
)
then
i_affine_rel
Z
.
leq
c_builtin_leq
(
Z
.
succ
c
)
xs
ys
else
i_affine_rel
Z
.
lt
c_builtin_lt
c
xs
ys
(* --- Affine Ratios --- *)
(*
let i_ratio = function
| [] -> ZERO
| [{ repr=Div(a,b) }] ->
begin match b.repr with
| Kint k when not Z.(equal k zero) -> DIV(a,k)
| _ -> ANY
end
| _ -> ANY
*)
let
i_affine_ratio_leq
c
xs
ys
=
i_affine_leq
c
xs
ys
let
i_affine_ratio_lt
c
xs
ys
=
i_affine_lt
c
xs
ys
(* --- Affine Dispatch --- *)
let
i_affine
xs
ys
=
let
i_affine
xs
ys
=
not
(
List
.
exists
is_real
xs
||
List
.
exists
is_real
ys
)
not
(
List
.
exists
is_real
xs
||
List
.
exists
is_real
ys
)
...
@@ -1235,17 +1272,13 @@ struct
...
@@ -1235,17 +1272,13 @@ struct
else
r_affine_rel
(
fun
x
y
->
not
(
Q
.
equal
x
y
))
c_builtin_neq
c
xs
ys
else
r_affine_rel
(
fun
x
y
->
not
(
Q
.
equal
x
y
))
c_builtin_neq
c
xs
ys
let
affine_leq
c
xs
ys
=
let
affine_leq
c
xs
ys
=
if
i_affine
xs
ys
then
if
i_affine
xs
ys
if
Z
.
equal
c
Z
.
one
then
i_affine_ratio_leq
c
xs
ys
then
i_affine_rel
Z
.
lt
c_builtin_lt
Z
.
zero
xs
ys
else
i_affine_rel
Z
.
leq
c_builtin_leq
c
xs
ys
else
r_affine_rel
Q
.
leq
c_builtin_leq
c
xs
ys
else
r_affine_rel
Q
.
leq
c_builtin_leq
c
xs
ys
let
affine_lt
c
xs
ys
=
let
affine_lt
c
xs
ys
=
if
i_affine
xs
ys
then
if
i_affine
xs
ys
if
not
(
Z
.
equal
c
Z
.
zero
)
then
i_affine_ratio_lt
c
xs
ys
then
i_affine_rel
Z
.
leq
c_builtin_leq
(
Z
.
succ
c
)
xs
ys
else
i_affine_rel
Z
.
lt
c_builtin_lt
c
xs
ys
else
r_affine_rel
Q
.
lt
c_builtin_lt
c
xs
ys
else
r_affine_rel
Q
.
lt
c_builtin_lt
c
xs
ys
let
affine_cmp
=
function
let
affine_cmp
=
function
...
...
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