Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
caisar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
caisar
Commits
a69f2cb3
Commit
a69f2cb3
authored
1 year ago
by
Michele Alberti
Browse files
Options
Downloads
Patches
Plain Diff
[interpretation] Add support for addition between vectors.
parent
330daf62
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/interpretation.ml
+38
-0
38 additions, 0 deletions
src/interpretation.ml
with
38 additions
and
0 deletions
src/interpretation.ml
+
38
−
0
View file @
a69f2cb3
...
@@ -220,6 +220,43 @@ let caisar_builtins : caisar_env CRE.built_in_theories list =
...
@@ -220,6 +220,43 @@ let caisar_builtins : caisar_env CRE.built_in_theories list =
|
[
Term
_t1
;
Term
_t2
]
->
reconstruct
()
|
[
Term
_t1
;
Term
_t2
]
->
reconstruct
()
|
_
->
invalid_arg
(
error_message
ls
)
|
_
->
invalid_arg
(
error_message
ls
)
in
in
let
vplus
:
_
CRE
.
builtin
=
fun
engine
ls
vl
ty
->
match
vl
with
|
[
Term
({
t_node
=
Tapp
(
ls1
,
tl1
);
_
}
as
_t1
);
Term
({
t_node
=
Tapp
(
ls2
,
_
);
_
}
as
_t2
);
]
->
(
match
(
caisar_op_of_ls
engine
ls1
,
caisar_op_of_ls
engine
ls2
)
with
|
Vector
v
,
Data
(
D_csv
data
)
->
let
n
=
Option
.
value_exn
(
Language
.
lookup_vector
v
)
in
assert
(
n
=
List
.
length
data
);
let
ty_cst
=
match
ty
with
|
Some
{
ty_node
=
Tyapp
(
_
,
[
ty
]);
_
}
->
ty
|
_
->
assert
false
in
let
csts
=
List
.
map
data
~
f
:
(
fun
d
->
let
cst
=
const_real_of_float
(
Float
.
of_string
d
)
in
Term
.
t_const
cst
ty_cst
)
in
let
{
env
;
_
}
=
CRE
.
user_env
engine
in
let
args
=
let
plus
=
(* TODO: generalize wrt the type of constants [csts]. *)
let
th
=
Env
.
read_theory
env
[
"ieee_float"
]
"Float64"
in
Theory
.(
ns_find_ls
th
.
th_export
[
Ident
.
op_infix
".+"
])
in
List
.
map2_exn
tl1
csts
~
f
:
(
fun
tl
c
->
(
Term
.
t_app_infer
plus
[
tl
;
c
]
,
ty_cst
))
in
let
caisar_op
=
Vector
(
Language
.
create_vector
env
n
)
in
value_term
(
term_of_caisar_op
~
args
engine
caisar_op
ty
)
|
_
->
assert
false
)
|
[
Term
_t1
;
Term
_t2
]
->
reconstruct
()
|
_
->
invalid_arg
(
error_message
ls
)
in
let
vmapi
:
_
CRE
.
builtin
=
let
vmapi
:
_
CRE
.
builtin
=
fun
engine
ls
vl
ty
->
fun
engine
ls
vl
ty
->
match
vl
with
match
vl
with
...
@@ -345,6 +382,7 @@ let caisar_builtins : caisar_env CRE.built_in_theories list =
...
@@ -345,6 +382,7 @@ let caisar_builtins : caisar_env CRE.built_in_theories list =
[
[
([
Ident
.
op_get
""
]
(* ([]) *)
,
None
,
vget
);
([
Ident
.
op_get
""
]
(* ([]) *)
,
None
,
vget
);
([
Ident
.
op_infix
"-"
]
,
None
,
vminus
);
([
Ident
.
op_infix
"-"
]
,
None
,
vminus
);
([
Ident
.
op_infix
"+"
]
,
None
,
vplus
);
([
"length"
]
,
None
,
vlength
);
([
"length"
]
,
None
,
vlength
);
([
"mapi"
]
,
None
,
vmapi
);
([
"mapi"
]
,
None
,
vmapi
);
]
);
]
);
...
...
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