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
Merge requests
!2
parametric computation works again
Code
Examiner les modifications
Extraire la branche
Télécharger
Correctifs
Diff brut
Étendre la barre latérale
Merged
parametric computation works again
caml2
into
master
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
parametric computation works again
Grebant Sandro
requested to merge
caml2
into
master
Jun 4, 2021
Overview
0
Commits
4
Pipelines
0
Changes
1
Fixing parametric loop bounds and parametric WCET for functions (related to issue #2 ). Tested with:
loop bound(s) only
parametric WCET for funtion only
loop bound + parametric WCET for function
0
0
Merge request reports
Viewing commit
a9a21a93
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a9a21a93
parametric loop bounds working again
· a9a21a93
Grebant Sandro
authored
Jun 4, 2021
simplify/to_c.ml
+
1
−
1
View file @ a9a21a93
Edit in single-file editor
Open in Web IDE
Show full file
@@ -56,7 +56,7 @@ let c_aw_placeholder out_f f =
match
f
with
|
FConst
_
->
Utils
.
internal_error
"c_aw_placeholder"
"f should not be const or param"
|
_
->
let
eta_count
=
multi_wcet_size_bound
f
in
let
eta_count
=
if
multi_wcet_size_bound
f
>
0
then
multi_wcet_size_bound
f
else
1
in
fprintf
out_f
"@[<hov 2>{-1,@ %d,@ (long long[%d]){0},@ 0}@]"
eta_count
eta_count
let
c_awcet
out_f
(
lid
,
wl
)
=
Loading