BONNEVALLE Vincent pushed to branch unification at Stefan / Typer
Commits: 8a0ad87e by n3f4s at 2016-07-01T16:06:51+02:00 add test case
- - - - -
2 changed files:
- src/unification.ml - tests/unify_test.ml
Changes:
===================================== src/unification.ml ===================================== --- a/src/unification.ml +++ b/src/unification.ml @@ -357,13 +357,16 @@ and is_same arglist arglist2 =
(** try to unify the SMap part of the case *) and _unify_inner_case l s = + let merge (_, c) res = match res with + | Some (s', c') -> Some (s', c@c') + | None -> None + in let rec _unify_inner_case list_ s = match list_ with | ((key, (_, arglist, lxp)), (key2, (_, arglist2, lxp2)))::tail when key = key2 -> - (if is_same arglist arglist2 then ( match unify lxp lxp2 s with - | Some (s', c) -> (match _unify_inner_case tail s' with - | Some (s_, c_) -> Debug_fun.debug_print "_unify_inner_case" "unification success"; Some (s_, c@c_) - | None -> Debug_fun.debug_print "_unify_inner_case" "unification failed"; None) + (if is_same arglist arglist2 + then ( match unify lxp lxp2 s with + | Some (s', c) -> merge (s', c) (_unify_inner_case tail s') | None -> Debug_fun.debug_print "_unify_inner_case" "unification failed"; None) else None) | [] -> Debug_fun.debug_print "_unify_inner_lxp" "unification success"; Some (s, [])
===================================== tests/unify_test.ml ===================================== --- a/tests/unify_test.ml +++ b/tests/unify_test.ml @@ -95,28 +95,32 @@ let input_int_3 = generate_lexp_from_str str_int_3 let input_case = generate_lexp_from_str str_case let input_case2 = generate_lexp_from_str str_case2 let input_let = generate_lexp_from_str str_let -let input_let2 = generate_lexp_from_str str_let +let input_let2 = generate_lexp_from_str str_let let input_lambda = generate_lexp_from_str str_lambda let input_lambda2 = generate_lexp_from_str str_lambda2 let input_lambda3 = generate_lexp_from_str str_lambda3 +let input_arrow = generate_ltype_from_str str_lambda +let input_arrow2 = generate_ltype_from_str str_lambda2 +let input_arrow3 = generate_ltype_from_str str_lambda3
let generate_testable (_: lexp list) : ((lexp * lexp * result) list) = - (input_induct , input_induct , Equivalent) - ::(input_int_4 , input_int_4 , Equivalent) - ::(input_int_3 , input_int_4 , Nothing) - ::(input_case , input_int_4 , Constraint) - ::(input_case , input_induct , Constraint) - ::(input_case , input_case , Equivalent) - ::(input_case , input_case2 , Nothing)
- ::( Lambda ((Aexplicit), + ( Lambda ((Aexplicit), (Util.dummy_location, "L1"), Var((Util.dummy_location, "z"), 3), Imm (Integer (Util.dummy_location, 3))), Lambda ((Aexplicit), (Util.dummy_location, "L2"), Var((Util.dummy_location, "z"), 4), - Imm (Integer (Util.dummy_location, 3))), Unification ) + Imm (Integer (Util.dummy_location, 3))), Unification ) (* Should unify with index shift *) + + ::(input_induct , input_induct , Equivalent) + ::(input_int_4 , input_int_4 , Equivalent) + ::(input_int_3 , input_int_4 , Nothing) + ::(input_case , input_int_4 , Constraint) + ::(input_case , input_induct , Constraint) + ::(input_case , input_case , Equivalent) + ::(input_case , input_case2 , Nothing)
::(input_let , input_induct , Constraint) ::(input_let , input_int_4 , Constraint) @@ -144,6 +148,19 @@ let generate_testable (_: lexp list) : ((lexp * lexp * result) list) = ::(input_lambda2 , input_lambda3 , Constraint) ::(input_lambda3 , input_lambda3 , Equivalent)
+ ::(input_arrow2 , input_int_4 , Nothing) + ::(input_arrow2 , input_induct , Nothing) + ::(input_arrow2 , input_case , Constraint) + ::(input_arrow2 , input_case2 , Constraint) + ::(input_arrow2 , input_let , Constraint) + ::(input_arrow2 , input_induct , Nothing) + ::(input_arrow2 , input_lambda , Nothing) + ::(input_arrow2 , input_lambda2 , Nothing) + ::(input_arrow2 , input_arrow3 , Constraint) (* It's a constraint because we don't know yet the type *) + ::(input_arrow3 , input_arrow , Constraint) (* of the var inside the arrow *) + ::(input_arrow2 , input_arrow , Equivalent) + ::(input_arrow3 , input_arrow3 , Equivalent) + ::[]
let test_input (lxp1: lexp) (lxp2: lexp) (subst: substitution): unif_res =
View it on GitLab: https://gitlab.com/monnier/typer/commit/8a0ad87e19e240c9d9341baafb845746f8fd...
Afficher les réponses par date