Skip to content

Commit c1287fc

Browse files
committed
update readme
1 parent b0f6fbc commit c1287fc

2 files changed

Lines changed: 21 additions & 19 deletions

File tree

README.rst

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -75,23 +75,25 @@ Features
7575

7676
A number of other features are also implemented, including:
7777

78-
+ `Type I blocking <https://ciw.readthedocs.io/en/latest/Tutorial-II/tutorial_vi.html>`_
78+
+ `Type I blocking <https://ciw.readthedocs.io/en/latest/Guides/Queues/queue_capacities.html>`_
7979
+ `A large range of sampling distributions <https://ciw.readthedocs.io/en/latest/Reference/distributions.html>`_
80-
+ `Phase-Type distributions <https://ciw.readthedocs.io/en/latest/Guides/phasetype.html>`_
81-
+ `Time-dependent and state-dependent distributions <https://ciw.readthedocs.io/en/latest/Guides/time_dependent.html>`_
82-
+ `Batch arrivals <https://ciw.readthedocs.io/en/latest/Guides/batching.html>`_
83-
+ `Baulking customers <https://ciw.readthedocs.io/en/latest/Guides/baulking.html>`_
84-
+ `Reneging customers <https://ciw.readthedocs.io/en/latest/Guides/reneging.html>`_
85-
+ `Processor sharing <https://ciw.readthedocs.io/en/latest/Guides/processor-sharing.html>`_
86-
+ `Multiple customer classes <https://ciw.readthedocs.io/en/latest/Tutorial-II/tutorial_vii.html>`_
87-
+ `Priorities <https://ciw.readthedocs.io/en/latest/Guides/priority.html>`_
88-
+ `Server priorities <https://ciw.readthedocs.io/en/latest/Guides/server_priority.html>`_
89-
+ `Service disciplines <https://ciw.readthedocs.io/en/latest/Guides/service_disciplines.html>`_
90-
+ `Customers changing classes <https://ciw.readthedocs.io/en/latest/Guides/dynamic_customerclasses.html>`_
91-
+ `Server schedules <https://ciw.readthedocs.io/en/latest/Guides/server_schedule.html>`_
92-
+ `Slotted services <https://ciw.readthedocs.io/en/latest/Guides/slotted.html>`_
93-
+ `State tracking <https://ciw.readthedocs.io/en/latest/Guides/state_trackers.html>`_
94-
+ `Stopping the simulation after a certain amount of customers <https://ciw.readthedocs.io/en/latest/Guides/sim_numcusts.html>`_
95-
+ `Process-based routing <https://ciw.readthedocs.io/en/latest/Guides/process_based.html>`_
96-
+ `Deadlock detection <https://ciw.readthedocs.io/en/latest/Guides/deadlock.html>`_
80+
+ `Phase-Type distributions <https://ciw.readthedocs.io/en/latest/Guides/Distributions/phasetype.html>`_
81+
+ `Time-dependent and state-dependent distributions <https://ciw.readthedocs.io/en/latest/Guides/Distributions/time_dependent.html>`_
82+
+ `Batch arrivals <https://ciw.readthedocs.io/en/latest/Guides/Arrivals/batching.html>`_
83+
+ `Baulking customers <https://ciw.readthedocs.io/en/latest/Guides/CustomerBehaviour/baulking.html>`_
84+
+ `Reneging customers <https://ciw.readthedocs.io/en/latest/Guides/CustomerBehaviour/reneging.html>`_
85+
+ `Processor sharing <https://ciw.readthedocs.io/en/latest/Guides/Services/processor-sharing.html>`_
86+
+ `Multiple customer classes <https://ciw.readthedocs.io/en/latest/Guides/CustomerClasses/customer-classes.html>`_
87+
+ `Priorities <https://ciw.readthedocs.io/en/latest/Guides/CustomerClasses/priority.html>`_
88+
+ `Server priorities <https://ciw.readthedocs.io/en/latest/Guides/Services/server_priority.html>`_
89+
+ `Service disciplines <https://ciw.readthedocs.io/en/latest/Guides/Services/service_disciplines.html>`_
90+
+ `Customers changing classes while queueing <https://ciw.readthedocs.io/en/latest/Guides/CustomerClasses/change-class-while-queueing.html>`_
91+
+ `Customers changing classes after service <https://ciw.readthedocs.io/en/latest/Guides/CustomerClasses/change-class-after-service.html>`_
92+
+ `Server schedules <https://ciw.readthedocs.io/en/latest/Guides/Services/server_schedule.html>`_
93+
+ `Slotted services <https://ciw.readthedocs.io/en/latest/Guides/Services/slotted.html>`_
94+
+ `State tracking <https://ciw.readthedocs.io/en/latest/Guides/System/state_trackers.html>`_
95+
+ `Stopping the simulation after a certain amount of customers <https://ciw.readthedocs.io/en/latest/Guides/Simulation/sim_numcusts.html>`_
96+
+ `Process-based routing <https://ciw.readthedocs.io/en/latest/Guides/Routing/process_based.html>`_
97+
+ `Logical routing <https://ciw.readthedocs.io/en/latest/Guides/Reference/routers.html>`_
98+
+ `Deadlock detection <https://ciw.readthedocs.io/en/latest/Guides/System/deadlock.html>`_
9799

docs/Guides/Routing/process_based.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Let's run this and look at the routes of those that have left the system.
3737
>>> Q.simulate_until_max_time(100.0)
3838

3939
>>> inds = Q.nodes[-1].all_individuals # Gets all individuals from exit node
40-
>>> set([tuple(dr.node for dr in ind.data_records) for ind in inds]) # Get's all unique routes of completed individuals
40+
>>> set([tuple(dr.node for dr in ind.data_records) for ind in inds]) # Gets all unique routes of completed individuals
4141
{(1, 1, 1)}
4242

4343
Now we can see that all individuals who have left the system, that is they have completed their route, repeated service at Node 1 three times.

0 commit comments

Comments
 (0)