From: Paul Brossier Date: Tue, 16 Feb 2016 20:59:00 +0000 (+0100) Subject: src/fmat.c: comment out asserts X-Git-Tag: 0.4.4~300^2~329 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=240517e5a4edab0e8934b2db3b45db5590f04258;p=aubio.git src/fmat.c: comment out asserts --- diff --git a/src/fmat.c b/src/fmat.c index 8dd3bdc8..0187928f 100644 --- a/src/fmat.c +++ b/src/fmat.c @@ -156,8 +156,10 @@ void fmat_copy(fmat_t *s, fmat_t *t) { void fmat_vecmul(fmat_t *s, fvec_t *scale, fvec_t *output) { uint_t k; +#if 0 assert(s->height == output->length); assert(s->length == scale->length); +#endif #if !defined(HAVE_ACCELERATE) && !defined(HAVE_ATLAS) uint_t j; fvec_zeros(output);