Changeset 13320


Ignore:
Timestamp:
09/11/12 11:30:54 (13 years ago)
Author:
utke
Message:

CHG add in temporary debug output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/Solverx/SolverxSeq.cpp

    r13313 r13320  
    7575#ifdef _HAVE_GSL_
    7676  // the matrix will be modified by LU decomposition. Use gsl_A copy
     77  for (int i=0; i<m*m; ++i)
     78    std::cout << "EDF_fos_forward_for_solverx A["<< i << "]=" << inVal[i] << std::endl;
     79  for (int i=0; i<m; ++i)
     80    std::cout << "EDF_fos_forward_for_solverx b["<< i << "]=" << inVal[i+m*m] << std::endl;
    7781  double* Acopy = xNew<double>(m*m);
    7882  xMemCpy(Acopy,inVal,m*m);
     
    189193        gsl_permutation *p = NULL;
    190194        /*A will be modified by LU decomposition. Use copy*/
     195        for (int i=0; i<n*n; ++i)
     196          std::cout << "SolverxSeq A["<< i << "]=" << A[i] << std::endl;
     197        for (int i=0; i<n; ++i)
     198          std::cout << "SolverxSeq b["<< i << "]=" << B[i] << std::endl;
    191199        double* Acopy = xNew<double>(n*n);
    192200        xMemCpy(Acopy,A,n*n);
Note: See TracChangeset for help on using the changeset viewer.