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
2242ef47
Commit
2242ef47
authored
3 months ago
by
François Bobot
Browse files
Options
Downloads
Patches
Plain Diff
The range type is used only with the application int option
and its serializer are defined as such.
parent
bad5b515
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/dive/build.mli
+1
-1
1 addition, 1 deletion
src/plugins/dive/build.mli
src/plugins/dive/dive_types.ml
+5
-5
5 additions, 5 deletions
src/plugins/dive/dive_types.ml
src/plugins/dive/server_interface.ml
+2
-2
2 additions, 2 deletions
src/plugins/dive/server_interface.ml
with
8 additions
and
8 deletions
src/plugins/dive/build.mli
+
1
−
1
View file @
2242ef47
...
...
@@ -38,4 +38,4 @@ val explore_backward : depth:int -> t -> node -> unit
val
show
:
t
->
node
->
unit
val
hide
:
t
->
node
->
unit
val
reduce_to_horizon
:
t
->
int
option
range
->
node
->
unit
val
reduce_to_horizon
:
t
->
range
->
node
->
unit
This diff is collapsed.
Click to expand it.
src/plugins/dive/dive_types.ml
+
5
−
5
View file @
2242ef47
...
...
@@ -76,12 +76,12 @@ type graph_diff = {
removed_nodes
:
node
list
;
}
type
'
a
range
=
{
backward
:
'
a
;
forward
:
'
a
;
type
range
=
{
backward
:
int
option
;
forward
:
int
option
;
}
type
window
=
{
perception
:
int
option
range
;
(* depth of exploration *)
horizon
:
int
option
range
;
(* hide beyond horizon ; None for infinite *)
perception
:
range
;
(* depth of exploration *)
horizon
:
range
;
(* hide beyond horizon ; None for infinite *)
}
This diff is collapsed.
Click to expand it.
src/plugins/dive/server_interface.ml
+
2
−
2
View file @
2242ef47
...
...
@@ -69,7 +69,7 @@ let origin_to_locations = function
callsites
module
Range
:
Data
.
S
with
type
t
=
int
option
range
=
module
Range
:
Data
.
S
with
type
t
=
range
=
struct
include
Record
()
...
...
@@ -80,7 +80,7 @@ struct
let
descr
=
"Parametrization of the exploration range."
include
(
val
publish
"range"
~
descr
)
type
t
=
int
option
range
type
t
=
range
let
to_json
r
=
default
|>
...
...
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