]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/gTopLevel/gTopLevel.ml
Reduction tactics in the scratch window implemented.
[helm.git] / helm / gTopLevel / gTopLevel.ml
index 7c01b4d75879b95771bbeea27b51278cdf0ad07d..3774ed0d7b8c5e55fe03677945aa3d343685c245 100644 (file)
@@ -51,9 +51,9 @@ let htmlfooter =
 
 let htmlheader_and_content = ref htmlheader;;
 
-let filename4uwobo = "/public/sacerdot/prova.xml";;
-
 let current_cic_infos = ref None;;
+let current_goal_infos = ref None;;
+let current_scratch_infos = ref None;;
 
 
 (* MISC FUNCTIONS *)
@@ -80,12 +80,15 @@ let c1 = parseStyle "rootcontent.xsl";;
 let g  = parseStyle "genmmlid.xsl";;
 let c2 = parseStyle "annotatedpres.xsl";;
 
+
+let getterURL = Configuration.getter_url;;
+let processorURL = Configuration.processor_url;;
 (*
 let processorURL = "http://phd.cs.unibo.it:8080/helm/servelt/uwobo/";;
 let getterURL = "http://phd.cs.unibo.it:8081/";;
-*)
 let processorURL = "http://localhost:8080/helm/servelt/uwobo/";;
 let getterURL = "http://localhost:8081/";;
+*)
 
 let mml_styles = [d_c ; c1 ; g ; c2 ; l];;
 let mml_args =
@@ -99,8 +102,9 @@ let mml_args =
   "media-type", "'text/html'" ;
   "keys", "'d_c%2CC1%2CG%2CC2%2CL'" ;
   "interfaceURL", "'http%3A//phd.cs.unibo.it/helm/html/cic/index.html'" ;
-  "naturalLanguage", "'no'" ;
+  "naturalLanguage", "'yes'" ;
   "annotations", "'no'" ;
+  "explodeall", "'true()'" ;
   "topurl", "'http://phd.cs.unibo.it/helm'" ;
   "CICURI", "'cic:/Coq/Init/Datatypes/bool_ind.con'" ]
 ;;
@@ -119,6 +123,7 @@ let sequent_args =
   "interfaceURL", "'http%3A//phd.cs.unibo.it/helm/html/cic/index.html'" ;
   "naturalLanguage", "'no'" ;
   "annotations", "'no'" ;
+  "explodeall", "'true()'" ;
   "topurl", "'http://phd.cs.unibo.it/helm'" ;
   "CICURI", "'cic:/Coq/Init/Datatypes/bool_ind.con'" ]
 ;;
@@ -140,103 +145,457 @@ let applyStylesheets input styles args =
   input styles
 ;;
 
-let mml_of_cic acic =
-prerr_endline "BBB CREAZIONE" ;
+let mml_of_cic_object uri annobj ids_to_inner_sorts ids_to_inner_types =
  let xml =
-  Cic2Xml.print_term (UriManager.uri_of_string "cic:/dummy.con") acic
+  Cic2Xml.print_object uri ids_to_inner_sorts annobj 
  in
-  Xml.pp ~quiet:true xml (Some filename4uwobo) ;
-prerr_endline "BBB PARSING" ;
-  let input = domImpl#createDocumentFromURI ~uri:filename4uwobo () in
-prerr_endline "BBB STYLESHEETS" ;
+ let xmlinnertypes =
+  Cic2Xml.print_inner_types uri ids_to_inner_sorts
+   ids_to_inner_types
+ in
+  let input = Xml2Gdome.document_of_xml domImpl xml in
+(*CSC: We save the innertypes to disk so that we can retrieve them in the  *)
+(*CSC: stylesheet. This DOES NOT work when UWOBO and/or the getter are not *)
+(*CSC: local.                                                              *)
+   Xml.pp xmlinnertypes (Some "/public/sacerdot/innertypes") ;
    let output = applyStylesheets input mml_styles mml_args in
