Skip to content

Commit

Permalink
update troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
danielzhuang11 committed Jan 25, 2025
1 parent b580927 commit 644a488
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions docs/source/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Verse builds a tree where each node stores the trace/reachable set after each mo

Whenever a transition has occured, a console message will appear.

![](figs/console.png)
![](figs/console1.png)

The node number is the id of the node in order of when it was first added to the processing queue.

Expand Down Expand Up @@ -127,7 +127,7 @@ if ego.x > 50 and ego.mode != M:

```

![](figs/vehicle1.png)
![](figs/vehicle.png)

Vehicle state is single point with negative velocity and mode M. This means it is moving to the left.
The colored regions (loosely) represent the guard/transition region where a transition can happen
Expand Down Expand Up @@ -156,7 +156,7 @@ Solution:

Make guard region boundaries further apart

![](figs/rect2.png)
![](figs/rect.png)

```python

Expand All @@ -167,7 +167,7 @@ if ego.x > 50 and ego.mode != M:
next.mode = M

```
OR, use verify_refine() function which will repeatedly partition the initial set into smaller and smaller chunks until all of the initial set is safe.
If you are doing 484 MP0, you may also use the verify_refine() function which will repeatedly partition the initial set into smaller and smaller chunks until all of the initial set is safe.

![](figs/refine.png)

Expand Down

0 comments on commit 644a488

Please sign in to comment.