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
f2c2494d
Commit
f2c2494d
authored
1 year ago
by
David Bühler
Committed by
Virgile Prevosto
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Fixes warning 67 by removing unused module names in functor signatures.
parent
5e7ae438
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/eva/domains/domain_builder.mli
+1
-5
1 addition, 5 deletions
src/plugins/eva/domains/domain_builder.mli
src/plugins/eva/engine/iterator.mli
+4
-8
4 additions, 8 deletions
src/plugins/eva/engine/iterator.mli
with
5 additions
and
13 deletions
src/plugins/eva/domains/domain_builder.mli
+
1
−
5
View file @
f2c2494d
...
...
@@ -94,8 +94,6 @@ module Complete_Simple_Cvalue
and
type
location
=
Precise_locs
.
precise_location
and
type
state
=
Domain
.
t
[
@@@
warning
"-67"
]
(* Restricts an abstract domain on specific functions. The domain will only be
enabled on the given functions. Moreover, a mode is associated to each of
these functions, allowing (or not) the domain to infer or use properties
...
...
@@ -104,8 +102,6 @@ module Complete_Simple_Cvalue
module
Restrict
(
Value
:
Abstract_value
.
S
)
(
Domain
:
Abstract
.
Domain
.
Internal
with
type
value
=
Value
.
t
)
(
Scope
:
sig
val
functions
:
Domain_mode
.
function_mode
list
end
)
(
_
:
sig
val
functions
:
Domain_mode
.
function_mode
list
end
)
:
Abstract
.
Domain
.
Internal
with
type
value
=
Value
.
t
and
type
location
=
Domain
.
location
[
@@@
warning
"+67"
]
This diff is collapsed.
Click to expand it.
src/plugins/eva/engine/iterator.mli
+
4
−
8
View file @
f2c2494d
...
...
@@ -30,22 +30,20 @@ val signal_abort: unit -> unit
evaluated to true (resp. false) at least once during the analysis. *)
val
condition_truth_value
:
stmt
->
bool
*
bool
[
@@@
warning
"-67"
]
module
Computer
(* Abstractions with the evaluator. *)
(
Abstract
:
Abstractions
.
S_with_evaluation
)
(* Set of states of abstract domain. *)
(
States
:
Powerset
.
S
with
type
state
=
Abstract
.
Dom
.
t
)
(* Transfer functions for statement on the abstract domain. *)
(
Transfer
:
Transfer_stmt
.
S
with
type
state
=
Abstract
.
Dom
.
t
(
_
:
Transfer_stmt
.
S
with
type
state
=
Abstract
.
Dom
.
t
and
type
value
=
Abstract
.
Val
.
t
)
(* Initialization of local variables. *)
(
Init
:
Initialization
.
S
with
type
state
:=
Abstract
.
Dom
.
t
)
(
_
:
Initialization
.
S
with
type
state
:=
Abstract
.
Dom
.
t
)
(* Transfer functions for the logic on the abstract domain. *)
(
Logic
:
Transfer_logic
.
S
with
type
state
=
Abstract
.
Dom
.
t
(
_
:
Transfer_logic
.
S
with
type
state
=
Abstract
.
Dom
.
t
and
type
states
=
States
.
t
)
(
Spec
:
sig
(
_
:
sig
val
treat_statement_assigns
:
assigns
->
Abstract
.
Dom
.
t
->
Abstract
.
Dom
.
t
end
)
:
sig
...
...
@@ -57,8 +55,6 @@ module Computer
end
[
@@@
warning
"+67"
]
(*
Local Variables:
compile-command: "make -C ../../../.."
...
...
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