Skip to content
Snippets Groups Projects
Commit 9e97b1fe authored by Maël Madon's avatar Maël Madon
Browse files

doc: add warning on difference btw easy_bf and easy_bf_fast

parent fb2ed03c
No related branches found
No related tags found
No related merge requests found
...@@ -49,6 +49,12 @@ void EasyBackfillingFast::make_decisions(double date, ...@@ -49,6 +49,12 @@ void EasyBackfillingFast::make_decisions(double date,
// - only handles one priority job (the first of the queue) // - only handles one priority job (the first of the queue)
// - only handles time as floating-point (-> precision errors). // - only handles time as floating-point (-> precision errors).
// Warning: you might obtain different outputs than with easy_bf. This is
// due to the fact that this version only keeps track of the priority job
// expected start time and the number of machines available then, while
// easy_bf keeps track of a full 2D schedule of the future. easy_bf_fast
// will sometimes be a little more greedy in backfilling.
bool job_ended = false; bool job_ended = false;
// Handle newly finished jobs // Handle newly finished jobs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment