Changeset 3253 in Sophya for trunk/SophyaProg/Tests/zthr.cc


Ignore:
Timestamp:
May 23, 2007, 12:49:50 PM (18 years ago)
Author:
ansari
Message:

correction erreur (remplacement mult. matriciel par addition elt/elt) ds zthr.cc (arr) , Reza 23/05/2007

File:
1 edited

Legend:

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

    r3186 r3253  
    5656}
    5757
    58 // --- fonction de test simple avec calcul matriciel
     58// --- fonction de test simple avec calcul matriciel (produit de 2 matrices double)
    5959void mtx_funzt(void *arg)
    6060{
     
    7474  return;
    7575}
    76 // --- fonction de test simple avec calcul matriciel
     76// --- fonction de test simple avec calcul sur tableaux
    7777void arr_funzt(void *arg)
    7878{
     
    8787  sprintf(buff, "arr-funzt(ThId=%d) EndOfInit", za->thid);
    8888  PrtTim(buff);
    89   ares = 4*a1*12*a2;
     89  //  ares = 4*a1*12*a2;  correction le 23/05/2007 - * (prod.mtx par erreur)
     90  ares = (4*a1)+(12*a2);
    9091  sprintf(buff, "arr-funzt(ThId=%d) EndOfOper", za->thid);
    9192  PrtTim(buff);
Note: See TracChangeset for help on using the changeset viewer.