v0.5.1-dev (#20)
All checks were successful
Publish Python Package to PyPI / deploy (push) Successful in 56s

Reviewed-on: #20
Co-authored-by: Jonathan Rampersad <rampersad.jonathan@gmail.com>
Co-committed-by: Jonathan Rampersad <rampersad.jonathan@gmail.com>
This commit was merged in pull request #20.
This commit is contained in:
2025-10-28 15:42:34 +00:00
committed by Jonathan Rampersad
parent 2d8c8a09e3
commit 1318006959
2 changed files with 2 additions and 2 deletions

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="jonathan@jono-rams.work" },
]

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