comparison demo/tcSum.ur @ 1093:8d3aa6c7cee0

Make summary unification more conservative; infer implicit arguments after applications
author Adam Chlipala <adamc@hcoop.net>
date Sat, 26 Dec 2009 11:56:40 -0500
parents 669ac5e9a69e
children
comparison
equal deleted inserted replaced
1092:6f4b05fc4361 1093:8d3aa6c7cee0
1 fun sum [t] (_ : num t) [fs ::: {Unit}] (fl : folder fs) (x : $(mapU t fs)) = 1 fun sum [t] (_ : num t) [fs ::: {Unit}] (fl : folder fs) (x : $(mapU t fs)) =
2 foldUR [t] [fn _ => t] 2 @foldUR [t] [fn _ => t]
3 (fn [nm :: Name] [rest :: {Unit}] [[nm] ~ rest] n acc => n + acc) 3 (fn [nm :: Name] [rest :: {Unit}] [[nm] ~ rest] n acc => n + acc)
4 zero [fs] fl x 4 zero fl x
5 5
6 fun main () = return <xml><body> 6 fun main () = return <xml><body>
7 {[sum {A = 0, B = 1}]}<br/> 7 {[sum {A = 0, B = 1}]}<br/>
8 {[sum {C = 2.1, D = 3.2, E = 4.3}]} 8 {[sum {C = 2.1, D = 3.2, E = 4.3}]}
9 </body></xml> 9 </body></xml>