X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=components%2Fgrafite%2FgrafiteAst.ml;h=6731034318b266acdc4c9de000793276baf2445c;hb=7bac8af3711810b6d6ade5134eda2f62bf6b0ba3;hp=5896e116fa6f17de2ff832c77c297578105e97bd;hpb=aa576f13a6fd64586b389880dec3e47f703cd300;p=helm.git diff --git a/components/grafite/grafiteAst.ml b/components/grafite/grafiteAst.ml index 5896e116f..673103431 100644 --- a/components/grafite/grafiteAst.ml +++ b/components/grafite/grafiteAst.ml @@ -85,6 +85,12 @@ type ('term, 'lazy_term, 'reduction, 'ident) tactic = | Split of loc | Symmetry of loc | Transitivity of loc * 'term + (* Costruttori Aggiunti *) + | Assume of loc * 'ident * 'term + | Suppose of loc * 'term *'ident + | By_term_we_proved of loc * 'term * 'term * 'ident + | We_need_to_prove of loc * 'term * 'ident + | Bydone of loc * 'term type search_kind = [ `Locate | `Hint | `Match | `Elim ] @@ -98,16 +104,8 @@ type 'term macro = | WLocate of loc * string | WElim of loc * 'term (* real macros *) -(* | Abort of loc *) - | Print of loc * string | Check of loc * 'term | Hint of loc - | Quit of loc -(* | Redo of loc * int option - | Undo of loc * int option *) -(* | Print of loc * print_kind *) - | Search_pat of loc * search_kind * string (* searches with string pattern *) - | Search_term of loc * search_kind * 'term (* searches with term pattern *) (** To be increased each time the command type below changes, used for "safe" * marshalling *)