From 8e3b8bac6f17f6b8e42da59a528f3934f066d7f0 Mon Sep 17 00:00:00 2001 From: cpondoc Date: Mon, 22 Jan 2024 21:37:34 -0800 Subject: [PATCH] Adjust names in the docs --- docs/docs/index.md | 2 +- docs/docs/reference.md | 2 +- tests/environment_test.py | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index 961163d..354dda2 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -1,4 +1,4 @@ -# Wildfire Evacuation RL Environment +# PyroRL A new reinforcement learning OpenAI Gym environment built for the simulation of wildfire evacuation. diff --git a/docs/docs/reference.md b/docs/docs/reference.md index 0d0a38c..b800112 100644 --- a/docs/docs/reference.md +++ b/docs/docs/reference.md @@ -1,6 +1,6 @@ # Reference -You can find our codebase at the following Github [link](https://github.com/cpondoc/wildfire). If you have any questions about how to use our package or contribute to the project, create an issue or reach out directly to our team: +You can find our codebase at the following Github [link](https://github.com/cpondoc/PyroRL). If you have any questions about how to use our package or contribute to the project, create an issue or reach out directly to our team: - [clpondoc@stanford.edu](mailto:clpondoc@stanford.edu) - [jobrien3@stanford.edu](mailto:jobrien3@stanford.edu) diff --git a/tests/environment_test.py b/tests/environment_test.py index 6a1679e..89ab63a 100644 --- a/tests/environment_test.py +++ b/tests/environment_test.py @@ -21,11 +21,6 @@ def dummy_environment(): test_world = FireWorld(10, 10, populated_areas, paths, paths_to_pops) return test_world - - - - - def test_initialization(): populated_areas = np.array([[2,2],[4,1]]) paths = [[[2,0],[2,1]], [[1,0],[1,1],[2,1],[3,1]]]