Generalization of the inner iterations algorithm.
Add automatic recursive independent set decomposition.
Clean up the naming and the API for inner iterations.
Change-Id: I3d7d6babb9756842d7367e14b7279d2df98fb724
diff --git a/internal/ceres/solver.cc b/internal/ceres/solver.cc
index 5a84cfc..a6c804b 100644
--- a/internal/ceres/solver.cc
+++ b/internal/ceres/solver.cc
@@ -41,6 +41,11 @@
namespace ceres {
+Solver::Options::~Options() {
+ delete ordering;
+ delete inner_iteration_ordering;
+}
+
Solver::~Solver() {}
void Solver::Solve(const Solver::Options& options,