Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WSymb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OTAWA-plugins
WSymb
Commits
a98a94fb
Commit
a98a94fb
authored
5 years ago
by
Forget Julien
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix: remove unnecessary comma when printing a wlist with
only one value.
parent
88d76aaf
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
simplify/abstract_wcet.ml
+8
-5
8 additions, 5 deletions
simplify/abstract_wcet.ml
with
8 additions
and
5 deletions
simplify/abstract_wcet.ml
+
8
−
5
View file @
a98a94fb
...
...
@@ -155,8 +155,11 @@ let pp_annot out_f (loop, it) =
fprintf
out_f
"(%a,%d)"
pp_loop_id
loop
it
let
pp
out_f
(
loop
,
(
wl
,
last
))
=
if
(
wl
<>
[]
)
then
fprintf
out_f
"(%a;{%a,%d})"
pp_loop_id
loop
(
pp_print_list
~
pp_sep
:
(
fun
out_f
()
->
pp_print_text
out_f
","
)
(
fun
out_f
w
->
fprintf
out_f
"%d"
w
))
wl
last
else
fprintf
out_f
"(%a;{%d})"
pp_loop_id
loop
last
This diff is collapsed.
Click to expand it.
Forget Julien
@forget
mentioned in commit
91e9ef66
·
4 years ago
mentioned in commit
91e9ef66
mentioned in commit 91e9ef66424ea475940194744a95aab62cfda06d
Toggle commit list
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