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
668ae702
Commit
668ae702
authored
1 year ago
by
Kilyan Le Gallic
Browse files
Options
Downloads
Patches
Plain Diff
[wp] Extracted temp env creation into separate function
parent
d9baaf60
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/wp/Why3Import.ml
+6
-6
6 additions, 6 deletions
src/plugins/wp/Why3Import.ml
with
6 additions
and
6 deletions
src/plugins/wp/Why3Import.ml
+
6
−
6
View file @
668ae702
...
@@ -58,18 +58,13 @@ type tvars = C.logic_type W.Ty.Mtv.t
...
@@ -58,18 +58,13 @@ type tvars = C.logic_type W.Ty.Mtv.t
type
uid_tvars
=
string
W
.
Ty
.
Mtv
.
t
type
uid_tvars
=
string
W
.
Ty
.
Mtv
.
t
let
rec
lt_of_ty
(
tenv
:
tenv
)
(
tvs
:
tvars
)
(
ty
:
W
.
Ty
.
ty
)
:
C
.
logic_type
=
let
rec
lt_of_ty
(
tenv
:
tenv
)
(
tvs
:
tvars
)
(
ty
:
W
.
Ty
.
ty
)
:
C
.
logic_type
=
match
ty
.
ty_node
with
match
ty
.
ty_node
with
|
Tyvar
x
->
W
.
Ty
.
Mtv
.
find
x
tvs
|
Tyvar
x
->
W
.
Ty
.
Mtv
.
find
x
tvs
|
Tyapp
(
s
,
ts
)
->
C
.
Ltype
(
ls_of_ts
tenv
s
,
List
.
map
(
lt_of_ty
tenv
tvs
)
ts
)
|
Tyapp
(
s
,
ts
)
->
C
.
Ltype
(
ls_of_ts
tenv
s
,
List
.
map
(
lt_of_ty
tenv
tvs
)
ts
)
and
ls_of_ts
(
tenv
:
tenv
)
(
ts
:
W
.
Ty
.
tysymbol
)
:
C
.
logic_type_info
=
and
ls_of_ts
(
tenv
:
tenv
)
(
ts
:
W
.
Ty
.
tysymbol
)
:
C
.
logic_type_info
=
try
W
.
Ty
.
Hts
.
find
tenv
ts
with
Not_found
->
try
W
.
Ty
.
Hts
.
find
tenv
ts
with
Not_found
->
let
temp_env
:
uid_tvars
=
let
temp_env
=
create_temp_env
ts
List
.
fold_left
(
fun
(
tvs
:
uid_tvars
)
(
tv
:
W
.
Ty
.
tvsymbol
)
->
W
.
Ty
.
Mtv
.
add
tv
(
tv
.
tv_name
.
id_string
)
tvs
)
W
.
Ty
.
Mtv
.
empty
ts
.
ts_args
in
in
let
lt_params
=
let
lt_params
=
List
.
map
List
.
map
...
@@ -94,6 +89,11 @@ and lt_def_of_ts (tenv:tenv) (ts : W.Ty.tysymbol) (temp_env : uid_tvars) =
...
@@ -94,6 +89,11 @@ and lt_def_of_ts (tenv:tenv) (ts : W.Ty.tysymbol) (temp_env : uid_tvars) =
W
.
Ty
.
Mtv
.
map
(
fun
aleph_name
->
C
.
Lvar
aleph_name
)
temp_env
W
.
Ty
.
Mtv
.
map
(
fun
aleph_name
->
C
.
Lvar
aleph_name
)
temp_env
in
in
Some
(
C
.
LTsyn
(
lt_of_ty
tenv
tvars
ty
))
Some
(
C
.
LTsyn
(
lt_of_ty
tenv
tvars
ty
))
and
create_temp_env
(
ts
:
W
.
Ty
.
tysymbol
)
:
uid_tvars
=
List
.
fold_left
(
fun
(
tvs
:
uid_tvars
)
(
tv
:
W
.
Ty
.
tvsymbol
)
->
W
.
Ty
.
Mtv
.
add
tv
(
tv
.
tv_name
.
id_string
)
tvs
)
W
.
Ty
.
Mtv
.
empty
ts
.
ts_args
let
import_theory
env
(
tenv
:
tenv
)
thname
=
let
import_theory
env
(
tenv
:
tenv
)
thname
=
let
theory_name
,
theory_path
=
extract_path
thname
in
let
theory_name
,
theory_path
=
extract_path
thname
in
...
...
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