mirror of
https://github.com/Z3Prover/z3
synced 2025-06-17 11:26:17 +00:00
ML API bugfix
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
2a67301c50
commit
4c54b6816a
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ let mk_list ( f : int -> 'a ) ( n : int ) =
|
||||||
if (i >= n) then
|
if (i >= n) then
|
||||||
tail
|
tail
|
||||||
else
|
else
|
||||||
(mk_list' f (i+1) n ((f i) :: tail))
|
(f i) :: (mk_list' f (i+1) n tail)
|
||||||
in
|
in
|
||||||
mk_list' f 0 n []
|
mk_list' f 0 n []
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue