Ciw
Ciw copied to clipboard
Ciw is a simulation library for open queueing networks.
Because `customer_class` merely needs to be hashable and ordered, and there is no currently-supported typing for being ordered in Python, setting it to hashable seems like the closest typing to...
Suppose I have three classes of patients and two servers.  Server one will only serve patients of class `A` and `B` while server two will only server 2 will...
Although the code I've seen is pretty good for readability, I think that setting up Black to automatically format code would be beneficial (especially if I'm contributing 😉). See [Black](https://black.readthedocs.io/en/stable/index.html).
I am thinking about how to develop and maintain model configurations. - I could use `ciw.create_network` to develop an instance of the `ciw.network` class and then serialize it. - I...
Using type annotations would help improve the readability of the code. See [typing](https://docs.python.org/3/library/typing.html).
NumPy is a dependency of Ciw. NumPy 2.0 is coming, which is a major version change that purportedly will break some things. I don't know if it will break anything...
I came across [pyOpenSci](https://github.com/pyOpenSci/software-submission) which offers open peer review. I am not sure if it is a good idea for Ciw, but I think it is worth considering.
Hello there 👋 I'm trying to understand how `ciw` handles deterministic arrivals and services in a simple queue simulation. Specifically, I'm seeing fewer arrivals than expected, and I'd appreciate some...
- Add type annotation for `exact`. - Add input validation for `exact`. - Add short explanation in docstring. --- I didn't update tests, but I expect I'll need to before...
I recently put out a [YouTube video](https://www.youtube.com/watch?v=u0Y4PQpEgt4) going through [tutorial III](https://ciw.readthedocs.io/en/latest/Tutorial/tutorial_iii.html), and I noticed some typographical errors. I suggest going through this doc page to remove these issues. Maybe I'll...