#ifndef AIMD_FIXED_HPP
#define AIMD_FIXED_HPP

#include "scheduler_iface.hpp"

// Fixed AIMD scheduler used only for side-by-side comparison with the old AIMD.
int run_aimd_fixed_scheduler(int F, int K, task_fn_t task, void* ctx, bool affinity);

#endif // AIMD_FIXED_HPP
