Compare commits

...

5 Commits

Author SHA1 Message Date
Achim D. Brucker b255de9ea7 Basis handling of lists in ltx_of_term.
HOL-OCL/Isabelle_DOF/master There was a failure building this commit Details
2019-03-11 21:21:56 +00:00
Achim D. Brucker d3ae88ed10 Merge branch 'master' of logicalhacking.com:HOL-OCL/Isabelle_DOF 2019-03-11 20:42:51 +00:00
Achim D. Brucker f8bcd2557c Removed call to obsolete unquote_string. 2019-03-09 21:13:04 +00:00
Achim D. Brucker a2a1f2dc3f Manual merge. 2019-03-09 21:04:39 +00:00
Achim D. Brucker a7ebfff71e Initial implementation of ltx_of_markup. 2019-03-09 21:02:52 +00:00
1 changed files with 29 additions and 11 deletions

View File

@ -853,7 +853,6 @@ setup\<open>DOF_core.update_isa_global("thm" ,ISA_core.ML_isa_check_thm) \<
setup\<open>DOF_core.update_isa_global("file" ,ISA_core.ML_isa_check_file) \<close>
setup\<open>DOF_core.update_isa_global("docitem" ,ISA_core.ML_isa_check_docitem)\<close>
section\<open> Syntax for Annotated Documentation Commands (the '' View'' Part I) \<close>
ML\<open>
structure ODL_Command_Parser =
@ -872,21 +871,40 @@ fun meta_args_2_string thy ((((lab, _), cid_opt), attr_list) : meta_args_t) =
| SOME(cid,_) => DOF_core.name2doc_class_name thy cid
val cid_txt = "type = " ^ (enclose "{" "}" cid_long);
(* TODO: temp. hack *)
fun unquote_string s = if String.isPrefix "''" s then
String.substring(s,2,(String.size s)-4)
else s
fun markup2string s = unquote_string (String.concat (List.filter (fn c => c <> Symbol.DEL)
(Symbol.explode (YXML.content_of s))))
fun ltx_of_term _ (((Const ("List.list.Cons", t1) $ (Const ("String.Char", t2 ) $ t))) $ t')
= (HOLogic.dest_string (((Const ("List.list.Cons", t1) $ (Const ("String.Char", t2 ) $ t))) $ t'))
| ltx_of_term _ (@{term "numeral :: _ \<Rightarrow> _"} $ t) = Int.toString(HOLogic.dest_numeral t)
| ltx_of_term ctx ((Const ("List.list.Cons", _) $ t1) $ t2) = (case t2 of
Const ("List.list.Nil", _) => (ltx_of_term ctx t1)
|_ => ((ltx_of_term ctx t1)^", " ^(ltx_of_term ctx t2))
)
| ltx_of_term ctxt t = ""^(Sledgehammer_Util.hackish_string_of_term ctxt t)
fun markup2string s = String.concat (List.filter (fn c => c <> Symbol.DEL) (Symbol.explode (YXML.content_of s)))
fun ltx_of_markup s = let
val ctxt = Proof_Context.init_global thy
val term = (Syntax.check_term ctxt o Syntax.parse_term ctxt) s
val str_of_term = ltx_of_term ctxt term
handle _ => "Exception in ltx_of_term"
(* For debugging:
val old_str = (markup2string s)
val _ = writeln("<OLD_STR>"^old_str^"</OLD_STR>")
val _ = writeln("<NEW_STR>"^str_of_term^"</NEW_STR>")
val t_str = ML_Syntax.print_term term
handle (TERM _) => "Exception TERM in ltx_of_markup (print_term)"
val _ = writeln("<TERM>"^t_str^"</TERM>")
*)
in
str_of_term
end
fun toLong n = #long_name(the(DOF_core.get_attribute_info cid_long (markup2string n) thy))
fun str ((lhs,_),rhs) = (toLong lhs)^" = "^(enclose "{" "}" (markup2string rhs))
fun str ((lhs,_),rhs) = (toLong lhs)^" = "^(enclose "{" "}" (ltx_of_markup rhs))
(* no normalization on lhs (could be long-name)
no paraphrasing on rhs (could be fully paranthesized
pretty-printed formula in LaTeX notation ... *)
in
enclose "[" "]" (String.concat [ cid_txt, ", args={", (commas ([cid_txt,l] @ (map str attr_list ))), "}"])
end
(enclose "[" "]" (String.concat [ cid_txt, ", args={", (commas ([cid_txt,l] @ (map str attr_list ))), "}"]))
end
val semi = Scan.option (Parse.$$$ ";");
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore);