OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:roots_real
(Results
1 - 3
of
3
) sorted by null
/external/ceres-solver/internal/ceres/
polynomial.cc
303
Vector
roots_real
;
local
304
if (!FindPolynomialRoots(derivative, &
roots_real
, NULL)) {
312
for (int i = 0; i <
roots_real
.rows(); ++i) {
313
const double root =
roots_real
(i);
dogleg_strategy.cc
481
Vector
roots_real
;
local
482
if (!FindPolynomialRoots(polynomial, &
roots_real
, NULL)) {
494
for (int i = 0; i <
roots_real
.size(); ++i) {
495
const Vector2d x_i = ComputeSubspaceStepFromRoot(
roots_real
(i));
polynomial_test.cc
85
// Run a test with the polynomial defined by the N real roots in
roots_real
.
Completed in 858 milliseconds