Commit 1035184a authored by Makayla Shepherd's avatar Makayla Shepherd
Browse files

Added a cout for testing and removed a method that was not used.

parent d0c381d6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -445,6 +445,7 @@ namespace Isis {
  int LeastSquares::SolveSparse() {

    // form "normal equations" matrix by multiplying ATA
    std::cout << p_sparseA.n_rows << ", " << p_sparseA.n_cols << std::endl;
    p_normals = p_sparseA.t()*p_sparseA;

//     //  Test for any columns with all 0's
+0 −1
Original line number Diff line number Diff line
@@ -149,7 +149,6 @@ namespace Isis {
      void Reset ();

      void ResetSparse() { Reset(); }
      bool SparseErrorPropagation();
      std::vector<double> GetEpsilons () const { return p_epsilonsSparse; }
      void SetParameterWeights(const std::vector<double> weights) { p_parameterWeights = weights; }
      void SetNumberOfConstrainedParameters(int n) { p_constrainedParameters = n; }