#ifndef STATIC_SCHEDULER_HPP
#define STATIC_SCHEDULER_HPP

#include "scheduler_iface.hpp"

int run_static_scheduler(int F, int K, task_fn_t task, void* ctx, bool affinity);

#endif
