Changeset 21569
- Timestamp:
- 02/21/17 17:43:58 (8 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/adjoinablempi/install.sh
r17280 r21569 6 6 7 7 #Mercurial cloning: 8 hg clone http://mercurial.mcs.anl.gov//ad/AdjoinableMPI src8 hg clone -r 268 http://mercurial.mcs.anl.gov//ad/AdjoinableMPI src 9 9 10 10 #Configure adjoinablempi -
issm/trunk-jpl/src/c/solutionsequences/solutionsequence_linear.cpp
r21510 r21569 47 47 nF=pf->Norm(NORM_TWO); 48 48 solver_residue=nKUF/nF; 49 if(isnan(solver_residue_threshold) == false && solver_residue>solver_residue_threshold)_error_(" solver residue too high!: norm(KU-F)/norm(F)=" << solver_residue << "\n"); 49 50 #ifdef _HAVE_ADOLC_ 51 if(!isnan(solver_residue_threshold.getValue()) && solver_residue>solver_residue_threshold)_error_(" solver residue too high!: norm(KU-F)/norm(F)=" << solver_residue << "\n"); 52 #else 53 if(!isnan(solver_residue_threshold) && solver_residue>solver_residue_threshold)_error_(" solver residue too high!: norm(KU-F)/norm(F)=" << solver_residue << "\n"); 54 #endif 55 50 56 51 57 //clean up
Note:
See TracChangeset
for help on using the changeset viewer.