CyRK v0.6.2
Changes
New Features
- Added
auto_solve
key word toCySolver
class. This flag defaults to True. If True, then the solver will automatically callself.solve()
after initialization. - Added new parameter change functions to
CySolver
so that certain parameters can be changed after the class is initialized for a performance boost.- Look for the "self.change_*" methods in cysolver.pyx/pxd. There is a main change method,
CySolver.change_parameters
which allows you to change multiple parameters at once.
- Look for the "self.change_*" methods in cysolver.pyx/pxd. There is a main change method,
Bug Fixes:
- Fixed issue where
CySolver
could give incorrect results if thesolve()
method was called multiple times on the same instance. - Removed extraneous code from
CySolver.__init__
. - Changed several cython integer variables to all use Py_ssize_t types. Corrected type conversions.
GitHub Tracked Changes
- V0.6.2 by @jrenaud90 in #33
Full Changelog: v0.6.1...v0.6.2