mirror of
https://github.com/illiumst/marl-factory-grid.git
synced 2025-05-23 15:26:43 +02:00

# Conflicts: # marl_factory_grid/modules/clean_up/groups.py # marl_factory_grid/modules/clean_up/rules.py # marl_factory_grid/modules/destinations/rules.py
18 lines
428 B
Python
18 lines
428 B
Python
# Battery Env
|
|
CHARGE_PODS = 'ChargePods'
|
|
BATTERIES = 'Batteries'
|
|
BATTERY_DISCHARGED = 'DISCHARGED'
|
|
CHARGE_POD_SYMBOL = 1
|
|
|
|
ACTION_CHARGE = 'do_charge_action'
|
|
|
|
REWARD_CHARGE_VALID: float = 0.1
|
|
Reward_CHARGE_FAIL: float = -0.1
|
|
REWARD_BATTERY_DISCHARGED: float = -1.0
|
|
REWARD_DISCHARGE_DONE: float = -1.0
|
|
|
|
|
|
GROUPED = "single"
|
|
SINGLE = "grouped"
|
|
MODES = [GROUPED, SINGLE]
|