Hi Bart,

The recent commit 7ee9bcf4459ac833bc adds parallelOp() which looks
obviously wrong:

        parallelOp(op,1) = _;
        parallelOp(op,2) = op;
        parallelOp(op,n) = (parallelOp(n-1),_):op;

the last line should be

        parallelOp(op,n) = (parallelOp(op,n-1),_):op;

although I'd suggest

        parallelOp(op,n) = op(parallelOp(op,n-1));


and... perhaps it should be named reduce() ?

Oleg.



_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to