Commit Graph
59 Commits
Author SHA1 Message Date
jono 7547bfd45e Added Technical Paper for Complex Updates 2026-01-31 10:50:44 -04:00
jono 96f2ed409e Update README.md 2026-01-29 17:50:10 -04:00
jono 90b911d5a5 fix: Implemented Relative Mutation 2026-01-29 17:35:14 -04:00
jono b87ea5011c Improved deprecation warning for min/max_range 2025-12-06 08:52:44 -04:00
jono 117e43a984 Standardize root outputs as numpy arrays. 2025-12-06 08:49:35 -04:00
jono b415df2983 feat: add complex root finding and dynamic CUDA shared memory optimization
Major update extending the library to solve for complex roots and optimizing GPU performance using Shared Memory.

Complex Number Support:
- Implemented `_solve_complex_cuda` and `_solve_complex_numpy` to find roots in the complex plane.
- Added specialized CUDA kernels (`_FITNESS_KERNEL_COMPLEX`, `_FITNESS_KERNEL_COMPLEX_DYNAMIC`) handling complex arithmetic (multiplication/addition) directly on the GPU.
- Updated `Function` class and `set_coeffs` to handle `np.complex128` data types.
- Updated `quadratic_solve` to return complex roots using `cmath`.

CUDA Performance & Optimization:
- Implemented Dynamic Shared Memory kernels (`extern __shared__`) to cache polynomial coefficients on the GPU block, significantly reducing global memory latency.
- Added intelligent fallback logic: The solver checks `MaxSharedMemoryPerBlock`. If the polynomial is too large for Shared Memory, it falls back to the standard Global Memory kernel to prevent crashes.
- Split complex coefficients into separate Real and Imaginary arrays for CUDA kernel efficiency.

Polynomial Logic:
- Added `_strip_leading_zeros` helper to ensure polynomial degree is correctly maintained after arithmetic operations (e.g., preventing `0x^2 + x` from being treated as degree 2).
- Updated `__init__` to allow direct coefficient injection.

GA Algorithm:
- Updated crossover logic to support 2D search space (Real + Imaginary) for complex solutions.
- Refined fitness function to explicitly handle `isinf`/`isnan` for numerical stability.
2025-12-05 13:47:29 -04:00
jono 602269889b Got rid of min/max_range to exclusively use Cauchy's Bound. Updated quadratic solve to handle complex roots. 2025-11-24 15:05:13 -04:00
jono dca1d66346 Uploaded Technical Paper
Publish Python Package to PyPI / deploy (push) Has been cancelled
2025-11-24 19:02:33 +00:00
jono 1aa2e8875a Made the default values of min/max_range 0.0
Run Python Tests / test (3.10) (pull_request) Successful in 14s
Run Python Tests / test (3.12) (pull_request) Successful in 26s
Run Python Tests / test (3.8) (pull_request) Successful in 14s
Publish Python Package to PyPI / deploy (push) Successful in 12s
2025-11-05 18:58:20 -04:00
jono 94723dcb88 feat(Function): Add __eq__ method and improve quadratic_solve stability
Run Python Tests / test (3.10) (pull_request) Successful in 13s
Run Python Tests / test (3.12) (pull_request) Successful in 12s
Run Python Tests / test (3.8) (pull_request) Successful in 14s
Publish Python Package to PyPI / deploy (push) Successful in 13s
Implements two features for the Function class:

1.  Adds the `__eq__` operator (`==`) to allow for logical comparison of two Function objects based on their coefficients.
2.  Replaces the standard quadratic formula with a numerically stable version in `quadratic_solve` to prevent "catastrophic cancellation" errors and improve accuracy.
2025-11-02 12:50:48 -04:00
jono f4c5d245e4 fix(ga): Derivative of a constant now returns 0 instead of a throwing an error
Run Python Tests / test (3.12) (pull_request) Successful in 24s
Run Python Tests / test (3.10) (pull_request) Successful in 30s
Run Python Tests / test (3.8) (pull_request) Successful in 22s
Publish Python Package to PyPI / deploy (push) Successful in 20s
2025-10-31 11:17:29 -04:00
jono b7ea6c2e23 Added root_precision warning 2025-10-31 11:08:02 -04:00
jono 9d967210fa feat(ga): Overhaul GA for multi-root robustness and CPU performance
Run Python Tests / test (3.12) (pull_request) Successful in 34s
Run Python Tests / test (3.8) (pull_request) Successful in 35s
Run Python Tests / test (3.10) (pull_request) Successful in 3m8s
Publish Python Package to PyPI / deploy (push) Successful in 12s
### 🚀 Performance (CPU)
* Replaces `np.polyval` with a parallel Numba JIT function (`_calculate_ranks_numba`).
* Replaces $O(N \log N)$ `np.argsort` with $O(N)$ `np.argpartition` in the GA loop.
* Adds `numba` as a core dependency.

