Fix critical bug in qpms_vecspharm_fill()
Pointer incrementation in wrong cycle, leading to numerically completely wrong results in most cases. At higher level, this seems to have affected only plane wave decompositions. Former-commit-id: 7ebdb8b8f3f645d76e924b86379172d2c6fac8dc
This commit is contained in:
parent
e774b30d0c
commit
9b9338be05
|
@ -376,8 +376,8 @@ qpms_errno_t qpms_vecspharm_fill(csphvec_t *const a1target, csphvec_t *const a2t
|
||||||
p3->phic = 0;
|
p3->phic = 0;
|
||||||
++p3;
|
++p3;
|
||||||
}
|
}
|
||||||
|
++pleg; ++ppi; ++ptau;
|
||||||
}
|
}
|
||||||
++pleg; ++ppi; ++ptau;
|
|
||||||
}
|
}
|
||||||
qpms_pitau_free(pt);
|
qpms_pitau_free(pt);
|
||||||
return QPMS_SUCCESS;
|
return QPMS_SUCCESS;
|
||||||
|
|
Loading…
Reference in New Issue