Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
colibrics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
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
colibrics
Commits
43b8869f
Commit
43b8869f
authored
3 years ago
by
Arthur Correnson
Browse files
Options
Downloads
Patches
Plain Diff
Remove redundant converters for FP
parent
8fa0a824
No related branches found
No related tags found
1 merge request
!12
Feature/fp check
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src_colibri2/theories/FP/float32.ml
+11
-3
11 additions, 3 deletions
src_colibri2/theories/FP/float32.ml
src_colibri2/theories/FP/fp.ml
+0
-16
0 additions, 16 deletions
src_colibri2/theories/FP/fp.ml
with
11 additions
and
19 deletions
src_colibri2/theories/FP/float32.ml
+
11
−
3
View file @
43b8869f
...
...
@@ -157,21 +157,29 @@ let converter d (f:Ground.t) =
match
Ground
.
sem
f
with
|
{
app
=
{
builtin
=
Expr
.
Fp_add
(
8
,
24
);
_
};
args
;
_
}
->
let
m
,
a
,
b
=
IArray
.
extract3_exn
args
in
reg
a
;
reg
b
;
attach
d
f
;
reg
m
;
reg
a
;
reg
b
;
attach
d
f
;
let
wait
=
set
r
(
let
+
va
=
get
a
and
+
vb
=
get
b
in
Farith
.
B32
.
add
!>>
m
va
vb
)
in
List
.
iter
(
fun
n
->
wait_for_this_node_get_a_value
d
n
wait
)
[
a
;
b
;
r
]
|
{
app
=
{
builtin
=
Expr
.
Fp_sub
(
8
,
24
);
_
};
args
;
_
}
->
let
m
,
a
,
b
=
IArray
.
extract3_exn
args
in
reg
a
;
reg
b
;
attach
d
f
;
reg
m
;
reg
a
;
reg
b
;
attach
d
f
;
let
wait
=
set
r
(
let
+
va
=
get
a
and
+
vb
=
get
b
in
Farith
.
B32
.
sub
!>>
m
va
vb
)
in
List
.
iter
(
fun
n
->
wait_for_this_node_get_a_value
d
n
wait
)
[
a
;
b
;
r
]
|
{
app
=
{
builtin
=
Expr
.
Fp_mul
(
8
,
24
);
_
};
args
;
_
}
->
let
m
,
a
,
b
=
IArray
.
extract3_exn
args
in
reg
m
;
reg
a
;
reg
b
;
attach
d
f
;
let
wait
=
set
r
(
let
*
va
=
get
a
and
+
vb
=
get
b
in
if
is_zero
vb
then
None
else
Some
(
Farith
.
B32
.
mul
!>>
m
va
vb
))
in
List
.
iter
(
fun
n
->
wait_for_this_node_get_a_value
d
n
wait
)
[
a
;
b
;
r
]
|
{
app
=
{
builtin
=
Expr
.
Fp_div
(
8
,
24
);
_
};
args
;
_
}
->
let
m
,
a
,
b
=
IArray
.
extract3_exn
args
in
reg
a
;
reg
b
;
attach
d
f
;
reg
m
;
reg
a
;
reg
b
;
attach
d
f
;
let
wait
=
set
r
(
let
*
va
=
get
a
and
+
vb
=
get
b
in
if
is_zero
vb
then
None
else
Some
(
Farith
.
B32
.
div
!>>
m
va
vb
))
...
...
This diff is collapsed.
Click to expand it.
src_colibri2/theories/FP/fp.ml
+
0
−
16
View file @
43b8869f
...
...
@@ -18,23 +18,7 @@
(* for more details (enclosed in the file licenses/LGPLv2.1). *)
(*************************************************************************)
open
Colibri2_popop_lib
let
converter
d
f
=
let
reg
n
=
Egraph
.
register
d
n
in
match
Ground
.
sem
f
with
|
{
app
=
{
builtin
=
Expr
.
Fp_add
(
_
,
_
);
_
};
args
;
_
}
->
IArray
.
iter
~
f
:
reg
args
|
{
app
=
{
builtin
=
Expr
.
Fp_sub
(
_
,
_
);
_
};
args
;
_
}
->
IArray
.
iter
~
f
:
reg
args
|
{
app
=
{
builtin
=
Expr
.
Fp_div
(
_
,
_
);
_
};
args
;
_
}
->
IArray
.
iter
~
f
:
reg
args
|
{
app
=
{
builtin
=
Expr
.
Fp_mul
(
_
,
_
);
_
};
args
;
_
}
->
IArray
.
iter
~
f
:
reg
args
|
_
->
()
let
th_register
env
=
Ground
.
register_converter
env
converter
;
Rounding_mode
.
init
env
;
Float32
.
init
env
;
Float64
.
init
env
...
...
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