* disable timing check as it causes too much false negatives on machines under load

This commit is contained in:
florian 2022-12-01 22:56:42 +01:00
parent c5f4a6acd0
commit aff133cac2

View File

@ -128,8 +128,10 @@ type
if (prevTime > 0) and (time / prevTime > 3) then
begin
writeln;
writeln('Bad sorting algorithm behaviour');
writeln('Potentially bad sorting algorithm behaviour');
{ causes too many false negative
halt(1);
}
end;
prevTime := time;
write(', ');