Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
3a4152ac
Commit
3a4152ac
authored
Jun 02, 2016
by
Pedro Gonnet
Browse files
comment-out forgotten verification.
parent
e00fb2f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/scheduler.c
View file @
3a4152ac
...
...
@@ -820,9 +820,9 @@ void scheduler_ranktasks(struct scheduler *s) {
}
/* Verify that the tasks were ranked correctly. */
for
(
int
k
=
1
;
k
<
s
->
nr_tasks
;
k
++
)
/*
for (int k = 1; k < s->nr_tasks; k++)
if (tasks[tid[k - 1]].rank > tasks[tid[k - 1]].rank)
error
(
"Task ranking failed."
);
error("Task ranking failed.");
*/
}
/**
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment