Michael Jacob

Results 4 issues of Michael Jacob

### Zig Version 0.11.0-dev.1898+36d47dd19 ### Steps to Reproduce and Observed Behavior test "parseFloat" { try std.testing.expectEqual(std.fmt.parseFloat(f64, "0xff"), 255.0); try std.testing.expectError(std.fmt.ParseFloatError.InvalidCharacter, std.fmt.parseFloat(f64, "0x")); } Test [1/1] test.simple test... expected error.InvalidCharacter, found...

bug
standard library

xqrs_detect() in wfd.processing.qrs takes a boolean learn parameter but it is unused. Should be passed on to xqrs.detect()

In find_local_peaks() in wfdb.processing.peaks, the last of three loops will not be execute because the condition i < len(sig) is already false when the second loop exits: [first loop omitted]...