/gym-radio-scheduler

Primary LanguagePythonMIT LicenseMIT

gym-radio-scheduler

This repository contains a PIP package which is an OpenAI environment for simulating a radio scheduler.

Installation

Install OpenAI gym.
Install py-itpp.

Clone and install this package:

pip install -e .

Usage

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)