Skip to content

fast-engset

Compare
Choose a tag to compare
@parsiad parsiad released this 03 Mar 08:21
· 8 commits to master since this release

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