/* Schedule 1194 of 2025/01/26 23:24:00 */ #include "driver.h" #include "schedule.h" #include schedule_t make_schedule() { schedule_t sched; int nthread = 1; sched.kind = SET; sched.num_ops = 3; sched.nthread = nthread; sched.npreAdd = 0; sched.preAdds = NULL; sched.nstep = 3; sched.nsteps = malloc(nthread*sizeof(int)); sched.nsteps[0] = 3; sched.steps = malloc(nthread*sizeof(step_t*)); for (int i=0; i