Skip to content
Snippets Groups Projects
Commit 2b92d568 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[wp] absurd on type and init

parent 84266066
No related branches found
No related tags found
Loading
...@@ -64,13 +64,13 @@ class absurd = ...@@ -64,13 +64,13 @@ class absurd =
| Clause(Step s) -> | Clause(Step s) ->
begin begin
match s.condition with match s.condition with
| Have p | When p | Core p -> | Have p | When p | Core p | Init p | Type p ->
let absurd seq = let absurd seq =
let emp = Conditions.(step (Have F.p_true)) in let emp = Conditions.(step (Have F.p_true)) in
let seq = Conditions.replace ~at:s.id emp seq in let seq = Conditions.replace ~at:s.id emp seq in
[ "Absurd" , (fst seq , F.p_not p) ] [ "Absurd" , (fst seq , F.p_not p) ]
in Applicable absurd in Applicable absurd
| Init _ | Type _ | Branch _ | Either _ | State _ -> | Branch _ | Either _ | State _ ->
Not_applicable Not_applicable
end end
end end
...@@ -90,7 +90,7 @@ class contrapose = ...@@ -90,7 +90,7 @@ class contrapose =
| Clause(Step s) -> | Clause(Step s) ->
begin begin
match s.condition with match s.condition with
| Have p | When p | Core p -> | Have p | When p | Core p | Init p | Type p ->
let contrapose (hs,goal) = let contrapose (hs,goal) =
let descr = "Contrapose" in let descr = "Contrapose" in
let goal = F.p_not goal in let goal = F.p_not goal in
...@@ -98,7 +98,7 @@ class contrapose = ...@@ -98,7 +98,7 @@ class contrapose =
let hs = Conditions.replace ~at:s.id goal (hs , F.p_false) in let hs = Conditions.replace ~at:s.id goal (hs , F.p_false) in
[ "Contrapose" , (fst hs , F.p_not p) ] [ "Contrapose" , (fst hs , F.p_not p) ]
in Applicable contrapose in Applicable contrapose
| Init _ | Type _ | Branch _ | Either _ | State _ -> | Branch _ | Either _ | State _ ->
Not_applicable Not_applicable
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment