Changeset 3334 in Sophya for trunk/SophyaProg/Tests


Ignore:
Timestamp:
Oct 3, 2007, 3:15:28 PM (18 years ago)
Author:
ansari
Message:

petites corrections suite modifs ds TArray/ (SumX2() -> SumSq() , Reza 02/10/2007

Location:
trunk/SophyaProg/Tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaProg/Tests/arrt.cc

    r2918 r3334  
    173173  esum = esm.Sum();
    174174  eprod = esm.Product();
    175   esumx2 = esm.SumX2();
     175  esumx2 = esm.SumSq();
    176176
    177177  if (prtlev > 0)
    178178    cout << " Min= " << emin << "  Max= " << emax
    179          << " Sum= " << esum << " Prod=" << eprod << " SumX2=" << esumx2 << endl;
     179         << " Sum= " << esum << " Prod=" << eprod << " SumSq=" << esumx2 << endl;
    180180
    181181  cout << "\n :::::: Testing Matrix operations :::::: " << endl;
  • trunk/SophyaProg/Tests/tmxv.cc

    r2647 r3334  
    5555  }
    5656  catch (PThrowable exc) {
    57     cerr << " tmxv catched Exception (lpk.cc) " << exc.Msg() << endl;
     57    cerr << " tmxv catched Exception (tmxv.cc) " << exc.Msg() << endl;
    5858    rc = 77;
    5959  } 
    6060  catch (...) {
    61     cerr << " tmxv catched unknown (...) exception (lpk.cc) " << endl;
     61    cerr << " tmxv catched unknown (...) exception (tmxv.cc) " << endl;
    6262    rc = 78;
    6363  }
    6464 
    65   PrtTim(" End of lpk LinAlg/Lapack test ");
     65  PrtTim(" End of tmxv matrix inversion test ");
    6666  cout << " ---------------  END of Programme -------- (Rc= "
    6767       << rc << ") --- " << endl;
Note: See TracChangeset for help on using the changeset viewer.