Skip to content

Instantly share code, notes, and snippets.

@adyatlov
Created March 5, 2015 03:22
Show Gist options
  • Save adyatlov/00e8b5115dea93dd4a08 to your computer and use it in GitHub Desktop.
Save adyatlov/00e8b5115dea93dd4a08 to your computer and use it in GitHub Desktop.
for (Job* job: jobs) {
for (ComputeNode* node: nodes) {
if (node->scheduleJob(job)) {
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment