Not_found -> "/public/currentprooftype"
;;
-(*CSC: the getter should handle the innertypes, not the FS *)
-
-let innertypesfile =
- try
- Sys.getenv "GTOPLEVEL_INNERTYPESFILE"
- with
- Not_found -> "/public/innertypes"
-;;
-
-let constanttypefile =
- try
- Sys.getenv "GTOPLEVEL_CONSTANTTYPEFILE"
- with
- Not_found -> "/public/constanttype"
-;;
-
let postgresqlconnectionstring =
try
Sys.getenv "POSTGRESQL_CONNECTION_STRING"
let htmlheader_and_content = ref htmlheader;;
-let current_cic_infos = ref None;;
-let current_goal_infos = ref None;;
-let current_scratch_infos = ref None;;
+let current_scratch_infos = ref None
let check_term = ref (fun _ _ _ -> assert false);;
-let mml_of_cic_term_ref = ref (fun _ _ -> assert false);;
exception RenderingWindowsNotInitialized;;
(Cic.Cast (term, CicTypeChecker.type_of_aux' [] [] term))
in
try
- let mml = !mml_of_cic_term_ref 111 expr in
+ let mml,scratch_infos =
+ ApplyStylesheets.mml_of_cic_term 111 expr
+ in
+ current_scratch_infos := Some scratch_infos ;
mmlwidget#load_doc ~dom:mml
with
e ->
function result -> !query ^ " <h1>Result:</h1> " ^ MQueryUtil.text_of_result result "<br>"
;;
-let
- mml_of_cic_object ~explode_all uri annobj ids_to_inner_sorts ids_to_inner_types
-=
-(*CSC: ????????????????? *)
- let xml, bodyxml =
- Cic2Xml.print_object uri ~ids_to_inner_sorts ~ask_dtd_to_the_getter:true
- annobj
- in
- let xmlinnertypes =
- Cic2Xml.print_inner_types uri ~ids_to_inner_sorts ~ids_to_inner_types
- ~ask_dtd_to_the_getter:true
- in
- let input =
- match bodyxml with
- None -> Xml2Gdome.document_of_xml Misc.domImpl xml
- | Some bodyxml' ->
- Xml.pp xml (Some constanttypefile) ;
- Xml2Gdome.document_of_xml Misc.domImpl bodyxml'
- 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 innertypesfile) ;
- let output = ApplyStylesheets.apply_proof_stylesheets input ~explode_all in
- output
-;;
-
let
save_object_to_disk uri annobj ids_to_inner_sorts ids_to_inner_types pathname
=
(* CALLBACKS *)
-exception RefreshSequentException of exn;;
-exception RefreshProofException of exn;;
-
-let refresh_proof (output : GMathViewAux.single_selection_math_view) =
- try
- let uri,currentproof =
- match !ProofEngine.proof with
- None -> assert false
- | Some (uri,metasenv,bo,ty) ->
- !qed_set_sensitive (List.length metasenv = 0) ;
- (*CSC: Wrong: [] is just plainly wrong *)
- 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,ids_to_conjectures,ids_to_hypotheses)
- =
- Cic2acic.acic_object_of_cic_object currentproof
- in
- let mml =
- mml_of_cic_object ~explode_all:true uri acic ids_to_inner_sorts
- ids_to_inner_types
- in
- output#load_doc ~dom:mml ;
- current_cic_infos :=
- Some (ids_to_terms,ids_to_father_ids,ids_to_conjectures,ids_to_hypotheses)
- with
- e ->
- match !ProofEngine.proof with
- None -> assert false
- | Some (uri,metasenv,bo,ty) ->
-prerr_endline ("Offending proof: " ^ CicPp.ppobj (Cic.CurrentProof ("questa",metasenv,bo,ty,[]))) ; flush stderr ;
- raise (RefreshProofException e)
-;;
-
-let refresh_sequent ?(empty_notebook=true) notebook =
- try
- match !ProofEngine.goal with
- None ->
- if empty_notebook then
- begin
- notebook#remove_all_pages ~skip_switch_page_event:false ;
- notebook#set_empty_page
- end
- else
- notebook#proofw#unload
- | Some metano ->
- let metasenv =
- match !ProofEngine.proof with
- None -> assert false
- | Some (_,metasenv,_,_) -> metasenv
- in
- let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
- let sequent_gdome,ids_to_terms,ids_to_father_ids,ids_to_hypotheses =
- SequentPp.XmlPp.print_sequent metasenv currentsequent
- in
- let regenerate_notebook () =
- let skip_switch_page_event =
- match metasenv with
- (m,_,_)::_ when m = metano -> false
- | _ -> true
- in
- notebook#remove_all_pages ~skip_switch_page_event ;
- List.iter (function (m,_,_) -> notebook#add_page m) metasenv ;
- in
- if empty_notebook then
- begin
- regenerate_notebook () ;
- notebook#set_current_page ~may_skip_switch_page_event:false metano
- end
- else
- begin
- let sequent_doc =
- Xml2Gdome.document_of_xml Misc.domImpl sequent_gdome in
- let sequent_mml =
- ApplyStylesheets.apply_sequent_stylesheets sequent_doc
- in
- notebook#set_current_page ~may_skip_switch_page_event:true metano;
- notebook#proofw#load_doc ~dom:sequent_mml
- end ;
- current_goal_infos :=
- Some (ids_to_terms,ids_to_father_ids,ids_to_hypotheses)
- with
- e ->
-let metano =
- match !ProofEngine.goal with
- None -> assert false
- | Some m -> m
-in
-let metasenv =
- match !ProofEngine.proof with
- None -> assert false
- | Some (_,metasenv,_,_) -> metasenv
-in
-try
-let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
-prerr_endline ("Offending sequent: " ^ SequentPp.TextualPp.print_sequent currentsequent) ; flush stderr ;
- raise (RefreshSequentException e)
-with Not_found -> prerr_endline ("Offending sequent " ^ string_of_int metano ^ " unkown."); raise (RefreshSequentException e)
-;;
-
(*
ignore(domImpl#saveDocumentToFile ~doc:sequent_doc
~name:"/home/galata/miohelm/guruguru1" ~indent:true ()) ;
*)
-let mml_of_cic_term metano term =
- let metasenv =
- match !ProofEngine.proof with
- None -> []
- | Some (_,metasenv,_,_) -> metasenv
- in
- let context =
- match !ProofEngine.goal with
- None -> []
- | Some metano ->
- let (_,canonical_context,_) =
- List.find (function (m,_,_) -> m=metano) metasenv
- in
- canonical_context
- in
- let sequent_gdome,ids_to_terms,ids_to_father_ids,ids_to_hypotheses =
- SequentPp.XmlPp.print_sequent metasenv (metano,context,term)
- in
- let sequent_doc =
- Xml2Gdome.document_of_xml Misc.domImpl sequent_gdome
- in
- let res = ApplyStylesheets.apply_sequent_stylesheets sequent_doc in
- current_scratch_infos :=
- Some (term,ids_to_terms,ids_to_father_ids,ids_to_hypotheses) ;
- res
-;;
-
exception OpenConjecturesStillThere;;
exception WrongProof;;
begin
(*CSC: Wrong: [] is just plainly wrong *)
let proof = Cic.Constant (UriManager.name_of_uri uri,Some bo,ty,[]) in
- let
- (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
- ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
- =
- Cic2acic.acic_object_of_cic_object proof
- in
- let mml =
- mml_of_cic_object ~explode_all:false uri acic ids_to_inner_sorts
- ids_to_inner_types
- in
- ((rendering_window ())#output : GMathViewAux.single_selection_math_view)#load_doc mml ;
- !qed_set_sensitive false ;
- (* let's save the theorem and register it to the getter *)
- let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
- make_dirs pathname ;
- save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
- pathname ;
- current_cic_infos :=
- Some
- (ids_to_terms,ids_to_father_ids,ids_to_conjectures,
- ids_to_hypotheses)
+ let (acic,ids_to_inner_types,ids_to_inner_sorts) =
+ (rendering_window ())#output#load_proof uri proof
+ in
+ !qed_set_sensitive false ;
+ (* let's save the theorem and register it to the getter *)
+ let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
+ make_dirs pathname ;
+ save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
+ pathname
end
else
raise WrongProof
ignore (T.type_of_aux' metasenv [] bo)
;;
+let decompose_uris_choice_callback uris =
+(* N.B.: in questo passaggio perdo l'informazione su exp_named_subst !!!! *)
+ let module U = UriManager in
+ List.map
+ (function uri ->
+ match Misc.cic_textual_parser_uri_of_string uri with
+ CicTextualParser0.IndTyUri (uri,typeno) -> (uri,typeno,[])
+ | _ -> assert false)
+ (interactive_user_uri_choice
+ ~selection_mode:`EXTENDED ~ok:"Ok" ~enable_button_for_non_vars:false
+ ~title:"Decompose" ~msg:"Please, select the Inductive Types to decompose"
+ (List.map
+ (function (uri,typeno,_) ->
+ U.string_of_uri uri ^ "#1/" ^ string_of_int (typeno+1)
+ ) uris)
+ )
+;;
+
+let mk_fresh_name_callback context name ~typ =
+ let fresh_name =
+ match ProofEngineHelpers.mk_fresh_name context name ~typ with
+ Cic.Name fresh_name -> fresh_name
+ | Cic.Anonymous -> assert false
+ in
+ match
+ GToolbox.input_string ~title:"Enter a fresh hypothesis name" ~text:fresh_name
+ ("Enter a fresh name for the hypothesis " ^
+ CicPp.pp typ
+ (List.map (function None -> None | Some (n,_) -> Some n) context))
+ with
+ Some fresh_name' -> Cic.Name fresh_name'
+ | None -> raise NoChoice
+;;
+
+let refresh_proof (output : TermViewer.proof_viewer) =
+ try
+ let uri,currentproof =
+ match !ProofEngine.proof with
+ None -> assert false
+ | Some (uri,metasenv,bo,ty) ->
+ !qed_set_sensitive (List.length metasenv = 0) ;
+ (*CSC: Wrong: [] is just plainly wrong *)
+ uri,
+ (Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo, ty, []))
+ in
+ ignore (output#load_proof uri currentproof)
+ with
+ e ->
+ match !ProofEngine.proof with
+ None -> assert false
+ | Some (uri,metasenv,bo,ty) ->
+prerr_endline ("Offending proof: " ^ CicPp.ppobj (Cic.CurrentProof ("questa",metasenv,bo,ty,[]))) ; flush stderr ;
+ raise (InvokeTactics.RefreshProofException e)
+
+let refresh_goals ?(empty_notebook=true) notebook =
+ try
+ match !ProofEngine.goal with
+ None ->
+ if empty_notebook then
+ begin
+ notebook#remove_all_pages ~skip_switch_page_event:false ;
+ notebook#set_empty_page
+ end
+ else
+ notebook#proofw#unload
+ | Some metano ->
+ let metasenv =
+ match !ProofEngine.proof with
+ None -> assert false
+ | Some (_,metasenv,_,_) -> metasenv
+ in
+ let currentsequent =
+ List.find (function (m,_,_) -> m=metano) metasenv
+ in
+ let regenerate_notebook () =
+ let skip_switch_page_event =
+ match metasenv with
+ (m,_,_)::_ when m = metano -> false
+ | _ -> true
+ in
+ notebook#remove_all_pages ~skip_switch_page_event ;
+ List.iter (function (m,_,_) -> notebook#add_page m) metasenv ;
+ in
+ if empty_notebook then
+ begin
+ regenerate_notebook () ;
+ notebook#set_current_page
+ ~may_skip_switch_page_event:false metano
+ end
+ else
+ begin
+ notebook#set_current_page
+ ~may_skip_switch_page_event:true metano ;
+ notebook#proofw#load_sequent metasenv currentsequent
+ end
+ with
+ e ->
+let metano =
+ match !ProofEngine.goal with
+ None -> assert false
+ | Some m -> m
+in
+let metasenv =
+ match !ProofEngine.proof with
+ None -> assert false
+ | Some (_,metasenv,_,_) -> metasenv
+in
+try
+let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
+ prerr_endline ("Offending sequent: " ^ SequentPp.TextualPp.print_sequent currentsequent) ; flush stderr ;
+ raise (InvokeTactics.RefreshSequentException e)
+with Not_found -> prerr_endline ("Offending sequent " ^ string_of_int metano ^ " unknown."); raise (InvokeTactics.RefreshSequentException e)
+
+
+module InvokeTacticsCallbacks =
+ struct
+ let sequent_viewer () = (rendering_window ())#notebook#proofw
+ let term_editor () = ((rendering_window ())#inputt : TermEditor.term_editor)
+ let get_current_scratch_infos () = !current_scratch_infos
+ let set_current_scratch_infos scratch_infos =
+ current_scratch_infos := scratch_infos
+
+ let refresh_proof () =
+ let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
+ refresh_proof output
+
+ let refresh_goals () =
+ let notebook = (rendering_window ())#notebook in
+ refresh_goals notebook
+
+ let decompose_uris_choice_callback = decompose_uris_choice_callback
+ let mk_fresh_name_callback = mk_fresh_name_callback
+ let output_html msg = output_html (outputhtml ()) msg
+ end
+;;
+
+module InvokeTactics' = InvokeTactics.Make(InvokeTacticsCallbacks);;
+
+
let load () =
let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
+ let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
let notebook = (rendering_window ())#notebook in
try
match
| (metano,_,_)::_ -> Some metano
) ;
refresh_proof output ;
- refresh_sequent notebook ;
+ refresh_goals notebook ;
output_html outputhtml
("<h1 color=\"Green\">Current proof type loaded from " ^
prooffiletype ^ "</h1>") ;
!save_set_sensitive true
| _ -> assert false
with
- RefreshSequentException e ->
+ InvokeTactics.RefreshSequentException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"sequent: " ^ Printexc.to_string e ^ "</h1>")
- | RefreshProofException e ->
+ | InvokeTactics.RefreshProofException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"proof: " ^ Printexc.to_string e ^ "</h1>")
let notebook = (rendering_window ())#notebook in
let output = (rendering_window ())#output 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:Misc.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
- L.to_sequent id ids_to_terms ids_to_father_ids ;
- refresh_proof output ;
- refresh_sequent notebook
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>")
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>")
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
- end
- | None -> assert false (* "ERROR: No selection!!!" *)
+ try
+ output#make_sequent_of_selected_term ;
+ refresh_proof output ;
+ refresh_goals notebook
+ with
+ InvokeTactics.RefreshSequentException e ->
+ output_html outputhtml
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "sequent: " ^ Printexc.to_string e ^ "</h1>")
+ | InvokeTactics.RefreshProofException e ->
+ output_html outputhtml
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "proof: " ^ Printexc.to_string e ^ "</h1>")
+ | e ->
+ output_html outputhtml
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
;;
let focus () =
let module G = Gdome in
let notebook = (rendering_window ())#notebook 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:Misc.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
- L.focus id ids_to_terms ids_to_father_ids ;
- refresh_sequent notebook
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>")
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>")
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
- end
- | None -> assert false (* "ERROR: No selection!!!" *)
+ let output = (rendering_window ())#output in
+ try
+ output#focus_sequent_of_selected_term ;
+ refresh_goals notebook
+ with
+ InvokeTactics.RefreshSequentException e ->
+ output_html outputhtml
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "sequent: " ^ Printexc.to_string e ^ "</h1>")
+ | InvokeTactics.RefreshProofException e ->
+ output_html outputhtml
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "proof: " ^ Printexc.to_string e ^ "</h1>")
+ | e ->
+ output_html outputhtml
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
;;
exception NoPrevGoal;;
| Some (_,metasenv,_,_) -> metasenv
in
try
- refresh_sequent ~empty_notebook:false notebook
+ refresh_goals ~empty_notebook:false notebook
with
- RefreshSequentException e ->
+ InvokeTactics.RefreshSequentException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"sequent: " ^ Printexc.to_string e ^ "</h1>")
Cic2acic.acic_object_of_cic_object obj
in
let mml =
- mml_of_cic_object ~explode_all:false uri acic ids_to_inner_sorts
- ids_to_inner_types
+ ApplyStylesheets.mml_of_cic_object
+ ~explode_all:false uri acic ids_to_inner_sorts ids_to_inner_types
in
window#set_title (UriManager.string_of_uri uri) ;
window#misc#hide () ; window#show () ;
let new_inductive () =
let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
+ let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
let notebook = (rendering_window ())#notebook in
let chosen = ref false in
("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
;;
-let mk_fresh_name_callback context name ~typ =
- let fresh_name =
- match ProofEngineHelpers.mk_fresh_name context name ~typ with
- Cic.Name fresh_name -> fresh_name
- | Cic.Anonymous -> assert false
- in
- match
- GToolbox.input_string ~title:"Enter a fresh hypothesis name" ~text:fresh_name
- ("Enter a fresh name for the hypothesis " ^
- CicPp.pp typ
- (List.map (function None -> None | Some (n,_) -> Some n) context))
- with
- Some fresh_name' -> Cic.Name fresh_name'
- | None -> raise NoChoice
-;;
-
let new_proof () =
let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
+ let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
let notebook = (rendering_window ())#notebook in
let chosen = ref false in
ProofEngine.proof :=
Some (!get_uri (), (1,[],expr)::metasenv, Cic.Meta (1,[]), expr) ;
ProofEngine.goal := Some 1 ;
- refresh_sequent notebook ;
+ refresh_goals notebook ;
refresh_proof output ;
!save_set_sensitive true ;
inputt#reset ;
ProofEngine.intros ~mk_fresh_name_callback () ;
- refresh_sequent notebook ;
+ refresh_goals notebook ;
refresh_proof output
with
- RefreshSequentException e ->
+ InvokeTactics.RefreshSequentException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"sequent: " ^ Printexc.to_string e ^ "</h1>")
- | RefreshProofException e ->
+ | InvokeTactics.RefreshProofException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"proof: " ^ Printexc.to_string e ^ "</h1>")
let check_term_in_scratch scratch_window metasenv context expr =
try
let ty = CicTypeChecker.type_of_aux' metasenv context expr in
- let mml = mml_of_cic_term 111 (Cic.Cast (expr,ty)) in
+ let mml,scratch_infos =
+ ApplyStylesheets.mml_of_cic_term 111 (Cic.Cast (expr,ty))
+ in
+ current_scratch_infos := Some scratch_infos ;
scratch_window#show () ;
scratch_window#mmlwidget#load_doc ~dom:mml
with
("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
;;
-let decompose_uris_choice_callback uris =
-(* N.B.: in questo passaggio perdo l'informazione su exp_named_subst !!!! *)
- let module U = UriManager in
- List.map
- (function uri ->
- match Misc.cic_textual_parser_uri_of_string uri with
- CicTextualParser0.IndTyUri (uri,typeno) -> (uri,typeno,[])
- | _ -> assert false)
- (interactive_user_uri_choice
- ~selection_mode:`EXTENDED ~ok:"Ok" ~enable_button_for_non_vars:false
- ~title:"Decompose" ~msg:"Please, select the Inductive Types to decompose"
- (List.map
- (function (uri,typeno,_) ->
- U.string_of_uri uri ^ "#1/" ^ string_of_int (typeno+1)
- ) uris)
- )
-;;
-
-(***********************)
-(* TACTICS *)
-(***********************)
-
-let call_tactic tactic () =
- let notebook = (rendering_window ())#notebook in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_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 notebook ;
- refresh_proof output
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook ;
- refresh_proof output
- | 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 () =
- let notebook = (rendering_window ())#notebook in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- let uri,metasenv,bo,ty =
- match !ProofEngine.proof with
- None -> assert false
- | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
- in
- let canonical_context =
- match !ProofEngine.goal with
- None -> assert false
- | Some metano ->
- let (_,canonical_context,_) =
- List.find (function (m,_,_) -> m=metano) metasenv
- in
- canonical_context
- in
- try
- let metasenv',expr =
- inputt#get_metasenv_and_term canonical_context metasenv
- in
- ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
- tactic expr ;
- refresh_sequent notebook ;
- refresh_proof output ;
- inputt#reset
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook ;
- refresh_proof output
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
-;;
-
-let call_tactic_with_goal_input tactic () =
- let module L = LogicalOperations in
- let module G = Gdome in
- let notebook = (rendering_window ())#notebook in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- match notebook#proofw#get_selections with
- [node] ->
- let xpath =
- ((node : Gdome.element)#getAttributeNS
- ~namespaceURI:Misc.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 notebook ;
- refresh_proof output
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook ;
- refresh_proof output
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- end
- | [] ->
- output_html outputhtml
- ("<h1 color=\"red\">No term selected</h1>")
- | _ ->
- output_html outputhtml
- ("<h1 color=\"red\">Many terms selected</h1>")
-;;
-
-let call_tactic_with_goal_inputs tactic () =
- let module L = LogicalOperations in
- let module G = Gdome in
- let notebook = (rendering_window ())#notebook in
- let output =
- ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- try
- let term_of_node node =
- let xpath =
- ((node : Gdome.element)#getAttributeNS
- ~namespaceURI:Misc.helmns
- ~localName:(G.domString "xref"))#to_string
- in
- if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
- else
- match !current_goal_infos with
- Some (ids_to_terms, ids_to_father_ids,_) ->
- let id = xpath in
- (Hashtbl.find ids_to_terms id)
- | None -> assert false (* "ERROR: No current term!!!" *)
- in
- match notebook#proofw#get_selections with
- [] ->
- output_html outputhtml
- ("<h1 color=\"red\">No term selected</h1>")
- | l ->
- let terms = List.map term_of_node l in
- match !current_goal_infos with
- Some (ids_to_terms, ids_to_father_ids,_) ->
- tactic terms ;
- refresh_sequent notebook ;
- refresh_proof output
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook ;
- refresh_proof output
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal
-;;
-
-let call_tactic_with_input_and_goal_input tactic () =
- let module L = LogicalOperations in
- let module G = Gdome in
- let notebook = (rendering_window ())#notebook in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let inputt = ((rendering_window ())#inputt : TermEditor.term_editor) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- match notebook#proofw#get_selections with
- [node] ->
- let xpath =
- ((node : Gdome.element)#getAttributeNS
- ~namespaceURI:Misc.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 uri,metasenv,bo,ty =
- match !ProofEngine.proof with
- None -> assert false
- | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
- in
- let canonical_context =
- match !ProofEngine.goal with
- None -> assert false
- | Some metano ->
- let (_,canonical_context,_) =
- List.find (function (m,_,_) -> m=metano) metasenv
- in
- canonical_context in
- let (metasenv',expr) =
- inputt#get_metasenv_and_term canonical_context metasenv
- in
- ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
- tactic ~goal_input:(Hashtbl.find ids_to_terms id)
- ~input:expr ;
- refresh_sequent notebook ;
- refresh_proof output ;
- inputt#reset
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook ;
- refresh_proof output
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- end
- | [] ->
- output_html outputhtml
- ("<h1 color=\"red\">No term selected</h1>")
- | _ ->
- output_html outputhtml
- ("<h1 color=\"red\">Many terms 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 : GMathViewAux.multi_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- match mmlwidget#get_selections with
- [node] ->
- let xpath =
- ((node : Gdome.element)#getAttributeNS
- ~namespaceURI:Misc.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 111 expr in
- scratch_window#show () ;
- scratch_window#mmlwidget#load_doc ~dom:mml
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
- end
- | [] ->
- output_html outputhtml
- ("<h1 color=\"red\">No term selected</h1>")
- | _ ->
- output_html outputhtml
- ("<h1 color=\"red\">Many terms selected</h1>")
-;;
-
-let call_tactic_with_goal_inputs_in_scratch tactic scratch_window () =
- let module L = LogicalOperations in
- let module G = Gdome in
- let mmlwidget =
- (scratch_window#mmlwidget : GMathViewAux.multi_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- match mmlwidget#get_selections with
- [] ->
- output_html outputhtml
- ("<h1 color=\"red\">No term selected</h1>")
- | l ->
- 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 term_of_node node =
- let xpath =
- ((node : Gdome.element)#getAttributeNS
- ~namespaceURI:Misc.helmns
- ~localName:(G.domString "xref"))#to_string
- in
- if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
- else
- let id = xpath in
- Hashtbl.find ids_to_terms id
- in
- let terms = List.map term_of_node l in
- let expr = tactic terms term in
- let mml = mml_of_cic_term 111 expr in
- scratch_window#show () ;
- scratch_window#mmlwidget#load_doc ~dom:mml
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
-;;
-
-let call_tactic_with_hypothesis_input tactic () =
- let module L = LogicalOperations in
- let module G = Gdome in
- let notebook = (rendering_window ())#notebook in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
- let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let savedproof = !ProofEngine.proof in
- let savedgoal = !ProofEngine.goal in
- match notebook#proofw#get_selections with
- [node] ->
- let xpath =
- ((node : Gdome.element)#getAttributeNS
- ~namespaceURI:Misc.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_hypotheses) ->
- let id = xpath in
- tactic (Hashtbl.find ids_to_hypotheses id) ;
- refresh_sequent notebook ;
- refresh_proof output
- | None -> assert false (* "ERROR: No current term!!!" *)
- with
- RefreshSequentException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook
- | RefreshProofException e ->
- output_html outputhtml
- ("<h1 color=\"red\">Exception raised during the refresh of the " ^
- "proof: " ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- refresh_sequent notebook ;
- refresh_proof output
- | e ->
- output_html outputhtml
- ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
- ProofEngine.proof := savedproof ;
- ProofEngine.goal := savedgoal ;
- end
- | [] ->
- output_html outputhtml
- ("<h1 color=\"red\">No term selected</h1>")
- | _ ->
- output_html outputhtml
- ("<h1 color=\"red\">Many terms selected</h1>")
-;;
-
-
-let intros = call_tactic (ProofEngine.intros ~mk_fresh_name_callback);;
-let exact = call_tactic_with_input ProofEngine.exact;;
-let apply = call_tactic_with_input ProofEngine.apply;;
-let elimintrossimpl = call_tactic_with_input ProofEngine.elim_intros_simpl;;
-let elimtype = call_tactic_with_input ProofEngine.elim_type;;
-let whd = call_tactic_with_goal_inputs ProofEngine.whd;;
-let reduce = call_tactic_with_goal_inputs ProofEngine.reduce;;
-let simpl = call_tactic_with_goal_inputs ProofEngine.simpl;;
-let fold_whd = call_tactic_with_input ProofEngine.fold_whd;;
-let fold_reduce = call_tactic_with_input ProofEngine.fold_reduce;;
-let fold_simpl = call_tactic_with_input ProofEngine.fold_simpl;;
-let cut = call_tactic_with_input (ProofEngine.cut ~mk_fresh_name_callback);;
-let change = call_tactic_with_input_and_goal_input ProofEngine.change;;
-let letin = call_tactic_with_input (ProofEngine.letin ~mk_fresh_name_callback);;
-let ring = call_tactic ProofEngine.ring;;
-let clearbody = call_tactic_with_hypothesis_input ProofEngine.clearbody;;
-let clear = call_tactic_with_hypothesis_input ProofEngine.clear;;
-let fourier = call_tactic ProofEngine.fourier;;
-let rewritesimpl = call_tactic_with_input ProofEngine.rewrite_simpl;;
-let rewritebacksimpl = call_tactic_with_input ProofEngine.rewrite_back_simpl;;
-let replace = call_tactic_with_input_and_goal_input ProofEngine.replace;;
-let reflexivity = call_tactic ProofEngine.reflexivity;;
-let symmetry = call_tactic ProofEngine.symmetry;;
-let transitivity = call_tactic_with_input ProofEngine.transitivity;;
-let exists = call_tactic ProofEngine.exists;;
-let split = call_tactic ProofEngine.split;;
-let left = call_tactic ProofEngine.left;;
-let right = call_tactic ProofEngine.right;;
-let assumption = call_tactic ProofEngine.assumption;;
-let generalize =
- call_tactic_with_goal_inputs (ProofEngine.generalize ~mk_fresh_name_callback);;
-let absurd = call_tactic_with_input ProofEngine.absurd;;
-let contradiction = call_tactic ProofEngine.contradiction;;
-let decompose =
- call_tactic_with_input
- (ProofEngine.decompose ~uris_choice_callback:decompose_uris_choice_callback);;
-
-let whd_in_scratch scratch_window =
- call_tactic_with_goal_inputs_in_scratch ProofEngine.whd_in_scratch
- scratch_window
-;;
-let reduce_in_scratch scratch_window =
- call_tactic_with_goal_inputs_in_scratch ProofEngine.reduce_in_scratch
- scratch_window
-;;
-let simpl_in_scratch scratch_window =
- call_tactic_with_goal_inputs_in_scratch ProofEngine.simpl_in_scratch
- scratch_window
-;;
-
-
-
-(**********************)
-(* END OF TACTICS *)
-(**********************)
-
-
let show () =
let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
try
let open_ () =
let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
- let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
+ let output = ((rendering_window ())#output : TermViewer.proof_viewer) in
let notebook = (rendering_window ())#notebook in
try
let uri = input_or_locate_uri ~title:"Open" in
ProofEngine.proof :=
Some (uri, metasenv, bo, ty) ;
ProofEngine.goal := None ;
- refresh_sequent notebook ;
+ refresh_goals notebook ;
refresh_proof output
with
- RefreshSequentException e ->
+ InvokeTactics.RefreshSequentException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"sequent: " ^ Printexc.to_string e ^ "</h1>")
- | RefreshProofException e ->
+ | InvokeTactics.RefreshProofException e ->
output_html outputhtml
("<h1 color=\"red\">Exception raised during the refresh of the " ^
"proof: " ^ Printexc.to_string e ^ "</h1>")
uris'
in
inputt#set_term uri' ;
- apply ()
+ InvokeTactics'.apply ()
with
e ->
output_html outputhtml
(* Stuff for the widget settings *)
-let export_to_postscript (output : GMathViewAux.single_selection_math_view) =
+let export_to_postscript output =
let lastdir = ref (Unix.getcwd ()) in
function () ->
match
with
None -> ()
| Some filename ->
- output#export_to_postscript ~filename:filename ();
+ (output :> GMathView.math_view)#export_to_postscript
+ ~filename:filename ();
;;
-let activate_t1 (output : GMathViewAux.single_selection_math_view) button_set_anti_aliasing
+let activate_t1 output button_set_anti_aliasing
button_set_transparency export_to_postscript_menu_item
button_t1 ()
=
let is_set = button_t1#active in
output#set_font_manager_type
- (if is_set then `font_manager_t1 else `font_manager_gtk) ;
+ ~fm_type:(if is_set then `font_manager_t1 else `font_manager_gtk) ;
if is_set then
begin
button_set_anti_aliasing#misc#set_sensitive true ;
output#set_log_verbosity log_verbosity_spinb#value_as_int
;;
-class settings_window (output : GMathViewAux.single_selection_math_view) sw
+class settings_window output sw
export_to_postscript_menu_item selection_changed_callback
=
let settings_window = GWindow.window ~title:"GtkMathView settings" () in
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))
+ ignore(whdb#connect#clicked (InvokeTactics'.whd_in_scratch self)) ;
+ ignore(reduceb#connect#clicked (InvokeTactics'.reduce_in_scratch self)) ;
+ ignore(simplb#connect#clicked (InvokeTactics'.simpl_in_scratch self))
end;;
let open_contextual_menu_for_selected_terms mmlwidget infos =
let menu = GMenu.menu () in
let f = new GMenu.factory menu in
let whd_menu_item =
- f#add_item "Whd" ~key:GdkKeysyms._W ~callback:whd in
+ f#add_item "Whd" ~key:GdkKeysyms._W ~callback:InvokeTactics'.whd in
let reduce_menu_item =
- f#add_item "Reduce" ~key:GdkKeysyms._R ~callback:reduce in
+ f#add_item "Reduce" ~key:GdkKeysyms._R ~callback:InvokeTactics'.reduce in
let simpl_menu_item =
- f#add_item "Simpl" ~key:GdkKeysyms._S ~callback:simpl in
+ f#add_item "Simpl" ~key:GdkKeysyms._S ~callback:InvokeTactics'.simpl in
let _ = f#add_separator () in
let generalize_menu_item =
- f#add_item "Generalize" ~key:GdkKeysyms._G ~callback:generalize in
+ f#add_item "Generalize"
+ ~key:GdkKeysyms._G ~callback:InvokeTactics'.generalize in
let _ = f#add_separator () in
let clear_menu_item =
- f#add_item "Clear" ~key:GdkKeysyms._C ~callback:clear in
+ f#add_item "Clear" ~key:GdkKeysyms._C ~callback:InvokeTactics'.clear in
let clearbody_menu_item =
- f#add_item "ClearBody" ~key:GdkKeysyms._B ~callback:clearbody
+ f#add_item "ClearBody"
+ ~key:GdkKeysyms._B ~callback:InvokeTactics'.clearbody
in
whd_menu_item#misc#set_sensitive terms_selected ;
reduce_menu_item#misc#set_sensitive terms_selected ;
GBin.scrolled_window ~border_width:10
~packing:(vbox1#pack ~expand:true ~padding:5) () in
let proofw =
- GMathViewAux.multi_selection_math_view ~width:400 ~height:275
+ TermViewer.sequent_viewer ~width:400 ~height:275
~packing:(scrolled_window1#add) () in
let _ = proofw_ref <- Some proofw in
let hbox3 =
~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
*)
- ignore(exactb#connect#clicked exact) ;
- ignore(applyb#connect#clicked apply) ;
- ignore(elimintrossimplb#connect#clicked elimintrossimpl) ;
- ignore(elimtypeb#connect#clicked elimtype) ;
- ignore(foldwhdb#connect#clicked fold_whd) ;
- ignore(foldreduceb#connect#clicked fold_reduce) ;
- ignore(foldsimplb#connect#clicked fold_simpl) ;
- ignore(cutb#connect#clicked cut) ;
- ignore(changeb#connect#clicked change) ;
- ignore(letinb#connect#clicked letin) ;
- ignore(ringb#connect#clicked ring) ;
- ignore(fourierb#connect#clicked fourier) ;
- ignore(rewritesimplb#connect#clicked rewritesimpl) ;
- ignore(rewritebacksimplb#connect#clicked rewritebacksimpl) ;
- ignore(replaceb#connect#clicked replace) ;
- ignore(reflexivityb#connect#clicked reflexivity) ;
- ignore(symmetryb#connect#clicked symmetry) ;
- ignore(transitivityb#connect#clicked transitivity) ;
- ignore(existsb#connect#clicked exists) ;
- ignore(splitb#connect#clicked split) ;
- ignore(leftb#connect#clicked left) ;
- ignore(rightb#connect#clicked right) ;
- ignore(assumptionb#connect#clicked assumption) ;
- ignore(absurdb#connect#clicked absurd) ;
- ignore(contradictionb#connect#clicked contradiction) ;
- ignore(introsb#connect#clicked intros) ;
+ ignore(exactb#connect#clicked InvokeTactics'.exact) ;
+ ignore(applyb#connect#clicked InvokeTactics'.apply) ;
+ ignore(elimintrossimplb#connect#clicked InvokeTactics'.elimintrossimpl) ;
+ ignore(elimtypeb#connect#clicked InvokeTactics'.elimtype) ;
+ ignore(foldwhdb#connect#clicked InvokeTactics'.fold_whd) ;
+ ignore(foldreduceb#connect#clicked InvokeTactics'.fold_reduce) ;
+ ignore(foldsimplb#connect#clicked InvokeTactics'.fold_simpl) ;
+ ignore(cutb#connect#clicked InvokeTactics'.cut) ;
+ ignore(changeb#connect#clicked InvokeTactics'.change) ;
+ ignore(letinb#connect#clicked InvokeTactics'.letin) ;
+ ignore(ringb#connect#clicked InvokeTactics'.ring) ;
+ ignore(fourierb#connect#clicked InvokeTactics'.fourier) ;
+ ignore(rewritesimplb#connect#clicked InvokeTactics'.rewritesimpl) ;
+ ignore(rewritebacksimplb#connect#clicked InvokeTactics'.rewritebacksimpl) ;
+ ignore(replaceb#connect#clicked InvokeTactics'.replace) ;
+ ignore(reflexivityb#connect#clicked InvokeTactics'.reflexivity) ;
+ ignore(symmetryb#connect#clicked InvokeTactics'.symmetry) ;
+ ignore(transitivityb#connect#clicked InvokeTactics'.transitivity) ;
+ ignore(existsb#connect#clicked InvokeTactics'.exists) ;
+ ignore(splitb#connect#clicked InvokeTactics'.split) ;
+ ignore(leftb#connect#clicked InvokeTactics'.left) ;
+ ignore(rightb#connect#clicked InvokeTactics'.right) ;
+ ignore(assumptionb#connect#clicked InvokeTactics'.assumption) ;
+ ignore(absurdb#connect#clicked InvokeTactics'.absurd) ;
+ ignore(contradictionb#connect#clicked InvokeTactics'.contradiction) ;
+ ignore(introsb#connect#clicked InvokeTactics'.intros) ;
+ ignore(decomposeb#connect#clicked InvokeTactics'.decompose) ;
ignore(searchpatternb#connect#clicked searchPattern) ;
- ignore(proofw#connect#selection_changed (choose_selection proofw)) ;
- ignore
- ((new GObj.event_ops proofw#as_widget)#connect#button_press
- (open_contextual_menu_for_selected_terms proofw)) ;
- ignore(decomposeb#connect#clicked decompose) ;
(* Zack: spostare in una toolbar
ignore(whdb#connect#clicked whd) ;
ignore(reduceb#connect#clicked reduce) ;
ignore(clearb#connect#clicked clear) ;
ignore(generalizeb#connect#clicked generalize) ;
*)
+ ignore(proofw#connect#selection_changed (choose_selection proofw)) ;
+ ignore
+ ((new GObj.event_ops proofw#as_widget)#connect#button_press
+ (open_contextual_menu_for_selected_terms proofw)) ;
))
end
;;
GBin.scrolled_window ~border_width:10
~packing:(vbox1#pack ~expand:true ~padding:5) () in
let proofw =
- GMathViewAux.single_selection_math_view ~width:400 ~height:275
+ TermViewer.sequent_viewer ~width:400 ~height:275
~packing:(scrolled_window1#add) () in
object(self)
- method proofw = (assert false : GMathViewAux.single_selection_math_view)
+ method proofw = (assert false : TermViewer.sequent_viewer)
method content = vbox1
method compute = (assert false : unit)
end
object
method outputhtml = outputhtml
method inputt = inputt
- method output = (output : GMathViewAux.single_selection_math_view)
+ method output = (output : TermViewer.proof_viewer)
method notebook = notebook
method show = window#show
initializer
let initialize_everything () =
let module U = Unix in
- let output = GMathViewAux.single_selection_math_view ~width:350 ~height:280 () in
+ let output = TermViewer.proof_viewer ~width:350 ~height:280 () in
let notebook = new notebook in
let rendering_window' = new rendering_window output notebook in
set_rendering_window rendering_window' ;
- mml_of_cic_term_ref := mml_of_cic_term ;
rendering_window'#show () ;
GMain.Main.main ()
;;
--- /dev/null
+(* Copyright (C) 2000-2002, HELM Team.
+ *
+ * This file is part of HELM, an Hypertextual, Electronic
+ * Library of Mathematics, developed at the Computer Science
+ * Department, University of Bologna, Italy.
+ *
+ * HELM is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * HELM is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with HELM; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ *
+ * For details, see the HELM World-Wide-Web page,
+ * http://cs.unibo.it/helm/.
+ *)
+
+(******************************************************************************)
+(* *)
+(* PROJECT HELM *)
+(* *)
+(* Claudio Sacerdoti Coen <sacerdot@cs.unibo.it> *)
+(* 29/01/2003 *)
+(* *)
+(* *)
+(******************************************************************************)
+
+exception RefreshSequentException of exn;;
+exception RefreshProofException of exn;;
+
+module type Callbacks =
+ sig
+ val sequent_viewer : unit -> TermViewer.sequent_viewer
+ val term_editor : unit -> TermEditor.term_editor
+ val get_current_scratch_infos :
+ unit ->
+ (Cic.term *
+ (Cic.id, Cic.term) Hashtbl.t *
+ (Cic.id, Cic.id option) Hashtbl.t *
+ (string, Cic.hypothesis) Hashtbl.t
+ ) option
+ val set_current_scratch_infos :
+ (Cic.term *
+ (Cic.id, Cic.term) Hashtbl.t *
+ (Cic.id, Cic.id option) Hashtbl.t *
+ (string, Cic.hypothesis) Hashtbl.t
+ ) option -> unit
+ val refresh_proof : unit -> unit
+ val refresh_goals : unit -> unit
+ val decompose_uris_choice_callback :
+ (UriManager.uri * int * 'a) list ->
+ (UriManager.uri * int * 'b list) list
+ val mk_fresh_name_callback :
+ Cic.context -> Cic.name -> typ:Cic.term -> Cic.name
+ val output_html : string -> unit
+ end
+;;
+
+module Make(C:Callbacks) =
+ struct
+
+ let call_tactic tactic () =
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ begin
+ try
+ tactic () ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ with
+ RefreshSequentException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals ()
+ | RefreshProofException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "proof: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ | e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal
+ end
+
+ let call_tactic_with_input tactic () =
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ let uri,metasenv,bo,ty =
+ match !ProofEngine.proof with
+ None -> assert false
+ | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
+ in
+ let canonical_context =
+ match !ProofEngine.goal with
+ None -> assert false
+ | Some metano ->
+ let (_,canonical_context,_) =
+ List.find (function (m,_,_) -> m=metano) metasenv
+ in
+ canonical_context
+ in
+ try
+ let metasenv',expr =
+ (C.term_editor ())#get_metasenv_and_term canonical_context metasenv
+ in
+ ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
+ tactic expr ;
+ C.refresh_goals () ;
+ C.refresh_proof () ;
+ (C.term_editor ())#reset
+ with
+ RefreshSequentException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals ()
+ | RefreshProofException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "proof: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ | e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal
+
+ let call_tactic_with_goal_input tactic () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ match (C.sequent_viewer ())#get_selected_terms with
+ [term] ->
+ begin
+ try
+ tactic term ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ with
+ RefreshSequentException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of " ^
+ "the sequent: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals ()
+ | RefreshProofException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of " ^
+ "the proof: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ | e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ end
+ | [] ->
+ C.output_html
+ ("<h1 color=\"red\">No term selected</h1>")
+ | _ ->
+ C.output_html
+ ("<h1 color=\"red\">Many terms selected</h1>")
+
+ let call_tactic_with_goal_inputs tactic () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ try
+ match (C.sequent_viewer ())#get_selected_terms with
+ [] ->
+ C.output_html
+ ("<h1 color=\"red\">No term selected</h1>")
+ | terms ->
+ tactic terms ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ with
+ RefreshSequentException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals ()
+ | RefreshProofException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of the " ^
+ "proof: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ | e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal
+
+ let call_tactic_with_input_and_goal_input tactic () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ match (C.sequent_viewer ())#get_selected_terms with
+ [term] ->
+ begin
+ try
+ let uri,metasenv,bo,ty =
+ match !ProofEngine.proof with
+ None -> assert false
+ | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
+ in
+ let canonical_context =
+ match !ProofEngine.goal with
+ None -> assert false
+ | Some metano ->
+ let (_,canonical_context,_) =
+ List.find (function (m,_,_) -> m=metano) metasenv
+ in
+ canonical_context in
+ let (metasenv',expr) =
+ (C.term_editor ())#get_metasenv_and_term canonical_context metasenv
+ in
+ ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
+ tactic ~goal_input:term ~input:expr ;
+ C.refresh_goals () ;
+ C.refresh_proof () ;
+ (C.term_editor ())#reset
+ with
+ RefreshSequentException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of " ^
+ "the sequent: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals ()
+ | RefreshProofException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of " ^
+ "the proof: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ | e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ end
+ | [] ->
+ C.output_html
+ ("<h1 color=\"red\">No term selected</h1>")
+ | _ ->
+ C.output_html
+ ("<h1 color=\"red\">Many terms 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 : GMathViewAux.multi_selection_math_view) in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ match mmlwidget#get_selections with
+ [node] ->
+ let xpath =
+ ((node : Gdome.element)#getAttributeNS
+ ~namespaceURI:Misc.helmns
+ ~localName:(G.domString "xref"))#to_string
+ in
+ if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+ else
+ begin
+ try
+ match C.get_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,scratch_infos =
+ ApplyStylesheets.mml_of_cic_term 111 expr
+ in
+ C.set_current_scratch_infos (Some scratch_infos) ;
+ scratch_window#show () ;
+ scratch_window#mmlwidget#load_doc ~dom:mml
+ | None -> assert false (* "ERROR: No current term!!!" *)
+ with
+ e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+ end
+ | [] ->
+ C.output_html
+ ("<h1 color=\"red\">No term selected</h1>")
+ | _ ->
+ C.output_html
+ ("<h1 color=\"red\">Many terms selected</h1>")
+
+ let call_tactic_with_goal_inputs_in_scratch tactic scratch_window () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+ let mmlwidget =
+ (scratch_window#mmlwidget : GMathViewAux.multi_selection_math_view) in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ match mmlwidget#get_selections with
+ [] ->
+ C.output_html
+ ("<h1 color=\"red\">No term selected</h1>")
+ | l ->
+ try
+ match C.get_current_scratch_infos () with
+ (* term is the whole goal in the scratch_area *)
+ Some (term,ids_to_terms, ids_to_father_ids,_) ->
+ let term_of_node node =
+ let xpath =
+ ((node : Gdome.element)#getAttributeNS
+ ~namespaceURI:Misc.helmns
+ ~localName:(G.domString "xref"))#to_string
+ in
+ if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+ else
+ let id = xpath in
+ Hashtbl.find ids_to_terms id
+ in
+ let terms = List.map term_of_node l in
+ let expr = tactic terms term in
+ let mml,scratch_infos =
+ ApplyStylesheets.mml_of_cic_term 111 expr
+ in
+ C.set_current_scratch_infos (Some scratch_infos) ;
+ scratch_window#show () ;
+ scratch_window#mmlwidget#load_doc ~dom:mml
+ | None -> assert false (* "ERROR: No current term!!!" *)
+ with
+ e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+
+ let call_tactic_with_hypothesis_input tactic () =
+ let module L = LogicalOperations in
+ let module G = Gdome in
+ let savedproof = !ProofEngine.proof in
+ let savedgoal = !ProofEngine.goal in
+ match (C.sequent_viewer ())#get_selected_hypotheses with
+ [hypothesis] ->
+ begin
+ try
+ tactic hypothesis ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ with
+ RefreshSequentException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of " ^
+ "the sequent: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals ()
+ | RefreshProofException e ->
+ C.output_html
+ ("<h1 color=\"red\">Exception raised during the refresh of " ^
+ "the proof: " ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ C.refresh_goals () ;
+ C.refresh_proof ()
+ | e ->
+ C.output_html
+ ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+ ProofEngine.proof := savedproof ;
+ ProofEngine.goal := savedgoal ;
+ end
+ | [] ->
+ C.output_html
+ ("<h1 color=\"red\">No hypothesis selected</h1>")
+ | _ ->
+ C.output_html
+ ("<h1 color=\"red\">Many hypothesis selected</h1>")
+
+
+ let intros =
+ call_tactic
+ (ProofEngine.intros ~mk_fresh_name_callback:C.mk_fresh_name_callback)
+ let exact = call_tactic_with_input ProofEngine.exact
+ let apply = call_tactic_with_input ProofEngine.apply
+ let elimintrossimpl = call_tactic_with_input ProofEngine.elim_intros_simpl
+ let elimtype = call_tactic_with_input ProofEngine.elim_type
+ let whd = call_tactic_with_goal_inputs ProofEngine.whd
+ let reduce = call_tactic_with_goal_inputs ProofEngine.reduce
+ let simpl = call_tactic_with_goal_inputs ProofEngine.simpl
+ let fold_whd = call_tactic_with_input ProofEngine.fold_whd
+ let fold_reduce = call_tactic_with_input ProofEngine.fold_reduce
+ let fold_simpl = call_tactic_with_input ProofEngine.fold_simpl
+ let cut =
+ call_tactic_with_input
+ (ProofEngine.cut ~mk_fresh_name_callback:C.mk_fresh_name_callback)
+ let change = call_tactic_with_input_and_goal_input ProofEngine.change
+ let letin =
+ call_tactic_with_input
+ (ProofEngine.letin ~mk_fresh_name_callback:C.mk_fresh_name_callback)
+ let ring = call_tactic ProofEngine.ring
+ let clearbody = call_tactic_with_hypothesis_input ProofEngine.clearbody
+ let clear = call_tactic_with_hypothesis_input ProofEngine.clear
+ let fourier = call_tactic ProofEngine.fourier
+ let rewritesimpl = call_tactic_with_input ProofEngine.rewrite_simpl
+ let rewritebacksimpl = call_tactic_with_input ProofEngine.rewrite_back_simpl
+ let replace = call_tactic_with_input_and_goal_input ProofEngine.replace
+ let reflexivity = call_tactic ProofEngine.reflexivity
+ let symmetry = call_tactic ProofEngine.symmetry
+ let transitivity = call_tactic_with_input ProofEngine.transitivity
+ let exists = call_tactic ProofEngine.exists
+ let split = call_tactic ProofEngine.split
+ let left = call_tactic ProofEngine.left
+ let right = call_tactic ProofEngine.right
+ let assumption = call_tactic ProofEngine.assumption
+ let generalize =
+ call_tactic_with_goal_inputs
+ (ProofEngine.generalize ~mk_fresh_name_callback:C.mk_fresh_name_callback)
+ let absurd = call_tactic_with_input ProofEngine.absurd
+ let contradiction = call_tactic ProofEngine.contradiction
+ let decompose =
+ call_tactic_with_input
+ (ProofEngine.decompose
+ ~uris_choice_callback:C.decompose_uris_choice_callback)
+ let whd_in_scratch scratch_window =
+ call_tactic_with_goal_inputs_in_scratch ProofEngine.whd_in_scratch
+ scratch_window
+ let reduce_in_scratch scratch_window =
+ call_tactic_with_goal_inputs_in_scratch ProofEngine.reduce_in_scratch
+ scratch_window
+ let simpl_in_scratch scratch_window =
+ call_tactic_with_goal_inputs_in_scratch ProofEngine.simpl_in_scratch
+ scratch_window
+
+end
+;;