Changeset 3253 in Sophya
- Timestamp:
- May 23, 2007, 12:49:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/Tests/zthr.cc
r3186 r3253 56 56 } 57 57 58 // --- fonction de test simple avec calcul matriciel 58 // --- fonction de test simple avec calcul matriciel (produit de 2 matrices double) 59 59 void mtx_funzt(void *arg) 60 60 { … … 74 74 return; 75 75 } 76 // --- fonction de test simple avec calcul matriciel76 // --- fonction de test simple avec calcul sur tableaux 77 77 void arr_funzt(void *arg) 78 78 { … … 87 87 sprintf(buff, "arr-funzt(ThId=%d) EndOfInit", za->thid); 88 88 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); 90 91 sprintf(buff, "arr-funzt(ThId=%d) EndOfOper", za->thid); 91 92 PrtTim(buff);
Note:
See TracChangeset
for help on using the changeset viewer.