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]>
This commit was merged in pull request #20.
This commit is contained in:
2025-10-28 15:42:34 +00:00
committed by jono
parent 2d8c8a09e3
commit 1318006959
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
# --- Core Metadata ---
name = "polysolve"
version = "0.5.0"
version = "0.5.1"
authors = [
{ name="Jonathan Rampersad", email="[email protected]" },
]
+1 -1
View File
@@ -713,7 +713,7 @@ if __name__ == '__main__':
# --- Root Finding ---
# 1. Analytical solution for quadratic
roots_analytic = quadratic_solve(f1)
roots_analytic = f1.quadratic_solve()
print(f"Analytic roots of f1: {roots_analytic}") # Expected: -1, 2.5
# 2. Genetic algorithm solution