Skip to main content

Custom Gym/Gymnasium environments for operations research problems

Project description

Traffic Control Environment

Description

The TrafficControlEnv is a custom OpenAI Gymnasium-compatible environment for simulating traffic signal control at a four-way intersection. The environment models cars arriving from four directions (North, East, South, West), their movement through the intersection, and the effect of traffic signals on their waiting and travel times. This environment is designed for research and educational purposes in operations research, reinforcement learning, and traffic management.

Actions

The environment uses a discrete action space with three possible actions at each time step:

  • Action 0: No change — The traffic signal remains in its current state. No transition is triggered.

  • Action 1: Switch to North/South Green

    • If the current signal is red for all directions (RR) or already green for North/South (GR), this action sets or keeps the signal as green for North/South and red for East/West (GR).
    • If the current signal is green for East/West (RG), this action initiates a yellow light phase for East/West (RY), after which the signal will switch to green for North/South (GR).
  • Action 2: Switch to East/West Green

    • If the current signal is red for all directions (RR) or already green for East/West (RG), this action sets or keeps the signal as green for East/West and red for North/South (RG).
    • If the current signal is green for North/South (GR), this action initiates a yellow light phase for North/South (YR), after which the signal will switch to green for East/West (RG).

Yellow Light Logic: When a transition between green signals is requested (e.g., from North/South green to East/West green), the environment enforces a yellow light phase (YR or RY) for safety. During the yellow phase, new actions are ignored until the yellow duration elapses, after which the signal switches to the target green state.

Installation

You can install the package directly from PyPI using pip:

pip install kaist-or-gym

Usage Example

Below is a minimal example of how to use the TrafficControlEnv environment for a fixed number of time steps:

import gymnasium as gym
import kaist_or_gym

# Create the environment
env = gym.make("kaist-or/TrafficControlEnv-v0", render_mode="human")

observation, info = env.reset()

for _ in range(100):  # Run for 100 time steps
    action = env.action_space.sample()  # Replace with your policy
    observation, reward, terminated, truncated, info = env.step(action)
    env.render()
    if terminated or truncated:
        break

env.close()

This example demonstrates how to create the environment, take random actions, render the intersection, and run for a fixed number of steps.


Windy Gridworld Environment

Description

WindyGridworld is a Gymnasium-compatible grid navigation environment inspired by Sutton & Barto’s windy gridworld. The agent moves on a 2D grid from a start state to a goal state while being affected by a column-dependent upward wind. Wind is stochastic: with probability specified per column, the agent is pushed up by one cell before its chosen action is applied.

Key properties (defaults in windy_gridworld.py):

  • Grid size: 7 rows × 10 columns
  • Start: (3, 0); Goal: (3, 7)
  • Wind probabilities by column (example): [0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 1.0, 1.0, 0.5, 0.0]
  • Reward: +1 when the current state is the goal; −1 otherwise

Spaces

  • Action space: Discrete(4)
    • 0: Up, 1: Down, 2: Left, 3: Right
  • Observation space: Discrete(R*C) where each state is the flattened index of (row, col)

Dynamics

At each step:

  1. With probability wind[c] (for the current column c), the agent is pushed one cell up (clipped to the top boundary).
  2. The chosen action is then applied (with boundary clipping).
  3. Episode terminates when the agent reaches the goal state.

In addition to the standard Gymnasium API, the environment provides:

  • transition_probability(state, action, next_state) -> float: one-step P(s'|s,a)
  • possible_next_states(state, action) -> List[(next_state, prob)]: enumerates the small set of feasible successors (wind/no-wind)
  • reward(state, action) -> float: immediate reward based on the current state (overridable)

Rendering

When render_mode="human", the grid is plotted with:

  • Blue translucent column shading indicating wind intensity (alpha ∝ wind probability)
  • Upward arrows showing wind direction
  • Start (S), Goal (G), and Agent (A) markers

Usage Example

from kaist_or_gym.envs.windy_gridworld import WindyGridworld

env = WindyGridworld(render_mode="human")
obs, info = env.reset(seed=0)

for _ in range(100):
    action = env.action_space.sample()
    obs, reward, terminated, truncated, info = env.step(action)
    env.render()
    if terminated or truncated:
        break

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kaist_or_gym-0.1.8.tar.gz (11.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kaist_or_gym-0.1.8-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file kaist_or_gym-0.1.8.tar.gz.

File metadata

  • Download URL: kaist_or_gym-0.1.8.tar.gz
  • Upload date:
  • Size: 11.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for kaist_or_gym-0.1.8.tar.gz
Algorithm Hash digest
SHA256 00424ddc362dac39eeeaed26625f67654c5e4fdec0d58b2f112d8c0318cd1ad7
MD5 04d8dbb4f8ae4d56354e768e6d3442ff
BLAKE2b-256 6b27e171c5634c75fe7d141bea693817a73f72c1c78b194f7cd6fe42880a91f7

See more details on using hashes here.

File details

Details for the file kaist_or_gym-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: kaist_or_gym-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for kaist_or_gym-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 a2e6701b0126aac76a5ca671ad5f8681fecda4b8e5794ce46b80e4d1c2d0af9c
MD5 b4a06b44843f830846624eb8e4ed9edf
BLAKE2b-256 95dfbde9b6c64154d80aef0d5c54dc7a57f5bda2f5be21800495266e3241d05d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page