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
9a35f2a9
Commit
9a35f2a9
authored
4 years ago
by
MasterScrat
Browse files
Options
Downloads
Patches
Plain Diff
Fixed tests following malfunction rate fix
parent
213fa805
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_flatland_malfunction.py
+6
-6
6 additions, 6 deletions
tests/test_flatland_malfunction.py
with
6 additions
and
6 deletions
tests/test_flatland_malfunction.py
+
6
−
6
View file @
9a35f2a9
...
...
@@ -119,9 +119,9 @@ def test_malfunction_process():
def
test_malfunction_process_statistically
():
"""
Tests hat malfunctions are produced by stochastic_data!
"""
"""
Tests
t
hat malfunctions are produced by stochastic_data!
"""
# Set fixed malfunction duration for this test
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
5
,
# Rate of malfunction occurence
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
1
/
5
,
# Rate of malfunction occurence
min_duration
=
5
,
# Minimal duration of malfunction
max_duration
=
5
# Max duration of malfunction
)
...
...
@@ -168,7 +168,7 @@ def test_malfunction_process_statistically():
def
test_malfunction_before_entry
():
"""
Tests that malfunctions are working properly for agents before entering the environment!
"""
# Set fixed malfunction duration for this test
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
2
,
# Rate of malfunction occurence
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
1
/
2
,
# Rate of malfunction occur
r
ence
min_duration
=
10
,
# Minimal duration of malfunction
max_duration
=
10
# Max duration of malfunction
)
...
...
@@ -215,7 +215,7 @@ def test_malfunction_values_and_behavior():
rail
,
rail_map
=
make_simple_rail2
()
action_dict
:
Dict
[
int
,
RailEnvActions
]
=
{}
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
0.001
,
# Rate of malfunction occurence
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
1
/
0.001
,
# Rate of malfunction occurence
min_duration
=
10
,
# Minimal duration of malfunction
max_duration
=
10
# Max duration of malfunction
)
...
...
@@ -241,7 +241,7 @@ def test_malfunction_values_and_behavior():
def
test_initial_malfunction
():
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
1000
,
# Rate of malfunction occurence
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
1
/
1000
,
# Rate of malfunction occurence
min_duration
=
2
,
# Minimal duration of malfunction
max_duration
=
5
# Max duration of malfunction
)
...
...
@@ -390,7 +390,7 @@ def test_initial_malfunction_stop_moving():
def
test_initial_malfunction_do_nothing
():
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
70
,
# Rate of malfunction occurence
stochastic_data
=
MalfunctionParameters
(
malfunction_rate
=
1
/
70
,
# Rate of malfunction occurence
min_duration
=
2
,
# Minimal duration of malfunction
max_duration
=
5
# Max duration of malfunction
)
...
...
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