Releases: go-air/gini
Releases · go-air/gini
Hashi
ReDoc
This release re-organises our documentation for a more streamlined README.md and GH pages integration.
Air
Move to go-air.
Sapeur
Release 1.0.1 is another administrative release which provides a DOI via zenodo.
Couteau
Release 1.0.0 adds no features and changes no code. It is an administrative release which
- Decommercializes gini.
- Simplifies the license (MIT, 1 author).
- Corresponds to a transition of IRI France, SAS from a company to an open source organisation.
- Places the code under the community development rather than the original author.
TwentyNine
aiger bugfix and usability improvements
This release fixes a bug in the aiger ascii output for latch values and
adds some usability/performance improvements
For usability, we have added a Write method to gini to have it dump
a dimacs CNF to a writer.
For performance, we have made it so that more learned clauses could be
derived in incremental mode with test scopes when the last solve gave
unsat.
CleanJeans
This release includes some more incremental cleanup:
- Explicitly pass results of backing out of unsat results in test scopes via cleanupSolve
- properly reheapify var queue when variables grow.
Pounded
Corner
This release
- Fixes and cleans up some minor documentation issues.
- Improvements to and hardening of incremental use.
- One can now assume literals before they are otherwise referenced.
- A corner case of recently added support for using Test after unsat result was fixed.
Incremental Improvements
This release adds interface and performance improvements to incremental usage
- inter.S now has a
Try(dur time.Duration)
method without going through GoSolve - phase initialisation only occurs when there are more variables
- sat result checking against added clauses only occurs when new clauses have been added
and clause [de]activation is not in use.
These yield a simpler interface and 2-3x performance improvement for use cases where there are
lots of very easy Solve queries.