faust icon indicating copy to clipboard operation
faust copied to clipboard

Compile error

Open sletz opened this issue 1 year ago • 1 comments

This code does not compile anymore after https://github.com/grame-cncm/faust/commit/bb1637c72c8827b1ab3cb3b5d8c37d6c935ffb30.

This reduce case :

process = @(octave)
with {
    octave = qLog <: (_>=0)*(1<<(_));
    qLog(x) = ba.tabulate(1, log, 1024, 10, 20000, x).val;
};

returns a different interval value for octave after the commit.

Could be seen with:

process = lowest(quantize), highest(quantize)
with {
    octave = qLog <: (_>=0)*(1<<(_));
    qLog(x) = ba.tabulate(1, log, 1024, 10, 20000, x).val;
};

sletz avatar Jul 27 '24 16:07 sletz