From 2d8c8a09e3038681b980d61c0c90f3378c7909f1 Mon Sep 17 00:00:00 2001 From: Jonathan Rampersad Date: Mon, 27 Oct 2025 21:00:30 +0000 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a128c16..01352a3 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ A Python library for representing, manipulating, and solving polynomial equation ## Key Features -* **Create and Manipulate Polynomials**: Easily define polynomials of any degree using integer or float coefficients, and perform arithmetic operations like addition, subtraction, multiplication, and scaling. -* **Genetic Algorithm Solver**: Find approximate real roots for complex polynomials where analytical solutions are difficult or impossible. +* **Numerically Stable Solver**: Makes complex calculations **practical**. Leverage your GPU to power the robust genetic algorithm, solving high-degree polynomials accurately in a reasonable timeframe. * **CUDA Accelerated**: Leverage NVIDIA GPUs for a massive performance boost when finding roots in large solution spaces. +* **Create and Manipulate Polynomials**: Easily define polynomials of any degree using integer or float coefficients, and perform arithmetic operations like addition, subtraction, multiplication, and scaling. * **Analytical Solvers**: Includes standard, exact solvers for simple cases (e.g., `quadratic_solve`). * **Simple API**: Designed to be intuitive and easy to integrate into any project.