mirror of
https://github.com/Z3Prover/z3
synced 2025-08-27 21:48:56 +00:00
Remove size argument in OCaml's Z3.mk_re_intersect
(#5383)
* Remove size argument in OCaml's `Z3.mk_re_intersect` Passing the size as argument is unnecessary in OCaml, and that argument is abridged in all similar `Seq` functions. This applies the same pattern. * Enable the ocaml documentation in Seq. Turn all the comments into proper documentation comments.
This commit is contained in:
parent
bdcfba1324
commit
0c7625cd26
2 changed files with 39 additions and 39 deletions
|
@ -1272,7 +1272,7 @@ struct
|
|||
let mk_re_concat ctx args = Z3native.mk_re_concat ctx (List.length args) args
|
||||
let mk_re_range = Z3native.mk_re_range
|
||||
let mk_re_loop = Z3native.mk_re_loop
|
||||
let mk_re_intersect = Z3native.mk_re_intersect
|
||||
let mk_re_intersect ctx args = Z3native.mk_re_intersect ctx (List.length args) args
|
||||
let mk_re_complement = Z3native.mk_re_complement
|
||||
let mk_re_empty = Z3native.mk_re_empty
|
||||
let mk_re_full = Z3native.mk_re_full
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue