Commit 7fa0bd92 authored by Ken Edmundson's avatar Ken Edmundson
Browse files

removed output line in SolveSparse method and added history entry

parent d7bf1102
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -444,7 +444,6 @@ 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;

    // Create the right-hand-side column vector 'b'
+2 −1
Original line number Diff line number Diff line
@@ -108,8 +108,9 @@ namespace Isis {
   *                            to reset all solution methods
   *   @history  2010-11-22 Debbie A. Cook - Merged with Ken Edmundson version
   *   @history  2013-12-29 Jeannie Backer - Improved error messages. Fixes #962.
   *   @history  2019-09-05 Makayla Shepherd & Jesse Mapel - Changed sparse solution to use
   *   @history  2018-09-05 Makayla Shepherd & Jesse Mapel - Changed sparse solution to use
   *                            Armadillo library's SuperLU interface instead of GMM.
   *   @history  2018-11-29 Ken Edmundson - Removed output line in SolveSparse method.
   *
   */
  class LeastSquares {