Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/find_polynomial_roots_jenkins_traub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ class JenkinsTraubSolver {
// nearly equal since the root pairs are complex conjugates. This tolerance
// measures how much the real values may diverge before consider the quadratic
// shift to be failed.
static const double kRootPairTolerance = 0.01;
const double kRootPairTolerance = 0.01;
};

bool JenkinsTraubSolver::ExtractRoots() {
Expand Down