OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindPolynomialRoots
(Results
1 - 4
of
4
) sorted by null
/external/ceres-solver/internal/ceres/
polynomial.h
66
bool
FindPolynomialRoots
(const Vector& polynomial,
polynomial_test.cc
87
//
FindPolynomialRoots
. If use_imaginary is false, NULL is passed as the
88
// imaginary argument to
FindPolynomialRoots
.
102
bool success =
FindPolynomialRoots
(poly, real_ptr, imaginary_ptr);
124
bool success =
FindPolynomialRoots
(poly, &real, &imag);
133
bool success =
FindPolynomialRoots
(poly, &real, &imag);
176
bool success =
FindPolynomialRoots
(poly, &real, &imag);
polynomial.cc
124
bool
FindPolynomialRoots
(const Vector& polynomial_in,
128
LOG(ERROR) << "Invalid polynomial of size 0 passed to
FindPolynomialRoots
";
138
<< "polynomial in
FindPolynomialRoots
";
176
<< "
FindPolynomialRoots
. Real parts of the roots will not "
236
if (!
FindPolynomialRoots
(derivative, &roots_real, NULL)) {
dogleg_strategy.cc
478
if (!
FindPolynomialRoots
(polynomial, &roots_real, NULL)) {
Completed in 187 milliseconds