ordering -> linear_solver_ordering.

Change-Id: If4af72da90725db2a2d4f397f4cb671c2e863a98
This commit is contained in:
Sameer Agarwal
2012-10-06 23:10:51 -07:00
parent c1ffad6009
commit 68b32a941c
8 changed files with 69 additions and 61 deletions
+2 -2
View File
@@ -96,7 +96,7 @@ class Solver {
#else
use_block_amd = true;
#endif
ordering = NULL;
linear_solver_ordering = NULL;
use_inner_iterations = false;
inner_iteration_ordering = NULL;
linear_solver_min_num_iterations = 1;
@@ -300,7 +300,7 @@ class Solver {
//
// Once assigned, Solver::Options owns this pointer and will
// deallocate the memory when destroyed.
ParameterBlockOrdering* ordering;
ParameterBlockOrdering* linear_solver_ordering;
// By virtue of the modeling layer in Ceres being block oriented,
// all the matrices used by Ceres are also block oriented. When