fix the compilation for parameters of type Ints n

This commit is contained in:
Krasimir Angelov
2023-02-10 12:04:21 +01:00
parent 810e529e41
commit be951d9265

View File

@@ -458,7 +458,7 @@ susp i env ki = EvalM $ \gr k mt r -> do
return (mt,tnk:tnks)
bindInt gr k mt r s iv max
| iv < max = do
| iv <= max = do
let v = VInt iv
writeSTRef i (Evaluated v)
res <- case ki v of