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
2d7bfedd
Commit
2d7bfedd
authored
1 year ago
by
Kilyan Le Gallic
Browse files
Options
Downloads
Patches
Plain Diff
[wp] Stub for creation of logic_type_info
parent
b621e44d
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
+27
-3
27 additions, 3 deletions
src/plugins/wp/Why3Import.ml
with
27 additions
and
3 deletions
src/plugins/wp/Why3Import.ml
+
27
−
3
View file @
2d7bfedd
...
@@ -42,10 +42,34 @@ let extract_path thname =
...
@@ -42,10 +42,34 @@ let extract_path thname =
let
pp_id
fmt
(
id
:
W
.
Ident
.
ident
)
=
let
pp_id
fmt
(
id
:
W
.
Ident
.
ident
)
=
Format
.
pp_print_string
fmt
id
.
id_string
Format
.
pp_print_string
fmt
id
.
id_string
let
rec
lt_of_ts
:
W
.
Ty
.
ty
->
Cil_types
.
logic_type
=
(* logic_type =
raise
Not_found
| Ctype of typ (** a C type *)
and
lti_of_ls
:
W
.
Ty
.
tysymbol
->
Cil_types
.
logic_type_info
=
| Ltype of logic_type_info * logic_type list
(** an user-defined logic type with its parameters *)
| Lvar of string (** a type variable. *)
| Linteger (** mathematical integers, {i i.e.} Z *)
| Lreal (** mathematical reals, {i i.e.} R *)
| Larrow of logic_type list * logic_type (** (n-ary) function type *)*)
(*logic_type_info = {
mutable lt_name: string;
lt_params : string list; (** type parameters*)
mutable lt_def: logic_type_def option;
(** definition of the type. None for abstract types. *)
mutable lt_attr: attributes;
(** attributes associated to the logic type.
@since Phosphorus-20170501-beta1 *)
}*)
let
rec
lt_of_ts
(
_ty
:
W
.
Ty
.
ty
)
:
Cil_types
.
logic_type
=
raise
Not_found
raise
Not_found
and
lti_of_ls
(
tys
:
W
.
Ty
.
tysymbol
)
:
Cil_types
.
logic_type_info
=
{
lt_name
=
tys
.
ts_name
.
id_string
;
lt_params
=
[
""
];
lt_def
=
None
;
lt_attr
=
[]
;
}
let
import_theory
env
thname
=
let
import_theory
env
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