Ciw
Ciw copied to clipboard
Ciw is a simulation library for open queueing networks.
Develop a system for writing docstrings that is comprehensive and will be of use to future developers, and for overwriting class methods for implementing behaviour. Section in docs that use...
'Number_of_servers': [1, 1, 1, 1] means, there is 4 Nodes having 1 Server on each Node. Is there way of having 2 Node shared among all the node ?
If I use the following parameter dictionary: ``` params = {'Arrival_distributions': {'Class 0': [['Exponential', 3.0]]}, 'Service_distributions': {'Class 0': [['Exponential', 5.0]]}, 'Transition_matrices': {'Class 0': [[0.0]]}, 'Number_of_servers': ['Inf'] } ``` Ciw works...
Instead of a bunch of boilerplate for a hypothesis test you could simple have: ``` @given(sim=simulations(max_nodes=2)) def test_... ``` Working on this on Axelrod at the moment it's actually pretty...
Ran [Black](https://github.com/psf/black) on the source code. None of the changes should affect run time (and hopefully improve readability and consistency).
I saw this message on the continuous integration build errors. It looks like we just need to update the version. `The sphinxcontrib.applehelp extension used by this project needs at least...
I don't think `!= False` is necessary here.
Everything inherits from `type`. https://realpython.com/inheritance-composition-python/