Skip to content

Commit c008681

Browse files
committed
fix docs for state trackers
1 parent 4ac9272 commit c008681

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

docs/Guides/deadlock.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ The diagram below shows an example, where the customer at the top node is blocke
99
This circular blockage results is no more natural movement happening.
1010

1111
.. image:: ../_static/2nodesindeadlock.svg
12-
:scale: 100 %
1312
:alt: A 2 node queueing network in deadlock.
1413
:align: center
1514

docs/Reference/state_trackers.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The SystemPopulation Tracker
2020
----------------------------
2121

2222
The SystemPopulation Tracker records the number of customers in the whole system, regardless of which node they are at.
23-
States take the form of a number:
23+
States take the form of a number::
2424

2525
4
2626

@@ -40,7 +40,7 @@ The NodePopulation Tracker
4040
The NodePopulation Tracker records the number of customers at each node.
4141
States take the form of list of numbers. An example for a three node queueing network is shown below::
4242

43-
[2, 0, 5]
43+
(2, 0, 5)
4444

4545
This denotes that there are two customers at the first node, no customers at the second node, and five customers at the third node.
4646

@@ -58,9 +58,9 @@ The NodeClassMatrix Tracker
5858
The NodeClassPopulation Tracker records the number of customers at each node, split by customer class.
5959
States take the form of matrix, that is a list of lists, where the rows denote the nodes and the columns denote the customer classes. An example for a three node queueing network with two customer classes is shown below::
6060

61-
[[3, 0],
62-
[0, 1],
63-
[4, 1]]
61+
((3, 0),
62+
(0, 1),
63+
(4, 1))
6464

6565
This denotes that there are:
6666
+ Three customers at the first node - three of Class 0, and none of Class 1

docs/Tutorial-I/tutorial_iii.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ The histogram of waits below was created using matplotlib, using the following c
7272
>>> plt.hist(waits); # doctest:+SKIP
7373

7474
.. image:: ../_static/tutorial_iii_waitshist.svg
75-
:scale: 100 %
7675
:alt: Histogram of waits for Tutorial III.
7776
:align: center
7877

0 commit comments

Comments
 (0)