X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2Fcomponents%2Fgrafite%2FgrafiteAst.ml;h=7750dab2797d9d6fd8dcd38f307c3fd4b97ea841;hb=b8a04566e67338e7e5375ff4175277704cd16432;hp=27f3830b679cfd43b453eb9a78980e74abe9e48b;hpb=3fab56d1663ba3d5aeb9207612279e0bb0edbb8c;p=helm.git diff --git a/matita/components/grafite/grafiteAst.ml b/matita/components/grafite/grafiteAst.ml index 27f3830b6..7750dab27 100644 --- a/matita/components/grafite/grafiteAst.ml +++ b/matita/components/grafite/grafiteAst.ml @@ -79,21 +79,25 @@ type ntactic = | NBlock of loc * ntactic list (* Declarative langauge *) (* Not the best idea to use a string directly, an abstract type for identifiers would be better *) - | Assume of loc * string * nterm * nterm option (* loc, identifier, type, eqty *) - | Suppose of loc * nterm *string * nterm option (* loc, assumption, identifier, eqass *) - | By_just_we_proved of loc * just * nterm * string option * nterm option (* loc, - justification, conclusion, identifier, eqconcl *) - | We_need_to_prove of loc * nterm * string option * nterm option (* loc, newconclusion, - identifier, equivnewcon *) + | Assume of loc * string * nterm (* loc, identifier, type *) + | Suppose of loc * nterm * string (* loc, assumption, identifier *) + | By_just_we_proved of loc * just * nterm * string option (* loc, justification, conclusion, identifier *) + | We_need_to_prove of loc * nterm * string option (* loc, newconclusion, identifier *) + | BetaRewritingStep of loc * nterm | Bydone of loc * just | ExistsElim of loc * just * string * nterm * nterm * string | AndElim of loc * just * nterm * string * nterm * string | RewritingStep of - loc * (string option * nterm) option * nterm * - [ `Term of nterm | `Auto of auto_params - | `Proof | `SolveWith of nterm ] * - bool (* last step*) - | Thesisbecomes of loc * nterm * nterm option + loc * nterm * [ `Term of nterm | `Auto of auto_params | `Proof | `SolveWith of nterm ] * bool (* last step*) + | Obtain of + loc * string * nterm + | Conclude of + loc * nterm + | Thesisbecomes of loc * nterm + | We_proceed_by_induction_on of loc * nterm * nterm + | We_proceed_by_cases_on of loc * nterm * nterm + | Byinduction of loc * nterm * string + | Case of loc * string * (string * nterm) list (* This is a debug tactic to print the stack to stdout, can be safely removed *) | PrintStack of loc