### 🧠 Robustness (Algorithm)
* Implements Blend Crossover (BLX-$\alpha$) for better, extrapolative exploration.
* Uses a hybrid selection model (top X% for crossover, 100% for mutation) to preserve root niches.
* Adds `selection_percentile` and `blend_alpha` to `GA_Options` for tuning.
2025-10-30 11:31:00 -04:00
jonoandjono 1318006959 v0.5.1-dev (#20)
Publish Python Package to PyPI / deploy (push) Successful in 56s
Reviewed-on: #20
Co-authored-by: Jonathan Rampersad <[email protected]>
Co-committed-by: Jonathan Rampersad <[email protected]>
2025-10-28 15:42:34 +00:00
jono 2d8c8a09e3 Update README.md
Publish Python Package to PyPI / deploy (push) Has been cancelled
2025-10-27 21:00:30 +00:00
jonoandjono 4e46c11f83 feat(ga): Implement quality filtering and precision-based clustering (#19)
Publish Python Package to PyPI / deploy (push) Successful in 12s
The previous GA logic was returning the "top N" solutions, which led to test failures when the algorithm correctly converged on only one of all possible roots (e.g., returning 1000 variations of -1.0).

This commit fixes the root-finding logic to correctly identify and return *all* unique, high-quality roots:

1.  **feat(api):** Adds `root_precision` to `GA_Options`. This new parameter (default: 5) allows the user to control the number of decimal places for clustering unique roots.

2.  **fix(ga):** Replaces the flawed "top N" logic in both `_solve_x_numpy` and `_solve_x_cuda`. The new process is:
    * Dynamically sets a `quality_threshold` based on the user's `root_precision` (e.g., `precision=5` requires a rank > `1e6`).
    * Filters the *entire* final population for all solutions that meet this quality threshold.
    * Rounds these high-quality solutions to `root_precision`.
    * Returns only the `np.unique()` results.

This ensures the solver returns all distinct roots that meet the accuracy requirements, rather than just the top N variations of a single root.

Reviewed-on: #19
Co-authored-by: Jonathan Rampersad <[email protected]>
Co-committed-by: Jonathan Rampersad <[email protected]>
2025-10-27 19:26:50 +00:00
jono 962eab5af7 feat(ga): Implement Cauchy's bound for automatic root range detection
Run Python Tests / test (3.12) (pull_request) Successful in 10s
Run Python Tests / test (3.10) (pull_request) Successful in 17s
Run Python Tests / test (3.8) (pull_request) Successful in 10s
Publish Python Package to PyPI / deploy (push) Successful in 12s
The previous benchmark results showed that the GA was failing to find accurate roots (high MAE) for many polynomials. This was because the fixed default search range ([-100, 100]) was often incorrect, and the GA was searching in the wrong place.

This commit introduces a significantly more robust solution:

1.  Adds a `_get_cauchy_bound` helper function to mathematically calculate a search radius that is guaranteed to contain all real roots.

2.  Updates `_solve_x_numpy` and `_solve_x_cuda` with new logic:
    * If the user provides a *custom* `min_range` or `max_range`, we treat them as an expert and use their specified range.
    * If the user is using the *default* range, we silently discard it and use the smarter, automatically-calculated Cauchy bound instead.

This provides the best of both worlds: a powerful, smart default for most users and an "expert override" for those who need to fine-tune the search area.
2025-10-27 14:33:12 -04:00
jono 7c75000637 fix(ga): Suppress divide-by-zero warning in NumPy solver
Publish Python Package to PyPI / deploy (push) Successful in 18s
Run Python Tests / test (3.10) (pull_request) Successful in 17s
Run Python Tests / test (3.8) (pull_request) Successful in 10s
Run Python Tests / test (3.12) (pull_request) Successful in 12s
The `_solve_x_numpy` method was correctly using `np.where(error == 0, ...)` to handle perfect roots. However, NumPy eagerly calculates `1.0 / error` for the entire array before applying the `where` condition, which was causing a `RuntimeWarning: divide by zero` when a perfect root was found.

This warning was harmless but created unnecessary console noise during testing and use.

This commit wraps the `ranks = ...` assignments in a `with np.errstate(divide='ignore'):` block to silence this specific, expected warning. The CUDA kernel is unaffected as its ternary operator already prevents this calculation.
2025-10-27 12:25:54 -04:00
jonoandjono c3b3513e79 feat(ga, api): Implement advanced GA strategy and refactor API for v0.4.0 (#16)
Publish Python Package to PyPI / deploy (push) Successful in 18s
This commit introduces a major enhancement to the genetic algorithm's convergence logic and refactors key parts of the API for better clarity and usability.

- **feat(ga):** Re-implements the GA solver (CPU & CUDA) to use a more robust strategy based on Elitism, Crossover, and Mutation. This replaces the previous, less efficient model and is designed to significantly improve accuracy and convergence speed.

- **feat(api):** Updates `GA_Options` to expose the new GA strategy parameters:
    - Renames `mutation_percentage` to `mutation_strength` for clarity.
    - Adds `elite_ratio`, `crossover_ratio`, and `mutation_ratio`.
    - Includes a `__post_init__` validator to ensure ratios are valid.

- **refactor(api):** Moves `quadratic_solve` from a standalone function to a method of the `Function` class (`f1.quadratic_solve()`). This provides a cleaner, more object-oriented API.

- **docs:** Updates the README, `GA_Options` doc page, and `quadratic_solve` doc page to reflect all API changes, new parameters, and updated usage examples.

- **chore:** Bumps version to 0.4.0.

Reviewed-on: #16
Co-authored-by: Jonathan Rampersad <[email protected]>
Co-committed-by: Jonathan Rampersad <[email protected]>
2025-10-27 14:20:56 +00:00
jono 0536003dce Update README.md
Publish Python Package to PyPI / deploy (push) Has been cancelled
2025-06-30 15:39:47 +00:00
jono bb89149930 Update .all-contributorsrc
Publish Python Package to PyPI / deploy (push) Has been cancelled
2025-06-30 15:38:24 +00:00
jono 6596c2df99 typo fix
Publish Python Package to PyPI / deploy (push) Successful in 14s
2025-06-19 18:00:29 +00:00
jono 24337cea48 Updated Project urls
Run Python Tests / test (3.12) (pull_request) Successful in 10s
Run Python Tests / test (3.10) (pull_request) Successful in 14s
Run Python Tests / test (3.8) (pull_request) Successful in 10s
Publish Python Package to PyPI / deploy (push) Failing after 14s
Signed-off-by: Jonathan Rampersad <[email protected]>
2025-06-19 17:58:50 +00:00
jono ee18cc9e59 Added Branding (#14)
Publish Python Package to PyPI / deploy (push) Successful in 19s
Reviewed-on: #14
2025-06-19 17:54:07 +00:00
jonoandjono ce464cffd4 FEAT: Added support for float coefficients (#13)
Publish Python Package to PyPI / deploy (push) Successful in 13s
Reviewed-on: #13
Co-authored-by: Jonathan Rampersad <[email protected]>
Co-committed-by: Jonathan Rampersad <[email protected]>
2025-06-18 13:20:18 +00:00
jono c94d08498d Edited README to advise of function * function multiplication being available (#12)
Publish Python Package to PyPI / deploy (push) Successful in 17s
Reviewed-on: #12
2025-06-18 12:55:37 +00:00
jono 3aad9efb61 Merge pull request 'readme-patch' (#11) from readme-patch into main
Publish Python Package to PyPI / deploy (push) Successful in 17s
Reviewed-on: #11
2025-06-17 18:37:50 +00:00
jono 32d6cfeeea Update pyproject.toml
Run Python Tests / test (3.12) (pull_request) Successful in 9s
Run Python Tests / test (3.10) (pull_request) Successful in 13s
Run Python Tests / test (3.8) (pull_request) Successful in 9s
2025-06-17 18:37:33 +00:00
jono 8d6fe7aca0 Update README.md
Signed-off-by: Jonathan Rampersad <[email protected]>
2025-06-17 18:37:17 +00:00
jono 7927845f17 Merge pull request 'v0.2.0' (#10) from v0.2.0-dev into main
Publish Python Package to PyPI / deploy (push) Successful in 13s
Reviewed-on: #10
2025-06-17 18:36:25 +00:00
jono ac591f49ec docs: Added documentation for nth_derivative function
Run Python Tests / test (3.12) (pull_request) Successful in 10s
Run Python Tests / test (3.10) (pull_request) Successful in 13s
Run Python Tests / test (3.8) (pull_request) Successful in 10s
2025-06-17 14:35:03 -04:00
jono ec97aefee1 feat: Added nth derivative showcase in __main__ 2025-06-17 14:34:16 -04:00
jono d27497488f fix: differential in README.md renamed to derivative 2025-06-17 14:30:40 -04:00
jono 41daf4f7e0 Remove CONTRIBUTORS.md 2025-06-17 14:30:11 -04:00
jono 36f51ca67e fix: Typo in test
Run Python Tests / test (3.12) (pull_request) Successful in 11s
Run Python Tests / test (3.10) (pull_request) Successful in 13s
Run Python Tests / test (3.8) (pull_request) Successful in 10s
2025-06-17 14:27:53 -04:00
jono 25f20a4db2 v0.2.0
Run Python Tests / test (3.12) (pull_request) Failing after 11s
Run Python Tests / test (3.10) (pull_request) Failing after 15s
Run Python Tests / test (3.8) (pull_request) Failing after 11s
2025-06-17 14:26:45 -04:00
jono ee414ea0dc feat: Added function * function multiplication 2025-06-17 14:26:26 -04:00
jono 8656b558b4 feat: Added alternative degree property to return largest_exponent 2025-06-17 14:12:19 -04:00
jono 30a5189928 fix: multiplying by 0 returns a function object representing 0 2025-06-17 14:08:36 -04:00
jono 3d2c724ad4 feat: Add nth derivative function and fix: typo derivitive->derivative 2025-06-17 14:06:45 -04:00
jono a761efe28e fix: Renamed differential function to derivitive 2025-06-17 13:45:51 -04:00
GitHub Bridge Bot 1165c03955 Apply patch from GitHub PR #10 by jono-rams
Run Python Tests / test (3.12) (pull_request) Successful in 9s
Run Python Tests / test (3.10) (pull_request) Successful in 14s
Run Python Tests / test (3.8) (pull_request) Successful in 9s
Publish Python Package to PyPI / deploy (push) Has been cancelled
2025-06-17 16:13:43 +00:00
GitHub Bridge Bot 0a36e955a1 Apply patch from GitHub PR #9 by allcontributors[bot]
Run Python Tests / test (3.10) (pull_request) Successful in 10s
Run Python Tests / test (3.12) (pull_request) Successful in 12s
Run Python Tests / test (3.8) (pull_request) Successful in 9s
Publish Python Package to PyPI / deploy (push) Has been cancelled
2025-06-17 13:59:47 +00:00
jono c896ecaff8 Update .all-contributorsrc
Run Python Tests / test (3.10) (pull_request) Successful in 10s
Run Python Tests / test (3.12) (pull_request) Successful in 12s
Publish Python Package to PyPI / deploy (push) Has been cancelled
Run Python Tests / test (3.8) (pull_request) Successful in 9s
2025-06-17 13:57:37 +00:00
jono b7073287e5 Update README.md 2025-06-17 13:53:34 +00:00
9c47db4e6a [GitHub PR #7 by jono-rams] All contributors/add jono rams (#6)
Publish Python Package to PyPI / deploy (push) Successful in 13s
**Mirrored from GitHub PR `#7` by `jono-rams`**

Original PR: https://github.com/jono-rams/PolySolve/pull/7

---

None

Co-authored-by: GitHub Bridge Bot <[email protected]>
Reviewed-on: #6
Co-authored-by: gitea-bot <[email protected]>
Co-committed-by: gitea-bot <[email protected]>
2025-06-17 13:48:34 +00:00
jono 97e4259bfa Merge pull request '[GitHub PR #6 by allcontributors[bot]] docs: add jono-rams as a contributor for code, doc, and infra' (#5) from github-pr-6 into main
Publish Python Package to PyPI / deploy (push) Has been cancelled
Reviewed-on: #5
2025-06-17 13:29:43 +00:00
GitHub Bridge Bot a4b947ee07 Apply patch from GitHub PR #6 by allcontributors[bot]
Run Python Tests / test (3.10) (pull_request) Successful in 9s
Run Python Tests / test (3.12) (pull_request) Successful in 12s
Run Python Tests / test (3.8) (pull_request) Successful in 9s
2025-06-17 13:28:43 +00:00
jono 8e8462d9d8 Add contribution badges
Run Python Tests / test (3.10) (pull_request) Successful in 9s
Run Python Tests / test (3.8) (pull_request) Successful in 10s
Publish Python Package to PyPI / deploy (push) Has been cancelled
Run Python Tests / test (3.12) (pull_request) Successful in 12s
2025-06-17 09:23:26 -04:00
jono a4d9f657fe Merge pull request '[GitHub PR #4] Update Contributing and pyproject for GitHub' (#3) from github-pr-4 into main
Publish Python Package to PyPI / deploy (push) Successful in 20s
Reviewed-on: #3
2025-06-17 13:06:56 +00:00