/* Schedule 3 of 2025/01/30 16:11:28 */ #include "driver.h" #include "schedule.h" #include schedule_t make_schedule() { schedule_t sched; int nthread = 1; sched.kind = QUEUE; sched.num_ops = 2; sched.nthread = nthread; sched.npreAdd = 0; sched.preAdds = NULL; sched.nstep = 2; sched.nsteps = malloc(nthread*sizeof(int)); sched.nsteps[0] = 2; sched.steps = malloc(nthread*sizeof(step_t*)); for (int i=0; i