Skip to content

Commit 1317aae

Browse files
MahshadJvaughnbetz
authored andcommitted
Update debug_aids.rst
fixed indentation
1 parent 45ff1db commit 1317aae

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

doc/src/vpr/debug_aids.rst

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -62,39 +62,39 @@ You can also find the variables’ list in the Advanced Settings Window, on the
6262
**Placer Variables**
6363

6464
* move_num: every placer iteration counts as a move, so the user can stop the program after a certain number of moves. This breakpoint can be enabled through the entry field on the main debugger window or using an expression. It should be noted however, that using the entry field would proceed the specified number of moves. (as in the second example)
65-
* Ex. move _num == 33
66-
* Ex. move_num += 4
65+
* Ex. move _num == 33
66+
* Ex. move_num += 4
6767
* temp_count: every time the temperature is updated it counts as an increase to temp_count. This breakpoint can be enabled through the entry field on the main debugger window or using an expression. It should be noted however, that using the entry field would proceed the specified number of temperatures. (as in the second example)
68-
* Ex. temp_count == 5
69-
* Ex. temp_count += 5
68+
* Ex. temp_count == 5
69+
* Ex. temp_count += 5
7070
* from_block: in every placer move one or more blocks are relocated. From_block specifies the first block that is relocated in every move. This breakpoint can be enabled through the entry field on the main debugger window or using an expression.
71-
* Ex. from_block == 83
71+
* Ex. from_block == 83
7272
* in_blocks_affected: this variable allows you to stop whenever your specified block was moved. Unlike from_block which only checks the first block moved in every move, in_blocks_affected looks through all the replicated blocks in that move. This breakpoint can only be enabled through the use of an expression.
73-
* Ex. in_blocks_affected == 1
73+
* Ex. in_blocks_affected == 1
7474

7575
**Router Variables**
7676

7777
* router_iter: every router iteration, whether failed or succeeded, counts as a router iteration. This breakpoint can be enabled through the entry field on the main debugger window or using an expression.
78-
* Ex. router_iter == 2
78+
* Ex. router_iter == 2
7979
* route_net_id: stops when the specified net is rerouted. This breakpoint can be enabled through the entry field on the main debugger window or using an expression.
80-
* route_net_id == 12
80+
* route_net_id == 12
8181

8282
Available Operators
8383
~~~~~~~~~~~~~~~~~~~
8484

8585
* ==
86-
* Ex. temp_count == 2
86+
* Ex. temp_count == 2
8787
* >
88-
* Ex. move_num > 94
88+
* Ex. move_num > 94
8989
* <
90-
* Ex. move_num < 94
90+
* Ex. move_num < 94
9191
* >=
92-
* Ex. router_iter >=2
92+
* Ex. router_iter >=2
9393
* <=
94-
* Ex. router_iter <=2
94+
* Ex. router_iter <=2
9595
* &&
96-
* Ex. from_block == 83 && move_num > 72
96+
* Ex. from_block == 83 && move_num > 72
9797
* ||
98-
* Ex. in_blocks_affected == 11 || temp_count == 9
98+
* Ex. in_blocks_affected == 11 || temp_count == 9
9999
* +=
100-
* Ex. move_num += 8
100+
* Ex. move_num += 8

0 commit comments

Comments
 (0)