Bugfix/1662 solver fails to find solution#1667
Open
Conversation
This release adds prime and factorization features, improves numeric precision, and expands simulator and user documentation. New features ============ * Add `IsPrime`, `Factors`, `PrevPrime` and `NextPrime` commands * Add `MaxFactorsBits` and `MaxFactorIterations` settings for factorization * Add `TRIGSIN` command for Pythagorean identity rewrites * Add a Unix man page and simulator documentation * Add simulator recorder dump on `F16`; move demo playback to `F13`-`F15` * Paint navigation arrows in `SHOW` * Accept `CR/LF` line endings when reading Windows files Bug fixes ========= * Fix `expm1` precision loss for small arguments, including complex values * Fix `ln1p` precision loss for small arguments * Fix shift behavior after transient alpha, and support shift/xshift for transalpha * Reset `show_x` and `show_y` when exiting `SHOW` * Ensure the simulator creates the `screens` directory when needed * Fix an infinity optimization regression in arithmetic * Add missing null-dereference checks in factorization code Enhancements ============ * Refactor and optimize the decimal factorization code path, with expanded tests * Add conversion support to `float` and `double` in algebraic code * Update to recorder v1.2.3 * Add documentation updates (DeepWiki reference, legal notice updates) * Add build preparation for upcoming make-it-quick integration * Welcome several new authors to the team, see AUTHORS file * Add LEGAL-NOTICE.md about compliance with California and Colorado laws Signed-off-by: Christophe de Dinechin <christophe@dinechin.org>
Signed-off-by: jcbenoist <61346755+jcbenoist@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See #1662
There is also an optimisation : shuffle = pow(oeps, errs) + eps; outside a loop which does not change nor oeps nor errs. All solver 41 tests passes.