Changeset 3334 in Sophya
- Timestamp:
- Oct 3, 2007, 3:15:28 PM (18 years ago)
- Location:
- trunk/SophyaProg/Tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/Tests/arrt.cc
r2918 r3334 173 173 esum = esm.Sum(); 174 174 eprod = esm.Product(); 175 esumx2 = esm.Sum X2();175 esumx2 = esm.SumSq(); 176 176 177 177 if (prtlev > 0) 178 178 cout << " Min= " << emin << " Max= " << emax 179 << " Sum= " << esum << " Prod=" << eprod << " Sum X2=" << esumx2 << endl;179 << " Sum= " << esum << " Prod=" << eprod << " SumSq=" << esumx2 << endl; 180 180 181 181 cout << "\n :::::: Testing Matrix operations :::::: " << endl; -
trunk/SophyaProg/Tests/tmxv.cc
r2647 r3334 55 55 } 56 56 catch (PThrowable exc) { 57 cerr << " tmxv catched Exception ( lpk.cc) " << exc.Msg() << endl;57 cerr << " tmxv catched Exception (tmxv.cc) " << exc.Msg() << endl; 58 58 rc = 77; 59 59 } 60 60 catch (...) { 61 cerr << " tmxv catched unknown (...) exception ( lpk.cc) " << endl;61 cerr << " tmxv catched unknown (...) exception (tmxv.cc) " << endl; 62 62 rc = 78; 63 63 } 64 64 65 PrtTim(" End of lpk LinAlg/Lapacktest ");65 PrtTim(" End of tmxv matrix inversion test "); 66 66 cout << " --------------- END of Programme -------- (Rc= " 67 67 << rc << ") --- " << endl;
Note:
See TracChangeset
for help on using the changeset viewer.