stray comment

This commit is contained in:
Matthew Kennedy 2023-03-07 00:43:41 -08:00
parent 8e65946de9
commit 163cee4279
1 changed files with 0 additions and 1 deletions

View File

@ -95,7 +95,6 @@ float tanf_taylor(float x) {
}
expected<float> NewtonsMethodSolver::solve(float x0, float deltaX, size_t maxIteration) {
// the same method works for R (if C is known) or C (if R is known)
float Xcur, Xnext;
Xnext = x0;