fast-engset
Release notes
💥 API-breaking changes and new features
This version is backwards incompatible with the previous release. A high level overview of the API-breaking changes and new features is given below, but I recommend you to refer to the README for details.
- Change routines to return a
Result(n_iters, status, value)
tuple detailing the number of iterations to convergence, a status code, and the value computed - Add support for choosing the numerical algorithm to use in a routine via the
alg
argument - Add new routines to compute the number of sources (
fe.n_sources
) and the offered traffic (fe.total_traffic
) were added - Rename existing routines to compute the blocking probability (
fe.blocking_prob
) and the number of servers (fe.n_servers
)
🚀 Speed improvements
- Use JIT compilation to get ~10x speedup
📖 Documentation
- New README with in-depth tutorial
🧰 Maintenance
- Add tox to orchestrate linting and testing in both Python 2.7 and 3
- Add 1000s of randomly generated tests