This commit is contained in:
tth 2019-09-11 13:31:10 +02:00
parent 9f42b813e7
commit ee3c2c4cbc
1 changed files with 3 additions and 3 deletions

View File

@ -36,7 +36,7 @@ for (idx=0; idx<nbiter; idx++) {
d->B[idx] = a->B[idx] + b->B[idx];
}
return -1;
return 0;
}
/* ---------------------------------------------------------------- */
/*
@ -63,7 +63,7 @@ for (idx=0; idx<nbiter; idx++) {
d->B[idx] = fabs(a->B[idx] - b->B[idx]);
}
return -1;
return 0;
}
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
@ -91,6 +91,6 @@ for (idx=0; idx<nbiter; idx++) {
d->B[idx] = a->B[idx] * b->B[idx];
}
return -1;
return 0;
}
/* ---------------------------------------------------------------- */