aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/interface/blast.ml2
-rw-r--r--contrib/xml/proof2aproof.ml4
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/interface/blast.ml b/contrib/interface/blast.ml
index 153d3f6374..ce43da5ded 100755
--- a/contrib/interface/blast.ml
+++ b/contrib/interface/blast.ml
@@ -565,7 +565,7 @@ let vire_extvar s =
let blast gls =
let leaf g = {
- status = Incomplete_proof;
+ open_subgoals = 1;
goal = g;
ref = None } in
try (let (sgl,v) as res = !blast_tactic gls in
diff --git a/contrib/xml/proof2aproof.ml b/contrib/xml/proof2aproof.ml
index 80b45cc6d7..03d45828d5 100644
--- a/contrib/xml/proof2aproof.ml
+++ b/contrib/xml/proof2aproof.ml
@@ -48,7 +48,7 @@ let nf_evar sigma ~preserve =
(* Warning: statuses, goals, prim_rules and tactic_exprs are not unshared! *)
let rec unshare_proof_tree =
let module PT = Proof_type in
- function {PT.status = status ; PT.goal = goal ; PT.ref = ref} ->
+ function {PT.open_subgoals = status ; PT.goal = goal ; PT.ref = ref} ->
let unshared_ref =
match ref with
None -> None
@@ -62,7 +62,7 @@ let rec unshare_proof_tree =
in
Some (unshared_rule, List.map unshare_proof_tree pfs)
in
- {PT.status = status ; PT.goal = goal ; PT.ref = unshared_ref}
+ {PT.open_subgoals = status ; PT.goal = goal ; PT.ref = unshared_ref}
;;
module ProofTreeHash =