diff --git a/README.rst b/README.rst index 4de86d6..df75f93 100644 --- a/README.rst +++ b/README.rst @@ -75,23 +75,25 @@ Features A number of other features are also implemented, including: -+ `Type I blocking `_ ++ `Type I blocking `_ + `A large range of sampling distributions `_ -+ `Phase-Type distributions `_ -+ `Time-dependent and state-dependent distributions `_ -+ `Batch arrivals `_ -+ `Baulking customers `_ -+ `Reneging customers `_ -+ `Processor sharing `_ -+ `Multiple customer classes `_ -+ `Priorities `_ -+ `Server priorities `_ -+ `Service disciplines `_ -+ `Customers changing classes `_ -+ `Server schedules `_ -+ `Slotted services `_ -+ `State tracking `_ -+ `Stopping the simulation after a certain amount of customers `_ -+ `Process-based routing `_ -+ `Deadlock detection `_ ++ `Phase-Type distributions `_ ++ `Time-dependent and state-dependent distributions `_ ++ `Batch arrivals `_ ++ `Baulking customers `_ ++ `Reneging customers `_ ++ `Processor sharing `_ ++ `Multiple customer classes `_ ++ `Priorities `_ ++ `Server priorities `_ ++ `Service disciplines `_ ++ `Customers changing classes while queueing `_ ++ `Customers changing classes after service `_ ++ `Server schedules `_ ++ `Slotted services `_ ++ `State tracking `_ ++ `Stopping the simulation after a certain amount of customers `_ ++ `Process-based routing `_ ++ `Logical routing `_ ++ `Deadlock detection `_ diff --git a/docs/Guides/Routing/process_based.rst b/docs/Guides/Routing/process_based.rst index 77421e8..4abb10b 100644 --- a/docs/Guides/Routing/process_based.rst +++ b/docs/Guides/Routing/process_based.rst @@ -37,7 +37,7 @@ Let's run this and look at the routes of those that have left the system. >>> Q.simulate_until_max_time(100.0) >>> inds = Q.nodes[-1].all_individuals # Gets all individuals from exit node - >>> set([tuple(dr.node for dr in ind.data_records) for ind in inds]) # Get's all unique routes of completed individuals + >>> set([tuple(dr.node for dr in ind.data_records) for ind in inds]) # Gets all unique routes of completed individuals {(1, 1, 1)} 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.