├── .gitattributes ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.rst ├── CHANGES.rst ├── CITATION.rst ├── CONTRIBUTING.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── ciw ├── __init__.py ├── arrival_node.py ├── auxiliary.py ├── data_record.py ├── deadlock │ ├── __init__.py │ └── deadlock_detector.py ├── disciplines.py ├── dists │ ├── .hypothesis │ │ ├── examples │ │ │ ├── 1a542554bc6caead │ │ │ │ ├── 097e547b92b91adb │ │ │ │ ├── 0af454191959d613 │ │ │ │ ├── 1189a64b3a63541c │ │ │ │ ├── 12acac2df3df48b6 │ │ │ │ ├── 24d6e7fc3069832b │ │ │ │ ├── 4da15fd7a09586c7 │ │ │ │ ├── 550f5aa3832b4fc3 │ │ │ │ ├── 628039b293dd5254 │ │ │ │ ├── 668938c233269c64 │ │ │ │ ├── 7db861381701d4e1 │ │ │ │ ├── 7fc1725f753ed55f │ │ │ │ ├── 9c29b872c797bf63 │ │ │ │ ├── 9d0de032dbc8ead3 │ │ │ │ ├── b20d02d8f503a893 │ │ │ │ ├── d08fa35e321f216d │ │ │ │ ├── d3be39602ef9c5c4 │ │ │ │ ├── d8cccc4895f8a7c0 │ │ │ │ └── de3c78fe5b956e64 │ │ │ └── 3144b0e1d2aac2fd │ │ │ │ ├── 2823a3eaa9e3c5ba │ │ │ │ ├── 2a4930297c79ff33 │ │ │ │ ├── 2cfb623d346ecd57 │ │ │ │ ├── 2dbf20c932203d22 │ │ │ │ ├── 406bbe627cd1c44f │ │ │ │ ├── 4119c7a3257670d6 │ │ │ │ ├── 44f025d4566fcf0c │ │ │ │ ├── 48d7a891c63260e5 │ │ │ │ ├── 5bde08a3480d1870 │ │ │ │ ├── 5cbee9898702bbf5 │ │ │ │ ├── 5d8a93fd16b829b5 │ │ │ │ ├── 5e86df951ef52a16 │ │ │ │ ├── 601bbc65f8304262 │ │ │ │ ├── 7cd123fe7f4978f8 │ │ │ │ ├── 852cb323bed40f7d │ │ │ │ ├── b15db0ff5f98ebc2 │ │ │ │ ├── ba81a7b179458d39 │ │ │ │ ├── c3263c7fd9b5885f │ │ │ │ ├── c6327af1d657f71b │ │ │ │ ├── c7d326df3641c9fe │ │ │ │ ├── d4a3e75cd97512cf │ │ │ │ ├── da68315e076fdb9e │ │ │ │ ├── df6ee214f7db1f01 │ │ │ │ ├── dfd06dd224d1ba64 │ │ │ │ ├── ef3bdf5c7f89578a │ │ │ │ ├── f4cb653a6cb0fe75 │ │ │ │ └── f7823ac27f9552ef │ │ └── unicodedata │ │ │ └── 8.0.0 │ │ │ └── charmap.pickle.gz │ ├── __init__.py │ └── distributions.py ├── exactnode.py ├── exit_node.py ├── import_params.py ├── individual.py ├── network.py ├── node.py ├── processor_sharing.py ├── routing │ ├── __init__.py │ └── routing.py ├── schedules.py ├── server.py ├── simulation.py ├── trackers │ ├── __init__.py │ └── state_tracker.py └── version.py ├── docs ├── Background │ ├── index.rst │ ├── kendall.rst │ ├── mechanisms.rst │ ├── other.rst │ ├── references.rst │ └── simulationpractice.rst ├── Guides │ ├── Arrivals │ │ ├── batching.rst │ │ └── index.rst │ ├── CustomerBehaviour │ │ ├── baulking.rst │ │ ├── index.rst │ │ ├── jockeying.rst │ │ └── reneging.rst │ ├── CustomerClasses │ │ ├── change-class-after-service.rst │ │ ├── change-class-while-queueing.rst │ │ ├── customer-classes.rst │ │ ├── index.rst │ │ └── priority.rst │ ├── Distributions │ │ ├── combining_distributions.rst │ │ ├── index.rst │ │ ├── phasetype.rst │ │ ├── set_distributions.rst │ │ ├── summary_stats.rst │ │ └── time_dependent.rst │ ├── Queues │ │ ├── index.rst │ │ ├── queue_capacities.rst │ │ └── system_capacity.rst │ ├── Routing │ │ ├── custom_routing.rst │ │ ├── index.rst │ │ ├── join_shortest_queue.rst │ │ ├── process_based.rst │ │ ├── routing_objects.rst │ │ └── transition_matrix.rst │ ├── Services │ │ ├── index.rst │ │ ├── preemption.rst │ │ ├── processor-sharing.rst │ │ ├── server_priority.rst │ │ ├── server_schedule.rst │ │ ├── service_disciplines.rst │ │ └── slotted.rst │ ├── Simulation │ │ ├── exact.rst │ │ ├── index.rst │ │ ├── parallel_process.rst │ │ ├── pause_restart.rst │ │ ├── progressbar.rst │ │ ├── results.rst │ │ ├── seed.rst │ │ ├── sim_maxtime.rst │ │ └── sim_numcusts.rst │ ├── System │ │ ├── behaviour │ │ │ ├── custom_arrivals.rst │ │ │ ├── custom_number_servers.rst │ │ │ ├── hybrid.rst │ │ │ ├── index.rst │ │ │ └── server_dependent_dist.rst │ │ ├── deadlock.rst │ │ ├── index.rst │ │ └── state_trackers.rst │ └── index.rst ├── Makefile ├── Reference │ ├── authors.rst │ ├── changelog.rst │ ├── citation.rst │ ├── contributing.rst │ ├── distributions.rst │ ├── glossary.rst │ ├── index.rst │ ├── parameters.rst │ ├── results.rst │ ├── routers.rst │ └── state_trackers.rst ├── Tutorial │ ├── GettingStarted │ │ ├── index.rst │ │ ├── part_1.rst │ │ ├── part_2.rst │ │ ├── part_3.rst │ │ └── part_4.rst │ ├── index.rst │ ├── tutorial_ii.rst │ ├── tutorial_iii.rst │ └── tutorial_iv.rst ├── _static │ ├── 2nodes.svg │ ├── 2nodesindeadlock.svg │ ├── cafe.svg │ ├── codestructure.svg │ ├── codestructure.tex │ ├── coxian.svg │ ├── custom_number_servers_with.svg │ ├── custom_number_servers_without.svg │ ├── custom_routing_with.svg │ ├── custom_routing_without.svg │ ├── des+sd_hybrid.svg │ ├── erlang.svg │ ├── favicon.ico │ ├── hybrid.png │ ├── hypererlang.svg │ ├── hyperexponential.svg │ ├── logo.pdf │ ├── logo.png │ ├── logo.svg │ ├── logo_small.png │ ├── phasetype.svg │ ├── progress_bar_customers.png │ ├── progress_bar_time.png │ ├── ps_capacitated_verification.svg │ ├── recs_pandas.png │ ├── script_for_parallel_processing │ │ ├── README.md │ │ └── main.py │ ├── server_dependent_dist_with.svg │ ├── server_dependent_dist_without.svg │ ├── slotted.svg │ ├── style.css │ └── tutorial_iii_waitshist.svg ├── conf.py ├── index.rst ├── installation.rst └── requirements.txt ├── doctests.py ├── new_release_checklist.md ├── requirements.txt ├── setup.py ├── test_requirements.txt └── tests ├── __init__.py ├── sample_empirical_dist.csv ├── test_arrival_node.py ├── test_auxiliary.py ├── test_data_record.py ├── test_exit_node.py ├── test_individual.py ├── test_network.py ├── test_node.py ├── test_process_based.py ├── test_processor_sharing.py ├── test_routing.py ├── test_sampling.py ├── test_scheduling.py ├── test_server.py ├── test_simulation.py ├── test_state_tracker.py └── test_version.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CITATION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/CITATION.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/README.rst -------------------------------------------------------------------------------- /ciw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/__init__.py -------------------------------------------------------------------------------- /ciw/arrival_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/arrival_node.py -------------------------------------------------------------------------------- /ciw/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/auxiliary.py -------------------------------------------------------------------------------- /ciw/data_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/data_record.py -------------------------------------------------------------------------------- /ciw/deadlock/__init__.py: -------------------------------------------------------------------------------- 1 | from .deadlock_detector import * 2 | -------------------------------------------------------------------------------- /ciw/deadlock/deadlock_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/deadlock/deadlock_detector.py -------------------------------------------------------------------------------- /ciw/disciplines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/disciplines.py -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/097e547b92b91adb: -------------------------------------------------------------------------------- 1 | ;`ɀ -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/0af454191959d613: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/0af454191959d613 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/1189a64b3a63541c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/1189a64b3a63541c -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/12acac2df3df48b6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/12acac2df3df48b6 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/24d6e7fc3069832b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/24d6e7fc3069832b -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/4da15fd7a09586c7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/4da15fd7a09586c7 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/550f5aa3832b4fc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/550f5aa3832b4fc3 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/628039b293dd5254: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/628039b293dd5254 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/668938c233269c64: -------------------------------------------------------------------------------- 1 | k`F\ -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/7db861381701d4e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/7db861381701d4e1 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/7fc1725f753ed55f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/7fc1725f753ed55f -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/9c29b872c797bf63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/9c29b872c797bf63 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/9d0de032dbc8ead3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/9d0de032dbc8ead3 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/b20d02d8f503a893: -------------------------------------------------------------------------------- 1 | kd -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/d08fa35e321f216d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/d08fa35e321f216d -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/d3be39602ef9c5c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/d3be39602ef9c5c4 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/d8cccc4895f8a7c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/d8cccc4895f8a7c0 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/1a542554bc6caead/de3c78fe5b956e64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/1a542554bc6caead/de3c78fe5b956e64 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2823a3eaa9e3c5ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2823a3eaa9e3c5ba -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2a4930297c79ff33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2a4930297c79ff33 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2cfb623d346ecd57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2cfb623d346ecd57 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2dbf20c932203d22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/2dbf20c932203d22 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/406bbe627cd1c44f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/406bbe627cd1c44f -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/4119c7a3257670d6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/4119c7a3257670d6 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/44f025d4566fcf0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/44f025d4566fcf0c -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/48d7a891c63260e5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/48d7a891c63260e5 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5bde08a3480d1870: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5bde08a3480d1870 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5cbee9898702bbf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5cbee9898702bbf5 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5d8a93fd16b829b5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5d8a93fd16b829b5 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5e86df951ef52a16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/5e86df951ef52a16 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/601bbc65f8304262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/601bbc65f8304262 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/7cd123fe7f4978f8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/7cd123fe7f4978f8 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/852cb323bed40f7d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/852cb323bed40f7d -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/b15db0ff5f98ebc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/b15db0ff5f98ebc2 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/ba81a7b179458d39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/ba81a7b179458d39 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/c3263c7fd9b5885f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/c3263c7fd9b5885f -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/c6327af1d657f71b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/c6327af1d657f71b -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/c7d326df3641c9fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/c7d326df3641c9fe -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/d4a3e75cd97512cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/d4a3e75cd97512cf -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/da68315e076fdb9e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/da68315e076fdb9e -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/df6ee214f7db1f01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/df6ee214f7db1f01 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/dfd06dd224d1ba64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/dfd06dd224d1ba64 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/ef3bdf5c7f89578a: -------------------------------------------------------------------------------- 1 | {谘; -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/f4cb653a6cb0fe75: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/f4cb653a6cb0fe75 -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/f7823ac27f9552ef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/examples/3144b0e1d2aac2fd/f7823ac27f9552ef -------------------------------------------------------------------------------- /ciw/dists/.hypothesis/unicodedata/8.0.0/charmap.pickle.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/.hypothesis/unicodedata/8.0.0/charmap.pickle.gz -------------------------------------------------------------------------------- /ciw/dists/__init__.py: -------------------------------------------------------------------------------- 1 | from .distributions import * 2 | -------------------------------------------------------------------------------- /ciw/dists/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/dists/distributions.py -------------------------------------------------------------------------------- /ciw/exactnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/exactnode.py -------------------------------------------------------------------------------- /ciw/exit_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/exit_node.py -------------------------------------------------------------------------------- /ciw/import_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/import_params.py -------------------------------------------------------------------------------- /ciw/individual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/individual.py -------------------------------------------------------------------------------- /ciw/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/network.py -------------------------------------------------------------------------------- /ciw/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/node.py -------------------------------------------------------------------------------- /ciw/processor_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/processor_sharing.py -------------------------------------------------------------------------------- /ciw/routing/__init__.py: -------------------------------------------------------------------------------- 1 | from .routing import * 2 | -------------------------------------------------------------------------------- /ciw/routing/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/routing/routing.py -------------------------------------------------------------------------------- /ciw/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/schedules.py -------------------------------------------------------------------------------- /ciw/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/server.py -------------------------------------------------------------------------------- /ciw/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/simulation.py -------------------------------------------------------------------------------- /ciw/trackers/__init__.py: -------------------------------------------------------------------------------- 1 | from .state_tracker import * 2 | -------------------------------------------------------------------------------- /ciw/trackers/state_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/ciw/trackers/state_tracker.py -------------------------------------------------------------------------------- /ciw/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.2.7" 2 | -------------------------------------------------------------------------------- /docs/Background/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Background/index.rst -------------------------------------------------------------------------------- /docs/Background/kendall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Background/kendall.rst -------------------------------------------------------------------------------- /docs/Background/mechanisms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Background/mechanisms.rst -------------------------------------------------------------------------------- /docs/Background/other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Background/other.rst -------------------------------------------------------------------------------- /docs/Background/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Background/references.rst -------------------------------------------------------------------------------- /docs/Background/simulationpractice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Background/simulationpractice.rst -------------------------------------------------------------------------------- /docs/Guides/Arrivals/batching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Arrivals/batching.rst -------------------------------------------------------------------------------- /docs/Guides/Arrivals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Arrivals/index.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerBehaviour/baulking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerBehaviour/baulking.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerBehaviour/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerBehaviour/index.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerBehaviour/jockeying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerBehaviour/jockeying.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerBehaviour/reneging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerBehaviour/reneging.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerClasses/change-class-after-service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerClasses/change-class-after-service.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerClasses/change-class-while-queueing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerClasses/change-class-while-queueing.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerClasses/customer-classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerClasses/customer-classes.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerClasses/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerClasses/index.rst -------------------------------------------------------------------------------- /docs/Guides/CustomerClasses/priority.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/CustomerClasses/priority.rst -------------------------------------------------------------------------------- /docs/Guides/Distributions/combining_distributions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Distributions/combining_distributions.rst -------------------------------------------------------------------------------- /docs/Guides/Distributions/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Distributions/index.rst -------------------------------------------------------------------------------- /docs/Guides/Distributions/phasetype.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Distributions/phasetype.rst -------------------------------------------------------------------------------- /docs/Guides/Distributions/set_distributions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Distributions/set_distributions.rst -------------------------------------------------------------------------------- /docs/Guides/Distributions/summary_stats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Distributions/summary_stats.rst -------------------------------------------------------------------------------- /docs/Guides/Distributions/time_dependent.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Distributions/time_dependent.rst -------------------------------------------------------------------------------- /docs/Guides/Queues/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Queues/index.rst -------------------------------------------------------------------------------- /docs/Guides/Queues/queue_capacities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Queues/queue_capacities.rst -------------------------------------------------------------------------------- /docs/Guides/Queues/system_capacity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Queues/system_capacity.rst -------------------------------------------------------------------------------- /docs/Guides/Routing/custom_routing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Routing/custom_routing.rst -------------------------------------------------------------------------------- /docs/Guides/Routing/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Routing/index.rst -------------------------------------------------------------------------------- /docs/Guides/Routing/join_shortest_queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Routing/join_shortest_queue.rst -------------------------------------------------------------------------------- /docs/Guides/Routing/process_based.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Routing/process_based.rst -------------------------------------------------------------------------------- /docs/Guides/Routing/routing_objects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Routing/routing_objects.rst -------------------------------------------------------------------------------- /docs/Guides/Routing/transition_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Routing/transition_matrix.rst -------------------------------------------------------------------------------- /docs/Guides/Services/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/index.rst -------------------------------------------------------------------------------- /docs/Guides/Services/preemption.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/preemption.rst -------------------------------------------------------------------------------- /docs/Guides/Services/processor-sharing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/processor-sharing.rst -------------------------------------------------------------------------------- /docs/Guides/Services/server_priority.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/server_priority.rst -------------------------------------------------------------------------------- /docs/Guides/Services/server_schedule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/server_schedule.rst -------------------------------------------------------------------------------- /docs/Guides/Services/service_disciplines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/service_disciplines.rst -------------------------------------------------------------------------------- /docs/Guides/Services/slotted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Services/slotted.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/exact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/exact.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/index.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/parallel_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/parallel_process.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/pause_restart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/pause_restart.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/progressbar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/progressbar.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/results.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/seed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/seed.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/sim_maxtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/sim_maxtime.rst -------------------------------------------------------------------------------- /docs/Guides/Simulation/sim_numcusts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/Simulation/sim_numcusts.rst -------------------------------------------------------------------------------- /docs/Guides/System/behaviour/custom_arrivals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/behaviour/custom_arrivals.rst -------------------------------------------------------------------------------- /docs/Guides/System/behaviour/custom_number_servers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/behaviour/custom_number_servers.rst -------------------------------------------------------------------------------- /docs/Guides/System/behaviour/hybrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/behaviour/hybrid.rst -------------------------------------------------------------------------------- /docs/Guides/System/behaviour/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/behaviour/index.rst -------------------------------------------------------------------------------- /docs/Guides/System/behaviour/server_dependent_dist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/behaviour/server_dependent_dist.rst -------------------------------------------------------------------------------- /docs/Guides/System/deadlock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/deadlock.rst -------------------------------------------------------------------------------- /docs/Guides/System/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/index.rst -------------------------------------------------------------------------------- /docs/Guides/System/state_trackers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/System/state_trackers.rst -------------------------------------------------------------------------------- /docs/Guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Guides/index.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Reference/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/authors.rst -------------------------------------------------------------------------------- /docs/Reference/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/changelog.rst -------------------------------------------------------------------------------- /docs/Reference/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/citation.rst -------------------------------------------------------------------------------- /docs/Reference/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/contributing.rst -------------------------------------------------------------------------------- /docs/Reference/distributions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/distributions.rst -------------------------------------------------------------------------------- /docs/Reference/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/glossary.rst -------------------------------------------------------------------------------- /docs/Reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/index.rst -------------------------------------------------------------------------------- /docs/Reference/parameters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/parameters.rst -------------------------------------------------------------------------------- /docs/Reference/results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/results.rst -------------------------------------------------------------------------------- /docs/Reference/routers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/routers.rst -------------------------------------------------------------------------------- /docs/Reference/state_trackers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Reference/state_trackers.rst -------------------------------------------------------------------------------- /docs/Tutorial/GettingStarted/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/GettingStarted/index.rst -------------------------------------------------------------------------------- /docs/Tutorial/GettingStarted/part_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/GettingStarted/part_1.rst -------------------------------------------------------------------------------- /docs/Tutorial/GettingStarted/part_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/GettingStarted/part_2.rst -------------------------------------------------------------------------------- /docs/Tutorial/GettingStarted/part_3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/GettingStarted/part_3.rst -------------------------------------------------------------------------------- /docs/Tutorial/GettingStarted/part_4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/GettingStarted/part_4.rst -------------------------------------------------------------------------------- /docs/Tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/index.rst -------------------------------------------------------------------------------- /docs/Tutorial/tutorial_ii.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/tutorial_ii.rst -------------------------------------------------------------------------------- /docs/Tutorial/tutorial_iii.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/tutorial_iii.rst -------------------------------------------------------------------------------- /docs/Tutorial/tutorial_iv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/Tutorial/tutorial_iv.rst -------------------------------------------------------------------------------- /docs/_static/2nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/2nodes.svg -------------------------------------------------------------------------------- /docs/_static/2nodesindeadlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/2nodesindeadlock.svg -------------------------------------------------------------------------------- /docs/_static/cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/cafe.svg -------------------------------------------------------------------------------- /docs/_static/codestructure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/codestructure.svg -------------------------------------------------------------------------------- /docs/_static/codestructure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/codestructure.tex -------------------------------------------------------------------------------- /docs/_static/coxian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/coxian.svg -------------------------------------------------------------------------------- /docs/_static/custom_number_servers_with.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/custom_number_servers_with.svg -------------------------------------------------------------------------------- /docs/_static/custom_number_servers_without.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/custom_number_servers_without.svg -------------------------------------------------------------------------------- /docs/_static/custom_routing_with.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/custom_routing_with.svg -------------------------------------------------------------------------------- /docs/_static/custom_routing_without.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/custom_routing_without.svg -------------------------------------------------------------------------------- /docs/_static/des+sd_hybrid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/des+sd_hybrid.svg -------------------------------------------------------------------------------- /docs/_static/erlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/erlang.svg -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/hybrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/hybrid.png -------------------------------------------------------------------------------- /docs/_static/hypererlang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/hypererlang.svg -------------------------------------------------------------------------------- /docs/_static/hyperexponential.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/hyperexponential.svg -------------------------------------------------------------------------------- /docs/_static/logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/logo.pdf -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/_static/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/logo_small.png -------------------------------------------------------------------------------- /docs/_static/phasetype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/phasetype.svg -------------------------------------------------------------------------------- /docs/_static/progress_bar_customers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/progress_bar_customers.png -------------------------------------------------------------------------------- /docs/_static/progress_bar_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/progress_bar_time.png -------------------------------------------------------------------------------- /docs/_static/ps_capacitated_verification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/ps_capacitated_verification.svg -------------------------------------------------------------------------------- /docs/_static/recs_pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/recs_pandas.png -------------------------------------------------------------------------------- /docs/_static/script_for_parallel_processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/script_for_parallel_processing/README.md -------------------------------------------------------------------------------- /docs/_static/script_for_parallel_processing/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/script_for_parallel_processing/main.py -------------------------------------------------------------------------------- /docs/_static/server_dependent_dist_with.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/server_dependent_dist_with.svg -------------------------------------------------------------------------------- /docs/_static/server_dependent_dist_without.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/server_dependent_dist_without.svg -------------------------------------------------------------------------------- /docs/_static/slotted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/slotted.svg -------------------------------------------------------------------------------- /docs/_static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/style.css -------------------------------------------------------------------------------- /docs/_static/tutorial_iii_waitshist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/_static/tutorial_iii_waitshist.svg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx>=5.0.0 2 | pandas -------------------------------------------------------------------------------- /doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/doctests.py -------------------------------------------------------------------------------- /new_release_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/new_release_checklist.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools>=69 2 | networkx>=2.3 3 | tqdm>=4.66.3 4 | numpy>=1.21.6 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/setup.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- 1 | networkx>=2.3 2 | hypothesis==5.33.0 3 | tqdm>=4.66.3 4 | coverage 5 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_empirical_dist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/sample_empirical_dist.csv -------------------------------------------------------------------------------- /tests/test_arrival_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_arrival_node.py -------------------------------------------------------------------------------- /tests/test_auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_auxiliary.py -------------------------------------------------------------------------------- /tests/test_data_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_data_record.py -------------------------------------------------------------------------------- /tests/test_exit_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_exit_node.py -------------------------------------------------------------------------------- /tests/test_individual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_individual.py -------------------------------------------------------------------------------- /tests/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_network.py -------------------------------------------------------------------------------- /tests/test_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_node.py -------------------------------------------------------------------------------- /tests/test_process_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_process_based.py -------------------------------------------------------------------------------- /tests/test_processor_sharing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_processor_sharing.py -------------------------------------------------------------------------------- /tests/test_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_routing.py -------------------------------------------------------------------------------- /tests/test_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_sampling.py -------------------------------------------------------------------------------- /tests/test_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_scheduling.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_simulation.py -------------------------------------------------------------------------------- /tests/test_state_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_state_tracker.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiwPython/Ciw/HEAD/tests/test_version.py --------------------------------------------------------------------------------