Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Flatland
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pranjal_dhole
Flatland
Commits
5f80e96d
Commit
5f80e96d
authored
3 years ago
by
Dipam Chakraborty
Browse files
Options
Downloads
Patches
Plain Diff
add new tests for malfunction off map
parent
d2351373
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
flatland/envs/rail_env.py
+1
-1
1 addition, 1 deletion
flatland/envs/rail_env.py
tests/test_flatland_states_edge_cases.py
+83
-0
83 additions, 0 deletions
tests/test_flatland_states_edge_cases.py
with
84 additions
and
1 deletion
flatland/envs/rail_env.py
+
1
−
1
View file @
5f80e96d
...
...
@@ -440,7 +440,7 @@ class RailEnv(Environment):
action
=
action_preprocessing
.
preprocess_moving_action
(
action
,
self
.
rail
,
current_position
,
current_direction
)
# Check transitions, bounts for executing the action in the given position and directon
if
not
check_valid_action
(
action
,
self
.
rail
,
current_position
,
current_direction
):
if
action
.
is_moving_action
()
and
not
check_valid_action
(
action
,
self
.
rail
,
current_position
,
current_direction
):
action
=
RailEnvActions
.
STOP_MOVING
return
action
...
...
This diff is collapsed.
Click to expand it.
tests/test_flatland_states_edge_cases.py
0 → 100644
+
83
−
0
View file @
5f80e96d
from
flatland.core.env_observation_builder
import
ObservationBuilder
from
flatland.core.grid.grid4
import
Grid4TransitionsEnum
from
flatland.core.grid.grid4_utils
import
get_new_position
from
flatland.envs.malfunction_generators
import
malfunction_from_params
,
MalfunctionParameters
from
flatland.envs.rail_env
import
RailEnv
,
RailEnvActions
from
flatland.envs.rail_generators
import
rail_from_grid_transition_map
from
flatland.envs.line_generators
import
sparse_line_generator
from
flatland.utils.simple_rail
import
make_simple_rail
from
flatland.envs.step_utils.states
import
TrainState
def
test_return_to_ready_to_depart
():
"""
When going from ready to depart to malfunction off map, if do nothing is provided, should return to ready to depart
"""
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
0
,
# Rate of malfunction occurence
min_duration
=
0
,
# Minimal duration of malfunction
max_duration
=
0
# Max duration of malfunction
)
rail
,
_
,
optionals
=
make_simple_rail
()
env
=
RailEnv
(
width
=
25
,
height
=
30
,
rail_generator
=
rail_from_grid_transition_map
(
rail
,
optionals
),
line_generator
=
sparse_line_generator
(
seed
=
10
),
number_of_agents
=
1
,
malfunction_generator_and_process_data
=
malfunction_from_params
(
stochastic_data
),
)
env
.
reset
(
False
,
False
,
random_seed
=
10
)
env
.
_max_episode_steps
=
100
for
_
in
range
(
3
):
env
.
step
({
0
:
RailEnvActions
.
DO_NOTHING
})
env
.
agents
[
0
].
malfunction_handler
.
_set_malfunction_down_counter
(
2
)
env
.
step
({
0
:
RailEnvActions
.
DO_NOTHING
})
assert
env
.
agents
[
0
].
state
==
TrainState
.
MALFUNCTION_OFF_MAP
for
_
in
range
(
2
):
env
.
step
({
0
:
RailEnvActions
.
DO_NOTHING
})
assert
env
.
agents
[
0
].
state
==
TrainState
.
READY_TO_DEPART
def
test_ready_to_depart_to_stopped
():
"""
When going from ready to depart to malfunction off map, if stopped is provided, should go to stopped
"""
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
0
,
# Rate of malfunction occurence
min_duration
=
0
,
# Minimal duration of malfunction
max_duration
=
0
# Max duration of malfunction
)
rail
,
_
,
optionals
=
make_simple_rail
()
env
=
RailEnv
(
width
=
25
,
height
=
30
,
rail_generator
=
rail_from_grid_transition_map
(
rail
,
optionals
),
line_generator
=
sparse_line_generator
(
seed
=
10
),
number_of_agents
=
1
,
malfunction_generator_and_process_data
=
malfunction_from_params
(
stochastic_data
),
)
env
.
reset
(
False
,
False
,
random_seed
=
10
)
env
.
_max_episode_steps
=
100
for
_
in
range
(
3
):
env
.
step
({
0
:
RailEnvActions
.
STOP_MOVING
})
assert
env
.
agents
[
0
].
state
==
TrainState
.
READY_TO_DEPART
env
.
agents
[
0
].
malfunction_handler
.
_set_malfunction_down_counter
(
2
)
env
.
step
({
0
:
RailEnvActions
.
STOP_MOVING
})
assert
env
.
agents
[
0
].
state
==
TrainState
.
MALFUNCTION_OFF_MAP
for
_
in
range
(
2
):
env
.
step
({
0
:
RailEnvActions
.
STOP_MOVING
})
assert
env
.
agents
[
0
].
state
==
TrainState
.
STOPPED
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment