// Assure that the remaining jobs were each run after one of the// previous //max_jobs jobs had finished (e.g. begin[max_jobs] > end[0])
begin_after_end = [b > e for b, e in zip(self.begin_stamps[max_jobs:],
self.end_stamps[:-max_jobs])]
self.assertTrue(all(begin_after_end))
// NOTE: to assure that these remaining jobs were also run// in parallel one could do the command hereafter; however, it would