This repository contains a PIP package which is an OpenAI environment for simulating a radio scheduler.
Install OpenAI gym.
Install py-itpp.
Clone and install this package:
pip install -e .
import gym
import gym_radio_scheduler
env = gym.make('RadioScheduler-v0')
result = env.step()
print(result)
The result is a tuple containing (scheduled_ue_index, channel_quality_index, realized_throughput)