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
59c600be
Commit
59c600be
authored
5 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Trace_partitioning.fill joins states instead of keeping only the new ones.
parent
aefb889a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/value/engine/trace_partitioning.ml
+6
-6
6 additions, 6 deletions
src/plugins/value/engine/trace_partitioning.ml
with
6 additions
and
6 deletions
src/plugins/value/engine/trace_partitioning.ml
+
6
−
6
View file @
59c600be
...
@@ -203,13 +203,13 @@ struct
...
@@ -203,13 +203,13 @@ struct
flow
flow
let
fill
~
(
into
:
tank
)
(
flow
:
flow
)
:
unit
=
let
fill
~
(
into
:
tank
)
(
flow
:
flow
)
:
unit
=
let
erase
_key
dest
src
=
if
Extlib
.
has_some
src
then
src
else
dest
in
let
new_states
=
Flow
.
to_partition
flow
in
let
new_states
=
Flow
.
to_partition
flow
in
into
.
tank_states
<-
Partition
.
merge
erase
into
.
tank_states
new_states
let
join
_key
dest
src
=
match
dest
,
src
with
|
Some
dest
,
Some
src
->
Some
(
Domain
.
join
dest
src
)
|
Some
v
,
None
|
None
,
Some
v
->
Some
v
|
None
,
None
->
None
in
into
.
tank_states
<-
Partition
.
merge
join
into
.
tank_states
new_states
let
transfer
=
Flow
.
transfer_states
let
transfer
=
Flow
.
transfer_states
...
...
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