Skip to content
Snippets Groups Projects
Commit b3921674 authored by Julien Signoles's avatar Julien Signoles
Browse files

[e-acsl:interval] lint

parent 7d4304e8
No related branches found
No related tags found
No related merge requests found
...@@ -380,12 +380,12 @@ let interv_of_extended_quantifier lambda lb up name = ...@@ -380,12 +380,12 @@ let interv_of_extended_quantifier lambda lb up name =
let lower_bound = match min_lambda with let lower_bound = match min_lambda with
| None -> None | None -> None
| Some z -> Some (Z.mul z min_iteration_number) | Some z -> Some (Z.mul z min_iteration_number)
in in
let upper_bound = match max_lambda, max_iteration_number with let upper_bound = match max_lambda, max_iteration_number with
| None, _ | _, None -> None | None, _ | _, None -> None
| Some z, Some n -> Some (Z.mul z n) | Some z, Some n -> Some (Z.mul z n)
in in
Ival (Ival.inject_range lower_bound upper_bound) Ival (Ival.inject_range lower_bound upper_bound)
with Abstract_interp.Error_Bottom -> with Abstract_interp.Error_Bottom ->
bottom) bottom)
| _, _, _, "\\product" -> Error.not_yet "product" | _, _, _, "\\product" -> Error.not_yet "product"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment