]> matita.cs.unibo.it Git - fireball-separation.git/commitdiff
Fix: max_arity_tms was using wrong comparison
authoracondolu <andrea.condoluci@unibo.it>
Thu, 13 Jul 2017 15:34:12 +0000 (17:34 +0200)
committeracondolu <andrea.condoluci@unibo.it>
Mon, 28 May 2018 09:08:50 +0000 (11:08 +0200)
(cherry picked from commit a104858f2dd754e5d086c3884823f3f39d716691)

ocaml/num.ml

index 5f97abbca4f7217912637aa1954577ba9e0f6503..95501a4e14cb0878e83196dde9dd4a438cd03683 100644 (file)
@@ -325,7 +325,7 @@ let max_arity_tms n =
   | `Match(u,_,_,bs,args) -> max (max (aux l (u :> nf)) (aux_tms l args)) (aux_tms l (List.map snd !bs))
   | `N _ -> None
  and aux_tms l =
-  List.fold_left (fun acc t -> Pervasives.max acc (aux l t)) None in
+  List.fold_left (fun acc t -> max acc (aux l t)) None in
  fun tms -> aux_tms 0 (tms :> nf list)
 ;;