-prerr_endline "BBB RESA" ;
-ignore(domImpl#saveDocumentToFile ~doc:output ~name:"/tmp/xxxyyyzzz" ()) ;
-        output
+    output
 ;;
 
 
 (* CALLBACKS *)
 
-let exact rendering_window () =
+let refresh_proof (output : GMathView.math_view) =
+ let uri,currentproof =
+  match !ProofEngine.proof with
+     None -> assert false
+   | Some (uri,metasenv,bo,ty) ->
+      uri,(Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo, ty))
+ in
+ let
+  (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,ids_to_inner_types)
+ =
+  Cic2acic.acic_object_of_cic_object currentproof
+ in
+  let mml = mml_of_cic_object uri acic ids_to_inner_sorts ids_to_inner_types in
+   output#load_tree mml ;
+   current_cic_infos := Some (ids_to_terms,ids_to_father_ids)
+;;
+
+let refresh_sequent (proofw : GMathView.math_view) =
+ match !ProofEngine.goal with
+    None -> proofw#unload
+  | Some (_,currentsequent) ->
+     let metasenv =
+      match !ProofEngine.proof with
+         None -> assert false
+       | Some (_,metasenv,_,_) -> metasenv
+     in
+      let sequent_gdome,ids_to_terms,ids_to_father_ids =
+       SequentPp.XmlPp.print_sequent metasenv currentsequent
+      in
+       let sequent_doc =
+        Xml2Gdome.document_of_xml domImpl sequent_gdome
+       in
+        let sequent_mml =
+         applyStylesheets sequent_doc sequent_styles sequent_args
+        in
+         proofw#load_tree ~dom:sequent_mml ;
+         current_goal_infos := Some (ids_to_terms,ids_to_father_ids)
+(*
+ignore(domImpl#saveDocumentToFile ~doc:sequent_doc
+ ~name:"/public/sacerdot/guruguru1" ~indent:true ()) ;
+ignore(domImpl#saveDocumentToFile ~doc:sequent_mml
+ ~name:"/public/sacerdot/guruguru2" ~indent:true ())
+*)
+;;
+
+let mml_of_cic_term term =
+ let context =
+  match !ProofEngine.goal with
+     None -> []
+   | Some (_,(context,_)) -> context
+ in
+  let metasenv =
+   match !ProofEngine.proof with
+      None -> []
+    | Some (_,metasenv,_,_) -> metasenv
+  in
+   let sequent_gdome,ids_to_terms,ids_to_father_ids =
+    SequentPp.XmlPp.print_sequent metasenv (context,term)
+   in
+    let sequent_doc =
+     Xml2Gdome.document_of_xml domImpl sequent_gdome
+    in
+     let res =
+      applyStylesheets sequent_doc sequent_styles sequent_args ;
+     in
+      current_scratch_infos := Some (term,ids_to_terms,ids_to_father_ids) ;
+      res
+;;
+
+let output_html outputhtml msg =
+ htmlheader_and_content := !htmlheader_and_content ^ msg ;
+ outputhtml#source (!htmlheader_and_content ^ htmlfooter) ;
+ outputhtml#set_topline (-1)
+;;
+
+(***********************)
+(*       TACTICS       *)
+(***********************)
+
+let call_tactic tactic rendering_window () =
+ let proofw = (rendering_window#proofw : GMathView.math_view) in
+ let output = (rendering_window#output : GMathView.math_view) in
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal  = !ProofEngine.goal in
+  begin
+   try
+    tactic () ;
+    refresh_sequent proofw ;
+    refresh_proof output
+   with
+    e ->
+     output_html outputhtml
+      ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+     ProofEngine.proof := savedproof ;
+     ProofEngine.goal := savedgoal ;
+  end
+;;
+
+let call_tactic_with_input tactic rendering_window () =
+ let proofw = (rendering_window#proofw : GMathView.math_view) in
+ let output = (rendering_window#output : GMathView.math_view) in
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
  let inputt = (rendering_window#inputt : GEdit.text) in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal  = !ProofEngine.goal in
 (*CSC: Gran cut&paste da sotto... *)
   let inputlen = inputt#length in
   let input = inputt#get_chars 0 inputlen ^ "\n" in
    let lexbuf = Lexing.from_string input in
+   let curi =
+    match !ProofEngine.proof with
+       None -> assert false
+     | Some (curi,_,_,_) -> curi
+   in
+   let context =
+    List.map
+     (function (_,n,_) -> n)
+     (match !ProofEngine.goal with
+         None -> assert false
+       | Some (_,(ctx,_)) -> ctx
+     )
+   in
     try
      while true do
-      (* Execute the actions *)
-      match CicTextualParser.main CicTextualLexer.token lexbuf with
+      match
+       CicTextualParserContext.main curi context CicTextualLexer.token lexbuf
+      with
          None -> ()
        | Some expr ->
-          try
-(*??? Ma servira' da qualche parte!
-           let ty  = CicTypeChecker.type_of_aux' [] expr in
-*)
-            let (acic, ids_to_terms, ids_to_father_ids) =
-             Cic2acic.acic_of_cic expr
-            in
-(*CSC: chiamare la vera tattica exact qui! *)
-             ()
-          with
-           e ->
-            print_endline ("? " ^ CicPp.ppterm expr) ;
-            raise e
+          tactic expr ;
+          refresh_sequent proofw ;
+          refresh_proof output
      done
     with
        CicTextualParser0.Eof ->
         inputt#delete_text 0 inputlen
-(*CSC: fare qualcosa di utile *)
      | e ->
-        print_endline ("Error: " ^ Printexc.to_string e) ; flush stdout
+        output_html outputhtml
+         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>");
+        ProofEngine.proof := savedproof ;
+        ProofEngine.goal := savedgoal
 ;;
 
-let proveit rendering_window () =
+let call_tactic_with_goal_input tactic rendering_window () =
+ let module L = LogicalOperations in
  let module G = Gdome in
- match rendering_window#output#get_selection with
-   Some node ->
-    let xpath =
-     ((node : Gdome.element)#getAttributeNS
-     (*CSC: OCAML DIVERGE
-     ((element : G.element)#getAttributeNS
-     *)
-       ~namespaceURI:helmns
-       ~localName:(G.domString "xref"))#to_string
-    in
-     if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
-     else
+  let proofw = (rendering_window#proofw : GMathView.math_view) in
+  let output = (rendering_window#output : GMathView.math_view) in
+  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+  let savedproof = !ProofEngine.proof in
+  let savedgoal  = !ProofEngine.goal in
+   match proofw#get_selection with
+     Some node ->
+      let xpath =
+       ((node : Gdome.element)#getAttributeNS
+         ~namespaceURI:helmns
+         ~localName:(G.domString "xref"))#to_string
+      in
+       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+       else
+        begin
+         try
+          match !current_goal_infos with
+             Some (ids_to_terms, ids_to_father_ids) ->
+              let id = xpath in
+               tactic (Hashtbl.find ids_to_terms id) ;
+               refresh_sequent rendering_window#proofw ;
+               refresh_proof rendering_window#output
+           | None -> assert false (* "ERROR: No current term!!!" *)
+         with
+          e ->
+           output_html outputhtml
+            ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+        end
+   | None ->
+      output_html outputhtml
+       ("<h1 color=\"red\">No term selected</h1>")
+;;
+
+let call_tactic_with_input_and_goal_input tactic rendering_window () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+  let proofw = (rendering_window#proofw : GMathView.math_view) in
+  let output = (rendering_window#output : GMathView.math_view) in
+  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+  let inputt = (rendering_window#inputt : GEdit.text) in
+  let savedproof = !ProofEngine.proof in
+  let savedgoal  = !ProofEngine.goal in
+   match proofw#get_selection with
+     Some node ->
+      let xpath =
+       ((node : Gdome.element)#getAttributeNS
+         ~namespaceURI:helmns
+         ~localName:(G.domString "xref"))#to_string
+      in
+       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+       else
+        begin
+         try
+          match !current_goal_infos with
+             Some (ids_to_terms, ids_to_father_ids) ->
+              let id = xpath in
+               (* Let's parse the input *)
+               let inputlen = inputt#length in
+               let input = inputt#get_chars 0 inputlen ^ "\n" in
+                let lexbuf = Lexing.from_string input in
+                let curi =
+                 match !ProofEngine.proof with
+                    None -> assert false
+                  | Some (curi,_,_,_) -> curi
+                in
+                let context =
+                 List.map
+                  (function (_,n,_) -> n)
+                  (match !ProofEngine.goal with
+                      None -> assert false
+                    | Some (_,(ctx,_)) -> ctx
+                  )
+                in
+                 begin
+                  try
+                   while true do
+                    match
+                     CicTextualParserContext.main curi context
+                      CicTextualLexer.token lexbuf
+                    with
+                       None -> ()
+                     | Some expr ->
+                        tactic ~goal_input:(Hashtbl.find ids_to_terms id)
+                         ~input:expr ;
+                        refresh_sequent proofw ;
+                        refresh_proof output
+                   done
+                  with
+                     CicTextualParser0.Eof ->
+                      inputt#delete_text 0 inputlen
+                 end
+           | None -> assert false (* "ERROR: No current term!!!" *)
+         with
+          e ->
+           output_html outputhtml
+            ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+        end
+   | None ->
+      output_html outputhtml
+       ("<h1 color=\"red\">No term selected</h1>")
+;;
+
+let call_tactic_with_goal_input_in_scratch tactic scratch_window () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+  let mmlwidget = (scratch_window#mmlwidget : GMathView.math_view) in
+  let outputhtml = (scratch_window#outputhtml : GHtml.xmhtml) in
+  let savedproof = !ProofEngine.proof in
+  let savedgoal  = !ProofEngine.goal in
+   match mmlwidget#get_selection with
+     Some node ->
+      let xpath =
+       ((node : Gdome.element)#getAttributeNS
+         ~namespaceURI:helmns
+         ~localName:(G.domString "xref"))#to_string
+      in
+       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+       else
+        begin
+         try
+          match !current_scratch_infos with
+             (* term is the whole goal in the scratch_area *)
+             Some (term,ids_to_terms, ids_to_father_ids) ->
+              let id = xpath in
+               let expr = tactic term (Hashtbl.find ids_to_terms id) in
+                let mml = mml_of_cic_term expr in
+                 scratch_window#show () ;
+                 scratch_window#mmlwidget#load_tree ~dom:mml
+           | None -> assert false (* "ERROR: No current term!!!" *)
+         with
+          e ->
+           output_html outputhtml
+            ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+        end
+   | None ->
+      output_html outputhtml
+       ("<h1 color=\"red\">No term selected</h1>")
+;;
+
+let intros rendering_window = call_tactic ProofEngine.intros rendering_window;;
+let exact rendering_window =
+ call_tactic_with_input ProofEngine.exact rendering_window
+;;
+let apply rendering_window =
+ call_tactic_with_input ProofEngine.apply rendering_window
+;;
+let elimintros rendering_window =
+ call_tactic_with_input ProofEngine.elim_intros rendering_window
+;;
+let whd rendering_window =
+ call_tactic_with_goal_input ProofEngine.whd rendering_window
+;;
+let reduce rendering_window =
+ call_tactic_with_goal_input ProofEngine.reduce rendering_window
+;;
+let simpl rendering_window =
+ call_tactic_with_goal_input ProofEngine.simpl rendering_window
+;;
+let fold rendering_window =
+ call_tactic_with_input ProofEngine.fold rendering_window
+;;
+let cut rendering_window =
+ call_tactic_with_input ProofEngine.cut rendering_window
+;;
+let change rendering_window =
+ call_tactic_with_input_and_goal_input ProofEngine.change rendering_window
+;;
+
+
+let whd_in_scratch scratch_window =
+ call_tactic_with_goal_input_in_scratch ProofEngine.whd_in_scratch
+  scratch_window
+;;
+let reduce_in_scratch scratch_window =
+ call_tactic_with_goal_input_in_scratch ProofEngine.reduce_in_scratch
+  scratch_window
+;;
+let simpl_in_scratch scratch_window =
+ call_tactic_with_goal_input_in_scratch ProofEngine.simpl_in_scratch
+  scratch_window
+;;
+
+
+
+(**********************)
+(*   END OF TACTICS   *)
+(**********************)
+
+exception OpenConjecturesStillThere;;
+exception WrongProof;;
+
+let save rendering_window () =
+ match !ProofEngine.proof with
+    None -> assert false
+  | Some (uri,[],bo,ty) ->
+     if CicReduction.are_convertible (CicTypeChecker.type_of_aux' [] [] bo) ty then
       begin
-       match !current_cic_infos with
-          Some (ids_to_terms, ids_to_father_ids) ->
-           let id = xpath in
-            let sequent =
-             LogicalOperations.to_sequent id ids_to_terms ids_to_father_ids
-            in
-             SequentPp.TextualPp.print_sequent sequent ;
-             let sequent_gdome = SequentPp.XmlPp.print_sequent sequent in
-              let sequent_doc =
-               Xml2Gdome.document_of_xml domImpl sequent_gdome
-              in
-               let sequent_mml =
-                applyStylesheets sequent_doc sequent_styles sequent_args
-               in
-                rendering_window#proofw#load_tree ~dom:sequent_mml ;
-ignore(domImpl#saveDocumentToFile ~doc:sequent_doc
- ~name:"/public/sacerdot/guruguru1" ~indent:true ()) ;
-ignore(domImpl#saveDocumentToFile ~doc:sequent_mml
- ~name:"/public/sacerdot/guruguru2" ~indent:true ())
-        | None -> assert false (* "ERROR: No current term!!!" *)
+       (*CSC: Wrong: [] is just plainly wrong *)
+       let proof = Cic.Definition (UriManager.name_of_uri uri,bo,ty,[]) in
+        let
+         (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
+          ids_to_inner_types)
+        =
+         Cic2acic.acic_object_of_cic_object proof
+        in
+         let mml =
+          mml_of_cic_object uri acic ids_to_inner_sorts ids_to_inner_types
+         in
+          (rendering_window#output : GMathView.math_view)#load_tree mml ;
+          current_cic_infos := Some (ids_to_terms,ids_to_father_ids)
       end
- | None -> assert false (* "ERROR: No selection!!!" *)
+     else
+      raise WrongProof
+  | _ -> raise OpenConjecturesStillThere
 ;;
 
-let output_html outputhtml msg =
- htmlheader_and_content := !htmlheader_and_content ^ msg ;
- outputhtml#source (!htmlheader_and_content ^ htmlfooter)
+let proveit rendering_window () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+  match rendering_window#output#get_selection with
+    Some node ->
+     let xpath =
+      ((node : Gdome.element)#getAttributeNS
+      (*CSC: OCAML DIVERGE
+      ((element : G.element)#getAttributeNS
+      *)
+        ~namespaceURI:helmns
+        ~localName:(G.domString "xref"))#to_string
+     in
+      if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+      else
+       begin
+        try
+         match !current_cic_infos with
+            Some (ids_to_terms, ids_to_father_ids) ->
+             let id = xpath in
+              if L.to_sequent id ids_to_terms ids_to_father_ids then
+               refresh_proof rendering_window#output ;
+              refresh_sequent rendering_window#proofw
+          | None -> assert false (* "ERROR: No current term!!!" *)
+        with
+         e ->
+          output_html outputhtml
+           ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+       end
+  | None -> assert false (* "ERROR: No selection!!!" *)
 ;;
 
-let execute rendering_window () =
+exception NotADefinition;;
+
+let open_ rendering_window () =
+ let inputt = (rendering_window#inputt : GEdit.text) in
+ let oldinputt = (rendering_window#oldinputt : GEdit.text) in
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+ let output = (rendering_window#output : GMathView.math_view) in
+ let proofw = (rendering_window#proofw : GMathView.math_view) in
+  let inputlen = inputt#length in
+  let input = inputt#get_chars 0 inputlen ^ "\n" in
+   try
+    let uri = UriManager.uri_of_string ("cic:" ^ input) in
+     CicTypeChecker.typecheck uri ;
+     let metasenv,bo,ty =
+      match CicEnvironment.get_cooked_obj uri 0 with
+         Cic.Definition (_,bo,ty,_) -> [],bo,ty
+       | Cic.CurrentProof (_,metasenv,bo,ty) -> metasenv,bo,ty
+       | Cic.Axiom _
+       | Cic.Variable _
+       | Cic.InductiveDefinition _ -> raise NotADefinition
+     in
+      ProofEngine.proof :=
+       Some (uri, metasenv, bo, ty) ;
+      ProofEngine.goal := None ;
+      inputt#delete_text 0 inputlen ;
+      ignore(oldinputt#insert_text input oldinputt#length) ;
+      refresh_sequent proofw ;
+      refresh_proof output ;
+   with
+    e ->
+     output_html outputhtml
+      ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+;;
+
+let state rendering_window () =
  let inputt = (rendering_window#inputt : GEdit.text) in
  let oldinputt = (rendering_window#oldinputt : GEdit.text) in
  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
@@ -253,20 +612,65 @@ let execute rendering_window () =
          None -> ()
        | Some expr ->
           try
-           let ty  = CicTypeChecker.type_of_aux' [] expr in
-           let whd = CicReduction.whd expr in 
-
-            let (acic, ids_to_terms, ids_to_father_ids) =
-             Cic2acic.acic_of_cic expr
-            in
-             let mml = mml_of_cic acic in
-               output#load_tree mml ;
-prerr_endline "BBB FINE RESA" ;
-               current_cic_infos := Some (ids_to_terms,ids_to_father_ids) ;
-print_endline ("?  " ^ CicPp.ppterm expr) ;
-print_endline (">> " ^ CicPp.ppterm whd) ;
-print_endline (":  " ^ CicPp.ppterm ty) ;
-flush stdout ;
+           let _  = CicTypeChecker.type_of_aux' [] [] expr in
+            ProofEngine.proof :=
+             Some (UriManager.uri_of_string "cic:/dummy.con",
+                    [1,expr], Cic.Meta 1, expr) ;
+            ProofEngine.goal := Some (1,([],expr)) ;
+            refresh_sequent proofw ;
+            refresh_proof output ;
+          with
+           e ->
+            print_endline ("? " ^ CicPp.ppterm expr) ;
+            raise e
+     done
+    with
+       CicTextualParser0.Eof ->
+        inputt#delete_text 0 inputlen ;
+        ignore(oldinputt#insert_text input oldinputt#length)
+     | e ->
+        output_html outputhtml
+         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+;;
+
+let check rendering_window scratch_window () =
+ let inputt = (rendering_window#inputt : GEdit.text) in
+ let oldinputt = (rendering_window#oldinputt : GEdit.text) in
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+ let output = (rendering_window#output : GMathView.math_view) in
+ let proofw = (rendering_window#proofw : GMathView.math_view) in
+  let inputlen = inputt#length in
+  let input = inputt#get_chars 0 inputlen ^ "\n" in
+  let curi,metasenv =
+   match !ProofEngine.proof with
+      None -> UriManager.uri_of_string "cic:/dummy.con", []
+    | Some (curi,metasenv,_,_) -> curi,metasenv
+  in
+  let ciccontext,names_context =
+   let context =
+    match !ProofEngine.goal with
+       None -> []
+     | Some (_,(ctx,_)) -> ctx
+   in
+    ProofEngine.cic_context_of_context context,
+     List.map (function (_,n,_) -> n) context
+  in
+   (* Do something interesting *)
+   let lexbuf = Lexing.from_string input in
+    try
+     while true do
+      (* Execute the actions *)
+      match
+       CicTextualParserContext.main curi names_context CicTextualLexer.token
+        lexbuf
+      with
+         None -> ()
+       | Some expr ->
+          try
+           let ty  = CicTypeChecker.type_of_aux' metasenv ciccontext expr in
+            let mml = mml_of_cic_term (Cic.Cast (expr,ty)) in
+             scratch_window#show () ;
+             scratch_window#mmlwidget#load_tree ~dom:mml
           with
            e ->
             print_endline ("? " ^ CicPp.ppterm expr) ;
@@ -275,9 +679,10 @@ flush stdout ;
     with
        CicTextualParser0.Eof ->
         inputt#delete_text 0 inputlen ;
-        ignore(oldinputt#insert_text input oldinputt#length) ;
+        ignore(oldinputt#insert_text input oldinputt#length)
      | e ->
-        print_endline ("Error: " ^ Printexc.to_string e) ; flush stdout
+       output_html outputhtml
+        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
 ;;
 
 let choose_selection
@@ -425,7 +830,43 @@ object(self)
   ignore(closeb#connect#clicked settings_window#misc#hide)
 end;;
 
-(* Main windows *)
+(* Scratch window *)
+
+class scratch_window outputhtml =
+ let window =
+  GWindow.window ~title:"MathML viewer" ~border_width:2 () in
+ let vbox =
+  GPack.vbox ~packing:window#add () in
+ let hbox =
+  GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
+ let whdb =
+  GButton.button ~label:"Whd"
+   ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
+ let reduceb =
+  GButton.button ~label:"Reduce"
+   ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
+ let simplb =
+  GButton.button ~label:"Simpl"
+   ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
+ let scrolled_window =
+  GBin.scrolled_window ~border_width:10
+   ~packing:(vbox#pack ~expand:true ~padding:5) () in
+ let mmlwidget =
+  GMathView.math_view
+   ~packing:(scrolled_window#add) ~width:400 ~height:280 () in
+object(self)
+ method outputhtml = outputhtml
+ method mmlwidget = mmlwidget
+ method show () = window#misc#hide () ; window#show ()
+ initializer
+  ignore(mmlwidget#connect#selection_changed (choose_selection mmlwidget)) ;
+  ignore(window#event#connect#delete (fun _ -> window#misc#hide () ; true )) ;
+  ignore(whdb#connect#clicked (whd_in_scratch self)) ;
+  ignore(reduceb#connect#clicked (reduce_in_scratch self)) ;
+  ignore(simplb#connect#clicked (simpl_in_scratch self))
+end;;
+
+(* Main window *)
 
 class rendering_window output proofw (label : GMisc.label) =
  let window =
@@ -447,6 +888,9 @@ class rendering_window output proofw (label : GMisc.label) =
  let button_export_to_postscript =
   GButton.button ~label:"export_to_postscript"
   ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
+ let saveb =
+  GButton.button ~label:"Save"
+   ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
  let closeb =
   GButton.button ~label:"Close"
    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
@@ -457,9 +901,17 @@ class rendering_window output proofw (label : GMisc.label) =
    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
  let oldinputt = GEdit.text ~editable:false ~width:400 ~height:180
    ~packing:(vbox#pack ~padding:5) () in
- let executeb =
-  GButton.button ~label:"Execute"
-   ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
+ let hbox4 =
+  GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
+ let stateb =
+  GButton.button ~label:"State"
+   ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
+ let openb =
+  GButton.button ~label:"Open"
+   ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
+ let checkb =
+  GButton.button ~label:"Check"
+   ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
  let inputt = GEdit.text ~editable:true ~width:400 ~height: 100
    ~packing:(vbox#pack ~padding:5) () in
  let vbox1 =
@@ -473,19 +925,47 @@ class rendering_window output proofw (label : GMisc.label) =
  let exactb =
   GButton.button ~label:"Exact"
    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let introsb =
+  GButton.button ~label:"Intros"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let applyb =
+  GButton.button ~label:"Apply"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let elimintrosb =
+  GButton.button ~label:"ElimIntros"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let whdb =
+  GButton.button ~label:"Whd"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let reduceb =
+  GButton.button ~label:"Reduce"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let simplb =
+  GButton.button ~label:"Simpl"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let foldb =
+  GButton.button ~label:"Fold"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let cutb =
+  GButton.button ~label:"Cut"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
+ let changeb =
+  GButton.button ~label:"Change"
+   ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
  let outputhtml =
   GHtml.xmhtml
    ~source:"<html><body bgColor=\"white\"></body></html>"
    ~width:400 ~height: 200
    ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5)
    ~show:true () in
+ let scratch_window = new scratch_window outputhtml in
 object(self)
  method outputhtml = outputhtml
  method oldinputt = oldinputt
  method inputt = inputt
  method output = (output : GMathView.math_view)
  method proofw = (proofw : GMathView.math_view)
- method show () = window#show ()
+ method show = window#show
  initializer
   button_export_to_postscript#misc#set_sensitive false ;
 
@@ -498,10 +978,22 @@ object(self)
    button_export_to_postscript (choose_selection output) in
   ignore(settingsb#connect#clicked settings_window#show) ;
   ignore(button_export_to_postscript#connect#clicked (export_to_postscript output)) ;
+  ignore(saveb#connect#clicked (save self)) ;
   ignore(proveitb#connect#clicked (proveit self)) ;
   ignore(window#event#connect#delete (fun _ -> GMain.Main.quit () ; true )) ;
-  ignore(executeb#connect#clicked (execute self)) ;
+  ignore(stateb#connect#clicked (state self)) ;
+  ignore(openb#connect#clicked (open_ self)) ;
+  ignore(checkb#connect#clicked (check self scratch_window)) ;
   ignore(exactb#connect#clicked (exact self)) ;
+  ignore(applyb#connect#clicked (apply self)) ;
+  ignore(elimintrosb#connect#clicked (elimintros self)) ;
+  ignore(whdb#connect#clicked (whd self)) ;
+  ignore(reduceb#connect#clicked (reduce self)) ;
+  ignore(simplb#connect#clicked (simpl self)) ;
+  ignore(foldb#connect#clicked (fold self)) ;
+  ignore(cutb#connect#clicked (cut self)) ;
+  ignore(changeb#connect#clicked (change self)) ;
+  ignore(introsb#connect#clicked (intros self)) ;
   Logger.log_callback :=
    (Logger.log_to_html ~print_and_flush:(output_html outputhtml))
 end;;
@@ -522,5 +1014,6 @@ let initialize_everything () =
 
 let _ =
  CicCooking.init () ;
+ ignore (GtkMain.Main.init ()) ;
  initialize_everything ()
 ;;