/* Schedule 54 of 2025/01/29 15:40:56 */
#include "driver.h"
#include "schedule.h"
#include <stdlib.h>
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 = 5;
  sched.nsteps = malloc(nthread*sizeof(int));
  sched.nsteps[0] = 5;
  sched.steps = malloc(nthread*sizeof(step_t*));
  for (int i=0; i<nthread; i++)
    sched.steps[i] = malloc(sched.nsteps[i]*sizeof(step_t));
  sched.steps[0][0] = schedule_make_step_1(ADD, 0);
  sched.steps[0][1] = schedule_make_step_1(ADD, 1);
  sched.steps[0][2] = schedule_make_step_1(ADD, 2);
  sched.steps[0][3] = schedule_make_step_0(REMOVE);
  sched.steps[0][4] = schedule_make_step_0(REMOVE);
  return sched;
}