├── .hgignore ├── .hgtags ├── ANNOUNCE ├── Admin ├── Isabelle_app │ ├── Isabelle.c │ └── build ├── Mercurial │ ├── Central │ │ ├── Mercurial │ │ ├── README │ │ └── hgrc │ ├── cvsids │ ├── hgwebdir.cgi │ ├── isabelle-style-1.3.1.diff │ ├── isabelle-style-1.4.3--1.8.2.diff │ └── mercurial-6.1.4-hgweb.patch ├── README ├── Release │ ├── CHECKLIST │ ├── isasync │ ├── mirror-website │ └── official ├── Windows │ ├── Cygwin │ │ ├── Cygwin-Setup.bat │ │ ├── Cygwin-Terminal.bat │ │ ├── README │ │ ├── isabelle │ │ │ ├── postinstall │ │ │ └── rebaseall │ │ └── setup_server │ └── launch4j │ │ ├── README │ │ ├── isabelle.bmp │ │ ├── isabelle.xml │ │ ├── isabelle_transparent.ico │ │ └── manifest.xml ├── build │ └── TUM.toml ├── build_other ├── build_release ├── check_ml_headers ├── components │ ├── README.md │ ├── bundled │ ├── bundled-linux │ ├── bundled-linux_arm │ ├── bundled-macos │ ├── bundled-windows │ ├── cakeml │ ├── components.sha1 │ ├── index.php │ ├── main │ ├── nonfree │ ├── optional │ └── windows ├── cronjob │ ├── README │ ├── crontab.server │ ├── crontab.vmnipkow17 │ ├── main │ ├── plain_identify │ └── self_update ├── etc │ ├── build.props │ ├── options │ └── settings ├── haskell │ └── stack │ │ ├── README │ │ └── settings ├── init ├── isabelle_fonts │ ├── IsabelleSymbols.sfd │ ├── IsabelleSymbolsBold.sfd │ ├── README │ └── Vacuous.sfd ├── lib │ ├── Tools │ │ ├── churn │ │ ├── churn_pie │ │ ├── component_setup │ │ └── regenerate_cooper │ └── scripts │ │ └── churn_pie ├── ocaml │ └── opam │ │ ├── README │ │ └── x86_64-cygwin │ │ └── opam ├── polyml │ ├── INSTALL-MinGW │ └── future │ │ ├── ROOT.ML │ │ └── run ├── rsyncd ├── rsyncd.conf └── user-aliases ├── CONTRIBUTORS ├── COPYRIGHT ├── NEWS ├── README ├── README_REPOSITORY ├── ROOT ├── ROOTS ├── bin ├── isabelle └── isabelle_java ├── doc └── Contents ├── etc ├── build.props ├── components ├── isabelle.css ├── options ├── settings └── symbols ├── lib ├── Tools │ ├── caddy │ ├── client │ ├── components │ ├── console │ ├── dotnet │ ├── electron │ ├── env │ ├── getenv │ ├── ghc_setup │ ├── ghc_stack │ ├── go │ ├── gofmt │ ├── install │ ├── java │ ├── java_monitor │ ├── node │ ├── ocaml_opam │ ├── ocaml_setup │ ├── ocaml_setup_base │ ├── scala │ ├── scala_build │ ├── scalac │ └── version ├── dummy_stty │ └── stty ├── html │ └── library_index_content.template ├── icons │ ├── isabelle-mini.xpm │ └── isabelle.xpm ├── logo │ ├── index.html │ ├── isabelle-16.gif │ ├── isabelle-24.gif │ ├── isabelle-32.gif │ ├── isabelle-48.gif │ ├── isabelle-small.xpm │ ├── isabelle-tiny.xpm │ ├── isabelle.bmp │ ├── isabelle.gif │ ├── isabelle.icns │ ├── isabelle_any.eps │ ├── isabelle_hol.gif │ ├── isabelle_holcf.gif │ ├── isabelle_transparent-128.png │ ├── isabelle_transparent-16.gif │ ├── isabelle_transparent-24.gif │ ├── isabelle_transparent-32.gif │ ├── isabelle_transparent-48.gif │ ├── isabelle_transparent.gif │ ├── isabelle_zf.gif │ └── theory.icns ├── scripts │ ├── download_file │ ├── getfunctions │ ├── getsettings │ ├── ghc │ ├── isabelle-platform │ └── ocamlfind ├── services │ └── java.nio.charset.spi.CharsetProvider └── texinputs │ ├── comment.sty │ ├── isabelle.sty │ ├── isabellesym.sty │ ├── pdfsetup.sty │ └── railsetup.sty └── src ├── Benchmarks ├── Datatype_Benchmark │ ├── Brackin.thy │ ├── IsaFoR.thy │ └── Misc_N2M.thy ├── Quickcheck_Benchmark │ ├── Find_Unused_Assms_Examples.thy │ ├── Needham_Schroeder_Base.thy │ ├── Needham_Schroeder_Guided_Attacker_Example.thy │ ├── Needham_Schroeder_No_Attacker_Example.thy │ └── Needham_Schroeder_Unguided_Attacker_Example.thy ├── ROOT └── Record_Benchmark │ └── Record_Benchmark.thy ├── CCL ├── CCL.thy ├── Fix.thy ├── Gfp.thy ├── Hered.thy ├── Lfp.thy ├── ROOT ├── Set.thy ├── Term.thy ├── Trancl.thy ├── Type.thy ├── Wfd.thy └── ex │ ├── Flag.thy │ ├── List.thy │ ├── Nat.thy │ └── Stream.thy ├── CTT ├── CTT.thy ├── ROOT ├── document │ └── root.tex ├── ex │ ├── Elimination.thy │ ├── Equality.thy │ ├── Synthesis.thy │ └── Typechecking.thy └── rew.ML ├── Cube ├── Cube.thy ├── Example.thy └── ROOT ├── Doc ├── Classes │ ├── Classes.thy │ ├── Setup.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── Codegen │ ├── Adaptation.thy │ ├── Computations.thy │ ├── Evaluation.thy │ ├── Foundations.thy │ ├── Further.thy │ ├── Inductive_Predicate.thy │ ├── Introduction.thy │ ├── Partial_Functions.thy │ ├── Refinement.thy │ ├── Setup.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── Corec │ ├── Corec.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── Datatypes │ ├── Datatypes.thy │ ├── Setup.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── Demo_EPTCS │ ├── Document.thy │ ├── ROOT │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Demo_Easychair │ ├── Document.thy │ ├── ROOT │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Demo_FoilTeX │ ├── Document.thy │ ├── ROOT │ └── document │ │ ├── isabellefoils.sty │ │ └── root.tex ├── Demo_LIPIcs │ ├── Document.thy │ ├── ROOT │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Demo_LLNCS │ ├── Document.thy │ ├── ROOT │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Eisbach │ ├── Base.thy │ ├── Manual.thy │ ├── Preface.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── Functions │ ├── Functions.thy │ └── document │ │ ├── conclusion.tex │ │ ├── intro.tex │ │ ├── root.tex │ │ └── style.sty ├── How_to_Prove_it │ ├── How_to_Prove_it.thy │ └── document │ │ ├── prelude.tex │ │ ├── root.bib │ │ └── root.tex ├── Implementation │ ├── Base.thy │ ├── Eq.thy │ ├── Integration.thy │ ├── Isar.thy │ ├── Local_Theory.thy │ ├── Logic.thy │ ├── ML.thy │ ├── Prelim.thy │ ├── Proof.thy │ ├── Syntax.thy │ ├── Tactic.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── Intro │ └── document │ │ ├── advanced.tex │ │ ├── build │ │ ├── foundations.tex │ │ ├── getting.tex │ │ └── root.tex ├── Isar_Ref │ ├── Base.thy │ ├── Document_Preparation.thy │ ├── First_Order_Logic.thy │ ├── Framework.thy │ ├── Generic.thy │ ├── HOL_Specific.thy │ ├── Inner_Syntax.thy │ ├── Outer_Syntax.thy │ ├── Preface.thy │ ├── Proof.thy │ ├── Proof_Script.thy │ ├── Quick_Reference.thy │ ├── Spec.thy │ ├── Symbols.thy │ ├── Synopsis.thy │ └── document │ │ ├── isar-vm.pdf │ │ ├── isar-vm.svg │ │ ├── root.tex │ │ └── style.sty ├── JEdit │ ├── Base.thy │ ├── JEdit.thy │ └── document │ │ ├── auto-tools.png │ │ ├── bibtex-mode.png │ │ ├── cite-completion.png │ │ ├── document-panel.png │ │ ├── isabelle-jedit.png │ │ ├── markdown-document.png │ │ ├── ml-debugger.png │ │ ├── output-and-state.png │ │ ├── output-including-state.png │ │ ├── output.png │ │ ├── popup1.png │ │ ├── popup2.png │ │ ├── popup3.png │ │ ├── popup4.png │ │ ├── query.png │ │ ├── root.tex │ │ ├── scope1.png │ │ ├── scope2.png │ │ ├── sidekick-document.png │ │ ├── sidekick.png │ │ ├── sledgehammer.png │ │ └── theories.png ├── Locales │ ├── Examples.thy │ ├── Examples1.thy │ ├── Examples2.thy │ ├── Examples3.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Logics │ ├── abstract.txt │ └── document │ │ ├── CTT.tex │ │ ├── HOL.tex │ │ ├── LK.tex │ │ ├── Sequents.tex │ │ ├── preface.tex │ │ ├── root.tex │ │ └── syntax.tex ├── Logics_ZF │ ├── FOL_examples.thy │ ├── IFOL_examples.thy │ ├── If.thy │ ├── ZF_Isar.thy │ ├── ZF_examples.thy │ └── document │ │ ├── FOL.tex │ │ ├── ZF.tex │ │ ├── logics.sty │ │ └── root.tex ├── Main │ ├── Main_Doc.thy │ └── document │ │ └── root.tex ├── Nitpick │ └── document │ │ └── root.tex ├── Prog_Prove │ ├── Basics.thy │ ├── Bool_nat_list.thy │ ├── Isar.thy │ ├── LaTeXsugar.thy │ ├── Logic.thy │ ├── MyList.thy │ ├── Types_and_funs.thy │ └── document │ │ ├── bang.pdf │ │ ├── intro-isabelle.tex │ │ ├── prelude.tex │ │ ├── root.bib │ │ ├── root.tex │ │ └── svmono.cls ├── ROOT ├── ROOTS ├── Sledgehammer │ └── document │ │ └── root.tex ├── Sugar │ ├── Sugar.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── System │ ├── Base.thy │ ├── Environment.thy │ ├── Misc.thy │ ├── Phabricator.thy │ ├── Presentation.thy │ ├── Scala.thy │ ├── Server.thy │ ├── Sessions.thy │ └── document │ │ └── root.tex ├── Tutorial │ ├── Advanced │ │ ├── Partial.thy │ │ ├── WFrec.thy │ │ └── simp2.thy │ ├── CTL │ │ ├── Base.thy │ │ ├── CTL.thy │ │ ├── CTLind.thy │ │ └── PDL.thy │ ├── CodeGen │ │ └── CodeGen.thy │ ├── Datatype │ │ ├── ABexpr.thy │ │ ├── Fundata.thy │ │ ├── Nested.thy │ │ └── unfoldnested.thy │ ├── Documents │ │ └── Documents.thy │ ├── Fun │ │ └── fun0.thy │ ├── Ifexpr │ │ └── Ifexpr.thy │ ├── Inductive │ │ ├── AB.thy │ │ ├── Advanced.thy │ │ ├── Even.thy │ │ ├── Mutual.thy │ │ └── Star.thy │ ├── Misc │ │ ├── AdvancedInd.thy │ │ ├── Itrev.thy │ │ ├── Option2.thy │ │ ├── Plus.thy │ │ ├── Tree.thy │ │ ├── Tree2.thy │ │ ├── appendix.thy │ │ ├── case_exprs.thy │ │ ├── fakenat.thy │ │ ├── natsum.thy │ │ ├── pairs2.thy │ │ ├── prime_def.thy │ │ ├── simp.thy │ │ └── types.thy │ ├── Protocol │ │ ├── Event.thy │ │ ├── Message.thy │ │ ├── NS_Public.thy │ │ └── Public.thy │ ├── Recdef │ │ ├── Induction.thy │ │ ├── Nested0.thy │ │ ├── Nested1.thy │ │ ├── Nested2.thy │ │ ├── examples.thy │ │ ├── simplification.thy │ │ └── termination.thy │ ├── Rules │ │ ├── Basic.thy │ │ ├── Blast.thy │ │ ├── Force.thy │ │ ├── Forward.thy │ │ ├── TPrimes.thy │ │ ├── Tacticals.thy │ │ └── find2.thy │ ├── Sets │ │ ├── Examples.thy │ │ ├── Functions.thy │ │ ├── Recur.thy │ │ └── Relations.thy │ ├── Setup.thy │ ├── ToyList │ │ ├── ToyList.thy │ │ ├── ToyList1.txt │ │ └── ToyList2.txt │ ├── Trie │ │ └── Trie.thy │ ├── Types │ │ ├── Axioms.thy │ │ ├── Numbers.thy │ │ ├── Overloading.thy │ │ ├── Pairs.thy │ │ ├── Records.thy │ │ └── Typedefs.thy │ ├── document │ │ ├── Isa-logics.pdf │ │ ├── advanced0.tex │ │ ├── appendix0.tex │ │ ├── basics.tex │ │ ├── build │ │ ├── cl2emono-modified.sty │ │ ├── ctl0.tex │ │ ├── documents0.tex │ │ ├── fp.tex │ │ ├── inductive0.tex │ │ ├── isa-index │ │ ├── numerics.tex │ │ ├── pghead.pdf │ │ ├── preface.tex │ │ ├── protocol.tex │ │ ├── root.tex │ │ ├── rules.tex │ │ ├── sets.tex │ │ ├── tutorial.sty │ │ ├── typedef.pdf │ │ └── types0.tex │ └── todo.tobias ├── Typeclass_Hierarchy │ ├── Setup.thy │ ├── Typeclass_Hierarchy.thy │ └── document │ │ ├── root.tex │ │ └── style.sty ├── antiquote_setup.ML ├── extra.sty ├── iman.sty ├── isar.sty ├── manual.bib ├── more_antiquote.ML ├── pdfsetup.sty ├── preface.tex ├── sedindex ├── ttbox.sty └── underscore.sty ├── FOL ├── FOL.thy ├── IFOL.thy ├── ROOT ├── document │ └── root.tex ├── ex │ ├── Classical.thy │ ├── Foundation.thy │ ├── If.thy │ ├── Intro.thy │ ├── Intuitionistic.thy │ ├── Locale_Test │ │ ├── Locale_Test.thy │ │ ├── Locale_Test1.thy │ │ ├── Locale_Test2.thy │ │ └── Locale_Test3.thy │ ├── Miniscope.thy │ ├── Nat.thy │ ├── Nat_Class.thy │ ├── Natural_Numbers.thy │ ├── Prolog.thy │ ├── Propositional_Cla.thy │ ├── Propositional_Int.thy │ ├── Quantifiers_Cla.thy │ ├── Quantifiers_Int.thy │ └── document │ │ └── root.tex ├── fologic.ML ├── intprover.ML └── simpdata.ML ├── FOLP ├── FOLP.thy ├── IFOLP.thy ├── ROOT ├── classical.ML ├── ex │ ├── Classical.thy │ ├── Foundation.thy │ ├── If.thy │ ├── Intro.thy │ ├── Intuitionistic.thy │ ├── Nat.thy │ ├── Propositional_Cla.thy │ ├── Propositional_Int.thy │ ├── Quantifiers_Cla.thy │ └── Quantifiers_Int.thy ├── hypsubst.ML ├── intprover.ML ├── simp.ML └── simpdata.ML ├── HOL ├── ATP.thy ├── Algebra │ ├── AbelCoset.thy │ ├── Algebra.thy │ ├── Algebraic_Closure.thy │ ├── Algebraic_Closure_Type.thy │ ├── Bij.thy │ ├── Chinese_Remainder.thy │ ├── Complete_Lattice.thy │ ├── Congruence.thy │ ├── Coset.thy │ ├── Divisibility.thy │ ├── Elementary_Groups.thy │ ├── Embedded_Algebras.thy │ ├── Exact_Sequence.thy │ ├── Exponent.thy │ ├── FiniteProduct.thy │ ├── Finite_Extensions.thy │ ├── Free_Abelian_Groups.thy │ ├── Galois_Connection.thy │ ├── Generated_Fields.thy │ ├── Generated_Groups.thy │ ├── Generated_Rings.thy │ ├── Group.thy │ ├── Group_Action.thy │ ├── Ideal.thy │ ├── Ideal_Product.thy │ ├── Indexed_Polynomials.thy │ ├── IntRing.thy │ ├── Lattice.thy │ ├── Left_Coset.thy │ ├── Module.thy │ ├── Multiplicative_Group.thy │ ├── Order.thy │ ├── Polynomial_Divisibility.thy │ ├── Polynomials.thy │ ├── Product_Groups.thy │ ├── QuotRing.thy │ ├── README.thy │ ├── Ring.thy │ ├── RingHom.thy │ ├── Ring_Divisibility.thy │ ├── SimpleGroups.thy │ ├── SndIsomorphismGrp.thy │ ├── Solvable_Groups.thy │ ├── Subrings.thy │ ├── Sylow.thy │ ├── Sym_Groups.thy │ ├── UnivPoly.thy │ ├── Weak_Morphisms.thy │ ├── Zassenhaus.thy │ ├── document │ │ ├── root.bib │ │ └── root.tex │ └── ringsimp.ML ├── Analysis │ ├── Abstract_Euclidean_Space.thy │ ├── Abstract_Limits.thy │ ├── Abstract_Metric_Spaces.thy │ ├── Abstract_Topological_Spaces.thy │ ├── Abstract_Topology.thy │ ├── Abstract_Topology_2.thy │ ├── Affine.thy │ ├── Analysis.thy │ ├── Arcwise_Connected.thy │ ├── Ball_Volume.thy │ ├── Binary_Product_Measure.thy │ ├── Bochner_Integration.thy │ ├── Borel_Space.thy │ ├── Bounded_Continuous_Function.thy │ ├── Bounded_Linear_Function.thy │ ├── Brouwer_Fixpoint.thy │ ├── Caratheodory.thy │ ├── Cartesian_Euclidean_Space.thy │ ├── Cartesian_Space.thy │ ├── Change_Of_Vars.thy │ ├── Complete_Measure.thy │ ├── Complex_Analysis_Basics.thy │ ├── Complex_Transcendental.thy │ ├── Connected.thy │ ├── Continuous_Extension.thy │ ├── Continuum_Not_Denumerable.thy │ ├── Convex.thy │ ├── Convex_Euclidean_Space.thy │ ├── Cross3.thy │ ├── Derivative.thy │ ├── Determinants.thy │ ├── Elementary_Metric_Spaces.thy │ ├── Elementary_Normed_Spaces.thy │ ├── Elementary_Topology.thy │ ├── Embed_Measure.thy │ ├── Equivalence_Lebesgue_Henstock_Integration.thy │ ├── Equivalence_Measurable_On_Borel.thy │ ├── Euclidean_Space.thy │ ├── Extended_Real_Limits.thy │ ├── FPS_Convergence.thy │ ├── FSigma.thy │ ├── Fashoda_Theorem.thy │ ├── Finite_Cartesian_Product.thy │ ├── Finite_Function_Topology.thy │ ├── Finite_Product_Measure.thy │ ├── Function_Metric.thy │ ├── Function_Topology.thy │ ├── Further_Topology.thy │ ├── Gamma_Function.thy │ ├── Generalised_Binomial_Theorem.thy │ ├── Harmonic_Numbers.thy │ ├── Henstock_Kurzweil_Integration.thy │ ├── Homeomorphism.thy │ ├── Homotopy.thy │ ├── Improper_Integral.thy │ ├── Infinite_Products.thy │ ├── Infinite_Set_Sum.thy │ ├── Infinite_Sum.thy │ ├── Inner_Product.thy │ ├── Integral_Test.thy │ ├── Interval_Integral.thy │ ├── Isolated.thy │ ├── Jordan_Curve.thy │ ├── Kronecker_Approximation_Theorem.thy │ ├── L2_Norm.thy │ ├── Lebesgue_Integral_Substitution.thy │ ├── Lebesgue_Measure.thy │ ├── Lindelof_Spaces.thy │ ├── Line_Segment.thy │ ├── Linear_Algebra.thy │ ├── Lipschitz.thy │ ├── Locally.thy │ ├── Measurable.thy │ ├── Measure_Space.thy │ ├── Metric_Arith.thy │ ├── Multivariate_Analysis.thy │ ├── Nonnegative_Lebesgue_Integration.thy │ ├── Norm_Arith.thy │ ├── Operator_Norm.thy │ ├── Ordered_Euclidean_Space.thy │ ├── Path_Connected.thy │ ├── Poly_Roots.thy │ ├── Polytope.thy │ ├── Product_Topology.thy │ ├── Product_Vector.thy │ ├── Radon_Nikodym.thy │ ├── Regularity.thy │ ├── Retracts.thy │ ├── Set_Integral.thy │ ├── Sigma_Algebra.thy │ ├── Simplex_Content.thy │ ├── Smooth_Paths.thy │ ├── Sparse_In.thy │ ├── Starlike.thy │ ├── Sum_Topology.thy │ ├── Summation_Tests.thy │ ├── T1_Spaces.thy │ ├── Tagged_Division.thy │ ├── Topology_Euclidean_Space.thy │ ├── Uncountable_Sets.thy │ ├── Uniform_Limit.thy │ ├── Urysohn.thy │ ├── Vitali_Covering_Theorem.thy │ ├── Weierstrass_Theorems.thy │ ├── document │ │ ├── root.bib │ │ └── root.tex │ ├── ex │ │ ├── Approximations.thy │ │ └── Metric_Arith_Examples.thy │ ├── measurable.ML │ ├── metric_arith.ML │ └── normarith.ML ├── Archimedean_Field.thy ├── Argo.thy ├── Auth │ ├── All_Symmetric.thy │ ├── Auth_Public.thy │ ├── Auth_Shared.thy │ ├── CertifiedEmail.thy │ ├── Event.thy │ ├── Guard │ │ ├── Analz.thy │ │ ├── Auth_Guard_Public.thy │ │ ├── Auth_Guard_Shared.thy │ │ ├── Extensions.thy │ │ ├── Guard.thy │ │ ├── GuardK.thy │ │ ├── Guard_NS_Public.thy │ │ ├── Guard_OtwayRees.thy │ │ ├── Guard_Public.thy │ │ ├── Guard_Shared.thy │ │ ├── Guard_Yahalom.thy │ │ ├── List_Msg.thy │ │ ├── P1.thy │ │ ├── P2.thy │ │ ├── Proto.thy │ │ └── README_Guard.thy │ ├── KerberosIV.thy │ ├── KerberosIV_Gets.thy │ ├── KerberosV.thy │ ├── Kerberos_BAN.thy │ ├── Kerberos_BAN_Gets.thy │ ├── Message.thy │ ├── NS_Public.thy │ ├── NS_Public_Bad.thy │ ├── NS_Shared.thy │ ├── OtwayRees.thy │ ├── OtwayReesBella.thy │ ├── OtwayRees_AN.thy │ ├── OtwayRees_Bad.thy │ ├── Public.thy │ ├── README.thy │ ├── Recur.thy │ ├── Shared.thy │ ├── Smartcard │ │ ├── Auth_Smartcard.thy │ │ ├── EventSC.thy │ │ ├── ShoupRubin.thy │ │ ├── ShoupRubinBella.thy │ │ └── Smartcard.thy │ ├── TLS.thy │ ├── WooLam.thy │ ├── Yahalom.thy │ ├── Yahalom2.thy │ ├── Yahalom_Bad.thy │ ├── ZhouGollmann.thy │ └── document │ │ └── root.tex ├── BNF_Cardinal_Arithmetic.thy ├── BNF_Cardinal_Order_Relation.thy ├── BNF_Composition.thy ├── BNF_Def.thy ├── BNF_Fixpoint_Base.thy ├── BNF_Greatest_Fixpoint.thy ├── BNF_Least_Fixpoint.thy ├── BNF_Wellorder_Constructions.thy ├── BNF_Wellorder_Embedding.thy ├── BNF_Wellorder_Relation.thy ├── Bali │ ├── AxCompl.thy │ ├── AxExample.thy │ ├── AxSem.thy │ ├── AxSound.thy │ ├── Basis.thy │ ├── Conform.thy │ ├── Decl.thy │ ├── DeclConcepts.thy │ ├── DefiniteAssignment.thy │ ├── DefiniteAssignmentCorrect.thy │ ├── Eval.thy │ ├── Evaln.thy │ ├── Example.thy │ ├── Name.thy │ ├── State.thy │ ├── Table.thy │ ├── Term.thy │ ├── Trans.thy │ ├── Type.thy │ ├── TypeRel.thy │ ├── TypeSafe.thy │ ├── Value.thy │ ├── WellForm.thy │ ├── WellType.thy │ └── document │ │ └── root.tex ├── Basic_BNF_LFPs.thy ├── Basic_BNFs.thy ├── Binomial.thy ├── Binomial_Plus.thy ├── Bit_Operations.thy ├── Boolean_Algebras.thy ├── Cardinals │ ├── Bounded_Set.thy │ ├── Cardinal_Arithmetic.thy │ ├── Cardinal_Order_Relation.thy │ ├── Cardinals.thy │ ├── Fun_More.thy │ ├── Order_Relation_More.thy │ ├── Order_Union.thy │ ├── Ordinal_Arithmetic.thy │ ├── README.txt │ ├── TODO.txt │ ├── Wellfounded_More.thy │ ├── Wellorder_Constructions.thy │ ├── Wellorder_Embedding.thy │ ├── Wellorder_Extension.thy │ ├── Wellorder_Relation.thy │ └── document │ │ ├── intro.tex │ │ ├── root.bib │ │ └── root.tex ├── Code_Evaluation.thy ├── Code_Numeral.thy ├── Codegenerator_Test │ ├── Basic_Setup.thy │ ├── Candidates.thy │ ├── Code_Lazy_Test.thy │ ├── Code_Test_GHC.thy │ ├── Code_Test_MLton.thy │ ├── Code_Test_OCaml.thy │ ├── Code_Test_PolyML.thy │ ├── Code_Test_SMLNJ.thy │ ├── Code_Test_Scala.thy │ ├── Generate.thy │ ├── Generate_Abstract_Char.thy │ ├── Generate_Binary_Nat.thy │ ├── Generate_Efficient_Datastructures.thy │ ├── Generate_Target_Bit_Operations.thy │ ├── Generate_Target_GHC.thy │ ├── Generate_Target_MLton.thy │ ├── Generate_Target_Nat.thy │ ├── Generate_Target_OCaml.thy │ ├── Generate_Target_Rewrites_To_Bit_Operations.thy │ ├── Generate_Target_SMLNJ.thy │ └── Generate_Target_String_Literals.thy ├── Combinatorics │ ├── Combinatorics.thy │ ├── Cycles.thy │ ├── List_Permutation.thy │ ├── Multiset_Permutations.thy │ ├── Orbits.thy │ ├── Perm.thy │ ├── Permutations.thy │ ├── Stirling.thy │ ├── Transposition.thy │ └── document │ │ └── root.tex ├── Complete_Lattices.thy ├── Complete_Partial_Order.thy ├── Complex.thy ├── Complex_Analysis │ ├── Cauchy_Integral_Formula.thy │ ├── Cauchy_Integral_Theorem.thy │ ├── Complex_Analysis.thy │ ├── Complex_Residues.thy │ ├── Complex_Singularities.thy │ ├── Conformal_Mappings.thy │ ├── Contour_Integration.thy │ ├── Great_Picard.thy │ ├── Laurent_Convergence.thy │ ├── Meromorphic.thy │ ├── Residue_Theorem.thy │ ├── Riemann_Mapping.thy │ ├── Weierstrass_Factorization.thy │ ├── Winding_Numbers.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Complex_Main.thy ├── Computational_Algebra │ ├── Computation_Checks.thy │ ├── Computational_Algebra.thy │ ├── Euclidean_Algorithm.thy │ ├── Factorial_Ring.thy │ ├── Field_as_Ring.thy │ ├── Formal_Laurent_Series.thy │ ├── Formal_Power_Series.thy │ ├── Fraction_Field.thy │ ├── Fundamental_Theorem_Algebra.thy │ ├── Group_Closure.thy │ ├── Normalized_Fraction.thy │ ├── Nth_Powers.thy │ ├── Polynomial.thy │ ├── Polynomial_FPS.thy │ ├── Polynomial_Factorial.thy │ ├── Primes.thy │ ├── Squarefree.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Conditionally_Complete_Lattices.thy ├── Corec_Examples │ ├── LFilter.thy │ ├── Paper_Examples.thy │ ├── Stream_Processor.thy │ └── Tests │ │ ├── GPV_Bare_Bones.thy │ │ ├── Iterate_GPV.thy │ │ ├── Merge_A.thy │ │ ├── Merge_B.thy │ │ ├── Merge_C.thy │ │ ├── Merge_D.thy │ │ ├── Merge_Poly.thy │ │ ├── Misc_Mono.thy │ │ ├── Misc_Poly.thy │ │ ├── Simple_Nesting.thy │ │ ├── Small_Concrete.thy │ │ ├── Stream_Friends.thy │ │ ├── TLList_Friends.thy │ │ └── Type_Class.thy ├── Ctr_Sugar.thy ├── Data_Structures │ ├── AA_Map.thy │ ├── AA_Set.thy │ ├── AList_Upd_Del.thy │ ├── AVL_Bal2_Set.thy │ ├── AVL_Bal_Set.thy │ ├── AVL_Map.thy │ ├── AVL_Set.thy │ ├── AVL_Set_Code.thy │ ├── Array_Braun.thy │ ├── Array_Specs.thy │ ├── Balance.thy │ ├── Base_FDS.thy │ ├── Binomial_Heap.thy │ ├── Braun_Tree.thy │ ├── Brother12_Map.thy │ ├── Brother12_Set.thy │ ├── Cmp.thy │ ├── Heaps.thy │ ├── Height_Balanced_Tree.thy │ ├── Interval_Tree.thy │ ├── Isin2.thy │ ├── Leftist_Heap.thy │ ├── Leftist_Heap_List.thy │ ├── Less_False.thy │ ├── List_Ins_Del.thy │ ├── Lookup2.thy │ ├── Map_Specs.thy │ ├── Priority_Queue_Specs.thy │ ├── Queue_2Lists.thy │ ├── Queue_Spec.thy │ ├── RBT.thy │ ├── RBT_Map.thy │ ├── RBT_Set.thy │ ├── RBT_Set2.thy │ ├── Selection.thy │ ├── Set2_Join.thy │ ├── Set2_Join_RBT.thy │ ├── Set_Specs.thy │ ├── Sorted_Less.thy │ ├── Sorting.thy │ ├── Time_Locale_Example.thy │ ├── Tree2.thy │ ├── Tree23.thy │ ├── Tree234.thy │ ├── Tree234_Map.thy │ ├── Tree234_Set.thy │ ├── Tree23_Map.thy │ ├── Tree23_Set.thy │ ├── Tree23_of_List.thy │ ├── Tree_Map.thy │ ├── Tree_Rotations.thy │ ├── Tree_Set.thy │ ├── Trie_Fun.thy │ ├── Trie_Ternary.thy │ ├── Tries_Binary.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Datatype_Examples │ ├── Compat.thy │ ├── Cyclic_List.thy │ ├── Datatype_Simproc_Tests.thy │ ├── Derivation_Trees │ │ ├── DTree.thy │ │ ├── Gram_Lang.thy │ │ ├── Parallel_Composition.thy │ │ └── Prelim.thy │ ├── FAE_Sequence.thy │ ├── Free_Idempotent_Monoid.thy │ ├── Koenig.thy │ ├── Lambda_Term.thy │ ├── Lift_BNF.thy │ ├── Milner_Tofte.thy │ ├── Misc_Codatatype.thy │ ├── Misc_Datatype.thy │ ├── Misc_Primcorec.thy │ ├── Misc_Primrec.thy │ ├── Process.thy │ ├── Regex_ACI.thy │ ├── Regex_ACIDZ.thy │ ├── Stream_Processor.thy │ ├── TLList.thy │ ├── TreeFI.thy │ └── TreeFsetI.thy ├── Decision_Procs │ ├── Algebra_Aux.thy │ ├── Approximation.thy │ ├── Approximation_Bounds.thy │ ├── Commutative_Ring.thy │ ├── Commutative_Ring_Complete.thy │ ├── Conversions.thy │ ├── Cooper.thy │ ├── DP_Library.thy │ ├── Decision_Procs.thy │ ├── Dense_Linear_Order.thy │ ├── Ferrack.thy │ ├── MIR.thy │ ├── Parametric_Ferrante_Rackoff.thy │ ├── Polynomial_List.thy │ ├── Rat_Pair.thy │ ├── Reflected_Multivariate_Polynomial.thy │ ├── Reflective_Field.thy │ ├── approximation.ML │ ├── approximation_generator.ML │ ├── cooper_tac.ML │ ├── ex │ │ ├── Approximation_Ex.thy │ │ ├── Approximation_Quickcheck_Ex.thy │ │ ├── Commutative_Ring_Ex.thy │ │ └── Dense_Linear_Order_Ex.thy │ ├── ferrack_tac.ML │ ├── ferrante_rackoff.ML │ ├── ferrante_rackoff_data.ML │ ├── langford.ML │ ├── langford_data.ML │ └── mir_tac.ML ├── Deriv.thy ├── Eisbach │ ├── Eisbach.thy │ ├── Eisbach_Old_Appl_Syntax.thy │ ├── Eisbach_Tools.thy │ ├── Example_Metric.thy │ ├── Examples.thy │ ├── Examples_FOL.thy │ ├── Tests.thy │ ├── eisbach_rule_insts.ML │ ├── match_method.ML │ ├── method_closure.ML │ └── parse_tools.ML ├── Enum.thy ├── Equiv_Relations.thy ├── Euclidean_Rings.thy ├── Examples │ ├── Ackermann.thy │ ├── Adhoc_Overloading.thy │ ├── Cantor.thy │ ├── Coherent.thy │ ├── Commands.thy │ ├── Drinker.thy │ ├── Functions.thy │ ├── Gauss_Numbers.thy │ ├── Groebner_Examples.thy │ ├── Iff_Oracle.thy │ ├── Induction_Schema.thy │ ├── Knaster_Tarski.thy │ ├── ML.thy │ ├── Peirce.thy │ ├── Records.thy │ ├── Rewrite_Examples.thy │ ├── Seq.thy │ ├── Sqrt.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Extraction.thy ├── Factorial.thy ├── Fields.thy ├── Filter.thy ├── Finite_Set.thy ├── Fun.thy ├── Fun_Def.thy ├── Fun_Def_Base.thy ├── GCD.thy ├── Groebner_Basis.thy ├── Groups.thy ├── Groups_Big.thy ├── Groups_List.thy ├── HOL.thy ├── HOLCF │ ├── Algebraic.thy │ ├── Bifinite.thy │ ├── Cfun.thy │ ├── Compact_Basis.thy │ ├── Completion.thy │ ├── ConvexPD.thy │ ├── Cpo.thy │ ├── Cpodef.thy │ ├── Cprod.thy │ ├── Deflation.thy │ ├── Domain.thy │ ├── FOCUS │ │ ├── Buffer.thy │ │ ├── Buffer_adm.thy │ │ ├── FOCUS.thy │ │ ├── Fstream.thy │ │ ├── Fstreams.thy │ │ └── Stream_adm.thy │ ├── Fixrec.thy │ ├── HOLCF.thy │ ├── IMP │ │ ├── Denotational.thy │ │ ├── HoareEx.thy │ │ └── document │ │ │ ├── isaverbatimwrite.sty │ │ │ ├── root.bib │ │ │ └── root.tex │ ├── IOA │ │ ├── ABP │ │ │ ├── Abschannel.thy │ │ │ ├── Abschannel_finite.thy │ │ │ ├── Action.thy │ │ │ ├── Check.ML │ │ │ ├── Correctness.thy │ │ │ ├── Env.thy │ │ │ ├── Impl.thy │ │ │ ├── Impl_finite.thy │ │ │ ├── Lemmas.thy │ │ │ ├── Packet.thy │ │ │ ├── Receiver.thy │ │ │ ├── Sender.thy │ │ │ └── Spec.thy │ │ ├── Abstraction.thy │ │ ├── Asig.thy │ │ ├── Automata.thy │ │ ├── CompoExecs.thy │ │ ├── CompoScheds.thy │ │ ├── CompoTraces.thy │ │ ├── Compositionality.thy │ │ ├── Deadlock.thy │ │ ├── IOA.thy │ │ ├── LiveIOA.thy │ │ ├── NTP │ │ │ ├── Abschannel.thy │ │ │ ├── Action.thy │ │ │ ├── Correctness.thy │ │ │ ├── Impl.thy │ │ │ ├── Lemmas.thy │ │ │ ├── Multiset.thy │ │ │ ├── Overview.thy │ │ │ ├── Packet.thy │ │ │ ├── Receiver.thy │ │ │ ├── Sender.thy │ │ │ └── Spec.thy │ │ ├── Pred.thy │ │ ├── RefCorrectness.thy │ │ ├── RefMappings.thy │ │ ├── Seq.thy │ │ ├── Sequence.thy │ │ ├── ShortExecutions.thy │ │ ├── SimCorrectness.thy │ │ ├── Simulations.thy │ │ ├── Storage │ │ │ ├── Action.thy │ │ │ ├── Correctness.thy │ │ │ ├── Impl.thy │ │ │ └── Spec.thy │ │ ├── TL.thy │ │ ├── TLS.thy │ │ ├── Traces.thy │ │ └── ex │ │ │ ├── TrivEx.thy │ │ │ └── TrivEx2.thy │ ├── Library │ │ ├── Bool_Discrete.thy │ │ ├── Char_Discrete.thy │ │ ├── Defl_Bifinite.thy │ │ ├── HOLCF_Library.thy │ │ ├── HOL_Cpo.thy │ │ ├── Int_Discrete.thy │ │ ├── List_Cpo.thy │ │ ├── List_Predomain.thy │ │ ├── Nat_Discrete.thy │ │ ├── Option_Cpo.thy │ │ ├── Stream.thy │ │ └── Sum_Cpo.thy │ ├── Lift.thy │ ├── LowerPD.thy │ ├── Map_Functions.thy │ ├── One.thy │ ├── Powerdomains.thy │ ├── README.thy │ ├── Representable.thy │ ├── Sfun.thy │ ├── Sprod.thy │ ├── Ssum.thy │ ├── Tools │ │ ├── Domain │ │ │ ├── domain.ML │ │ │ ├── domain_axioms.ML │ │ │ ├── domain_constructors.ML │ │ │ ├── domain_induction.ML │ │ │ ├── domain_isomorphism.ML │ │ │ └── domain_take_proofs.ML │ │ ├── cont_consts.ML │ │ ├── cont_proc.ML │ │ ├── cpodef.ML │ │ ├── domaindef.ML │ │ ├── fixrec.ML │ │ └── holcf_library.ML │ ├── Tr.thy │ ├── Tutorial │ │ ├── Domain_ex.thy │ │ ├── Fixrec_ex.thy │ │ ├── New_Domain.thy │ │ └── document │ │ │ └── root.tex │ ├── Universal.thy │ ├── Up.thy │ ├── UpperPD.thy │ ├── document │ │ └── root.tex │ └── ex │ │ ├── Concurrency_Monad.thy │ │ ├── Dagstuhl.thy │ │ ├── Dnat.thy │ │ ├── Domain_Proofs.thy │ │ ├── Fix2.thy │ │ ├── Focus_ex.thy │ │ ├── Hoare.thy │ │ ├── Letrec.thy │ │ ├── Loop.thy │ │ ├── Pattern_Match.thy │ │ ├── Powerdomain_ex.thy │ │ └── hoare.txt ├── Hahn_Banach │ ├── Bounds.thy │ ├── Function_Norm.thy │ ├── Function_Order.thy │ ├── Hahn_Banach.thy │ ├── Hahn_Banach_Ext_Lemmas.thy │ ├── Hahn_Banach_Lemmas.thy │ ├── Hahn_Banach_Sup_Lemmas.thy │ ├── Linearform.thy │ ├── Normed_Space.thy │ ├── Subspace.thy │ ├── Vector_Space.thy │ ├── Zorn_Lemma.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Hilbert_Choice.thy ├── Hoare │ ├── Arith2.thy │ ├── Examples.thy │ ├── ExamplesAbort.thy │ ├── ExamplesTC.thy │ ├── Heap.thy │ ├── HeapSyntax.thy │ ├── HeapSyntaxAbort.thy │ ├── Hoare_Logic.thy │ ├── Hoare_Logic_Abort.thy │ ├── Hoare_Syntax.thy │ ├── Hoare_Tac.thy │ ├── Pointer_Examples.thy │ ├── Pointer_ExamplesAbort.thy │ ├── Pointers0.thy │ ├── README.thy │ ├── SchorrWaite.thy │ ├── SepLogHeap.thy │ ├── Separation.thy │ ├── document │ │ ├── root.bib │ │ └── root.tex │ ├── hoare_syntax.ML │ └── hoare_tac.ML ├── Hoare_Parallel │ ├── Gar_Coll.thy │ ├── Graph.thy │ ├── Hoare_Parallel.thy │ ├── Mul_Gar_Coll.thy │ ├── OG_Com.thy │ ├── OG_Examples.thy │ ├── OG_Hoare.thy │ ├── OG_Syntax.thy │ ├── OG_Tactics.thy │ ├── OG_Tran.thy │ ├── Quote_Antiquote.thy │ ├── RG_Com.thy │ ├── RG_Examples.thy │ ├── RG_Hoare.thy │ ├── RG_Syntax.thy │ ├── RG_Tran.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Homology │ ├── Brouwer_Degree.thy │ ├── Homology.thy │ ├── Homology_Groups.thy │ ├── Invariance_of_Domain.thy │ ├── Simplices.thy │ └── document │ │ └── root.tex ├── Hull.thy ├── IMP │ ├── ACom.thy │ ├── AExp.thy │ ├── ASM.thy │ ├── Abs_Int0.thy │ ├── Abs_Int1.thy │ ├── Abs_Int1_const.thy │ ├── Abs_Int1_parity.thy │ ├── Abs_Int2.thy │ ├── Abs_Int2_ivl.thy │ ├── Abs_Int3.thy │ ├── Abs_Int_Tests.thy │ ├── Abs_Int_init.thy │ ├── Abs_State.thy │ ├── BExp.thy │ ├── Big_Step.thy │ ├── C_like.thy │ ├── Collecting.thy │ ├── Collecting1.thy │ ├── Collecting_Examples.thy │ ├── Com.thy │ ├── Compiler.thy │ ├── Compiler2.thy │ ├── Complete_Lattice.thy │ ├── Def_Init.thy │ ├── Def_Init_Big.thy │ ├── Def_Init_Exp.thy │ ├── Def_Init_Small.thy │ ├── Denotational.thy │ ├── Finite_Reachable.thy │ ├── Fold.thy │ ├── Halting.thy │ ├── Hoare.thy │ ├── Hoare_Examples.thy │ ├── Hoare_Sound_Complete.thy │ ├── Hoare_Total.thy │ ├── Hoare_Total_EX.thy │ ├── Hoare_Total_EX2.thy │ ├── Live.thy │ ├── Live_True.thy │ ├── OO.thy │ ├── Poly_Types.thy │ ├── Procs.thy │ ├── Procs_Dyn_Vars_Dyn.thy │ ├── Procs_Stat_Vars_Dyn.thy │ ├── Procs_Stat_Vars_Stat.thy │ ├── Sec_Type_Expr.thy │ ├── Sec_Typing.thy │ ├── Sec_TypingT.thy │ ├── Sem_Equiv.thy │ ├── Small_Step.thy │ ├── Star.thy │ ├── Types.thy │ ├── VCG.thy │ ├── VCG_Total_EX.thy │ ├── VCG_Total_EX2.thy │ ├── Vars.thy │ ├── document │ │ ├── root.bib │ │ └── root.tex │ └── export.sh ├── IMPP │ ├── Com.thy │ ├── EvenOdd.thy │ ├── Hoare.thy │ ├── Misc.thy │ └── Natural.thy ├── IOA │ ├── Asig.thy │ ├── IOA.thy │ └── Solve.thy ├── Imperative_HOL │ ├── Array.thy │ ├── Heap.thy │ ├── Heap_Monad.thy │ ├── Imperative_HOL.thy │ ├── Imperative_HOL_ex.thy │ ├── Overview.thy │ ├── Ref.thy │ ├── document │ │ ├── root.bib │ │ └── root.tex │ └── ex │ │ ├── Congproc_Ex.thy │ │ ├── Imperative_Quicksort.thy │ │ ├── Imperative_Reverse.thy │ │ ├── Linked_Lists.thy │ │ ├── List_Sublist.thy │ │ ├── SatChecker.thy │ │ ├── Sorted_List.thy │ │ └── Subarray.thy ├── Import │ ├── HOL_Light_Import.thy │ ├── HOL_Light_Maps.thy │ ├── Import_Setup.thy │ ├── import_data.ML │ ├── import_rule.ML │ ├── offline │ │ ├── maps.lst │ │ └── offline.ml │ └── patches │ │ ├── patch1 │ │ └── patch2 ├── Induct │ ├── ABexp.thy │ ├── Com.thy │ ├── Comb.thy │ ├── Common_Patterns.thy │ ├── Infinitely_Branching_Tree.thy │ ├── Nested_Datatype.thy │ ├── Ordinals.thy │ ├── PropLog.thy │ ├── QuoDataType.thy │ ├── QuoNestedDataType.thy │ ├── SList.thy │ ├── Sexp.thy │ ├── Sigma_Algebra.thy │ ├── Term.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Inductive.thy ├── Inequalities.thy ├── Int.thy ├── Isar_Examples │ ├── Basic_Logic.thy │ ├── Expr_Compiler.thy │ ├── Fibonacci.thy │ ├── Group.thy │ ├── Group_Context.thy │ ├── Group_Notepad.thy │ ├── Hoare.thy │ ├── Hoare_Ex.thy │ ├── Mutilated_Checkerboard.thy │ ├── Puzzle.thy │ ├── Structured_Statements.thy │ ├── Summation.thy │ └── document │ │ ├── proof.sty │ │ ├── root.bib │ │ └── root.tex ├── Lattice │ ├── Bounds.thy │ ├── CompleteLattice.thy │ ├── Lattice.thy │ ├── Orders.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Lattices.thy ├── Lattices_Big.thy ├── Lazy_Sequence.thy ├── Library │ ├── AList.thy │ ├── AList_Mapping.thy │ ├── BNF_Axiomatization.thy │ ├── BNF_Corec.thy │ ├── Bourbaki_Witt_Fixpoint.thy │ ├── Cancellation.thy │ ├── Cancellation │ │ ├── cancel.ML │ │ ├── cancel_data.ML │ │ └── cancel_simprocs.ML │ ├── Cardinality.thy │ ├── Case_Converter.thy │ ├── Centered_Division.thy │ ├── Char_ord.thy │ ├── Code_Abstract_Char.thy │ ├── Code_Abstract_Nat.thy │ ├── Code_Binary_Nat.thy │ ├── Code_Bit_Shifts_for_Arithmetic.thy │ ├── Code_Cardinality.thy │ ├── Code_Lazy.thy │ ├── Code_Prolog.thy │ ├── Code_Real_Approx_By_Float.thy │ ├── Code_Target_Int.thy │ ├── Code_Target_Nat.thy │ ├── Code_Target_Numeral.thy │ ├── Code_Target_Numeral_Float.thy │ ├── Code_Test.thy │ ├── Combine_PER.thy │ ├── Comparator.thy │ ├── Complemented_Lattices.thy │ ├── Complete_Partial_Order2.thy │ ├── Complex_Order.thy │ ├── Conditional_Parametricity.thy │ ├── Confluence.thy │ ├── Confluent_Quotient.thy │ ├── Countable.thy │ ├── Countable_Complete_Lattices.thy │ ├── Countable_Set.thy │ ├── Countable_Set_Type.thy │ ├── DAList.thy │ ├── DAList_Multiset.thy │ ├── Datatype_Records.thy │ ├── Debug.thy │ ├── Diagonal_Subsequence.thy │ ├── Discrete_Functions.thy │ ├── Disjoint_FSets.thy │ ├── Disjoint_Sets.thy │ ├── Dlist.thy │ ├── Dual_Ordered_Lattice.thy │ ├── Equipollence.thy │ ├── Extended.thy │ ├── Extended_Nat.thy │ ├── Extended_Nonnegative_Real.thy │ ├── Extended_Real.thy │ ├── FSet.thy │ ├── Finite_Lattice.thy │ ├── Finite_Map.thy │ ├── Float.thy │ ├── Fun_Lexorder.thy │ ├── FuncSet.thy │ ├── Function_Algebras.thy │ ├── Function_Division.thy │ ├── Going_To_Filter.thy │ ├── Groups_Big_Fun.thy │ ├── IArray.thy │ ├── Indicator_Function.thy │ ├── Infinite_Set.thy │ ├── Infinite_Typeclass.thy │ ├── Interval.thy │ ├── Interval_Float.thy │ ├── LaTeXsugar.thy │ ├── Landau_Symbols.thy │ ├── Lattice_Algebras.thy │ ├── Lattice_Constructions.thy │ ├── Lexord.thy │ ├── Library.thy │ ├── Liminf_Limsup.thy │ ├── Linear_Temporal_Logic_on_Streams.thy │ ├── ListVector.thy │ ├── List_Lenlexorder.thy │ ├── List_Lexorder.thy │ ├── Log_Nat.thy │ ├── Lub_Glb.thy │ ├── Mapping.thy │ ├── Monad_Syntax.thy │ ├── More_List.thy │ ├── Multiset.thy │ ├── Multiset_Order.thy │ ├── NList.thy │ ├── Nat_Bijection.thy │ ├── Nonpos_Ints.thy │ ├── Numeral_Type.thy │ ├── Old_Datatype.thy │ ├── Old_Recdef.thy │ ├── Omega_Words_Fun.thy │ ├── Open_State_Syntax.thy │ ├── Option_ord.thy │ ├── OptionalSugar.thy │ ├── Order_Continuity.thy │ ├── Parallel.thy │ ├── Pattern_Aliases.thy │ ├── Periodic_Fun.thy │ ├── Phantom_Type.thy │ ├── Poly_Mapping.thy │ ├── Power_By_Squaring.thy │ ├── Predicate_Compile_Alternative_Defs.thy │ ├── Predicate_Compile_Quickcheck.thy │ ├── Prefix_Order.thy │ ├── Preorder.thy │ ├── Product_Lexorder.thy │ ├── Product_Order.thy │ ├── Product_Plus.thy │ ├── Quadratic_Discriminant.thy │ ├── Quotient_List.thy │ ├── Quotient_Option.thy │ ├── Quotient_Product.thy │ ├── Quotient_Set.thy │ ├── Quotient_Sum.thy │ ├── Quotient_Syntax.thy │ ├── Quotient_Type.thy │ ├── RBT.thy │ ├── RBT_Impl.thy │ ├── RBT_Mapping.thy │ ├── RBT_Set.thy │ ├── README.thy │ ├── Ramsey.thy │ ├── Real_Mod.thy │ ├── Realizers.thy │ ├── Reflection.thy │ ├── Refute.thy │ ├── Rewrite.thy │ ├── Saturated.thy │ ├── Set_Algebras.thy │ ├── Set_Idioms.thy │ ├── Signed_Division.thy │ ├── Simps_Case_Conv.thy │ ├── Sorting_Algorithms.thy │ ├── State_Monad.thy │ ├── Stream.thy │ ├── Sublist.thy │ ├── Subseq_Order.thy │ ├── Suc_Notation.thy │ ├── Sum_of_Squares.thy │ ├── Sum_of_Squares │ │ ├── positivstellensatz.ML │ │ ├── positivstellensatz_tools.ML │ │ ├── sos_wrapper.ML │ │ └── sum_of_squares.ML │ ├── Time_Commands.thy │ ├── Time_Functions.thy │ ├── Time_Manual.thy │ ├── Tools │ │ ├── lazy.ML │ │ ├── lazy.hs │ │ ├── lazy.scala │ │ ├── smt_word.ML │ │ ├── termify_lazy.ML │ │ ├── termify_lazy.ocaml │ │ └── word_lib.ML │ ├── Transitive_Closure_Table.thy │ ├── Tree.thy │ ├── Tree_Multiset.thy │ ├── Tree_Real.thy │ ├── Type_Length.thy │ ├── Uprod.thy │ ├── While_Combinator.thy │ ├── Word.thy │ ├── Z2.thy │ ├── case_converter.ML │ ├── cconv.ML │ ├── code_lazy.ML │ ├── code_test.ML │ ├── conditional_parametricity.ML │ ├── datatype_records.ML │ ├── document │ │ ├── root.bib │ │ └── root.tex │ ├── multiset_simprocs.ML │ ├── old_recdef.ML │ ├── refute.ML │ ├── rewrite.ML │ ├── simps_case_conv.ML │ └── time_commands.ML ├── Lifting.thy ├── Lifting_Set.thy ├── Limited_Sequence.thy ├── Limits.thy ├── List.thy ├── MacLaurin.thy ├── Main.thy ├── Map.thy ├── Matrix_LP │ ├── ComputeFloat.thy │ ├── ComputeHOL.thy │ ├── ComputeNumeral.thy │ ├── Compute_Oracle │ │ ├── Compute_Oracle.thy │ │ ├── am.ML │ │ ├── am_compiler.ML │ │ ├── am_ghc.ML │ │ ├── am_interpreter.ML │ │ ├── am_sml.ML │ │ ├── compute.ML │ │ ├── linker.ML │ │ └── report.ML │ ├── Cplex.thy │ ├── CplexMatrixConverter.ML │ ├── Cplex_tools.ML │ ├── FloatSparseMatrixBuilder.ML │ ├── LP.thy │ ├── Matrix.thy │ ├── SparseMatrix.thy │ ├── document │ │ └── root.tex │ ├── float_arith.ML │ ├── fspmlp.ML │ └── matrixlp.ML ├── Meson.thy ├── Metis.thy ├── Metis_Examples │ ├── Abstraction.thy │ ├── Big_O.thy │ ├── Binary_Tree.thy │ ├── Clausification.thy │ ├── Message.thy │ ├── Proxies.thy │ ├── Sets.thy │ ├── Sledgehammer_Isar_Proofs.certs │ ├── Sledgehammer_Isar_Proofs.thy │ ├── Tarski.thy │ ├── Trans_Closure.thy │ └── Type_Encodings.thy ├── MicroJava │ ├── BV │ │ ├── Altern.thy │ │ ├── BVExample.thy │ │ ├── BVNoTypeError.thy │ │ ├── BVSpec.thy │ │ ├── BVSpecTypeSafe.thy │ │ ├── Correct.thy │ │ ├── Effect.thy │ │ ├── EffectMono.thy │ │ ├── JType.thy │ │ ├── JVM.thy │ │ ├── JVMType.thy │ │ ├── LBVJVM.thy │ │ └── Typing_Framework_JVM.thy │ ├── Comp │ │ ├── AuxLemmas.thy │ │ ├── CorrComp.thy │ │ ├── CorrCompTp.thy │ │ ├── DefsComp.thy │ │ ├── Index.thy │ │ ├── LemmasComp.thy │ │ ├── TranslComp.thy │ │ ├── TranslCompTp.thy │ │ └── TypeInf.thy │ ├── DFA │ │ ├── Abstract_BV.thy │ │ ├── Err.thy │ │ ├── Kildall.thy │ │ ├── LBVComplete.thy │ │ ├── LBVCorrect.thy │ │ ├── LBVSpec.thy │ │ ├── Listn.thy │ │ ├── Opt.thy │ │ ├── Product.thy │ │ ├── Semilat.thy │ │ ├── SemilatAlg.thy │ │ ├── Semilattices.thy │ │ ├── Typing_Framework.thy │ │ └── Typing_Framework_err.thy │ ├── J │ │ ├── Conform.thy │ │ ├── Decl.thy │ │ ├── Eval.thy │ │ ├── Example.thy │ │ ├── Exceptions.thy │ │ ├── JBasis.thy │ │ ├── JListExample.thy │ │ ├── JTypeSafe.thy │ │ ├── State.thy │ │ ├── SystemClasses.thy │ │ ├── Term.thy │ │ ├── Type.thy │ │ ├── TypeRel.thy │ │ ├── Value.thy │ │ ├── WellForm.thy │ │ └── WellType.thy │ ├── JVM │ │ ├── JVMDefensive.thy │ │ ├── JVMExceptions.thy │ │ ├── JVMExec.thy │ │ ├── JVMExecInstr.thy │ │ ├── JVMInstructions.thy │ │ ├── JVMListExample.thy │ │ └── JVMState.thy │ ├── MicroJava.thy │ └── document │ │ ├── introduction.tex │ │ ├── root.bib │ │ └── root.tex ├── Mirabelle.thy ├── Modules.thy ├── Mutabelle │ ├── MutabelleExtra.thy │ ├── etc │ │ └── settings │ ├── lib │ │ └── Tools │ │ │ └── mutabelle │ ├── mutabelle.ML │ └── mutabelle_extra.ML ├── NanoJava │ ├── AxSem.thy │ ├── Decl.thy │ ├── Equivalence.thy │ ├── Example.thy │ ├── OpSem.thy │ ├── State.thy │ ├── Term.thy │ ├── TypeRel.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Nat.thy ├── Nitpick.thy ├── Nitpick_Examples │ ├── Core_Nits.thy │ ├── Datatype_Nits.thy │ ├── Hotel_Nits.thy │ ├── Induct_Nits.thy │ ├── Integer_Nits.thy │ ├── Manual_Nits.thy │ ├── Mini_Nits.thy │ ├── Mono_Nits.thy │ ├── Nitpick_Examples.thy │ ├── Pattern_Nits.thy │ ├── Record_Nits.thy │ ├── Refute_Nits.thy │ ├── Special_Nits.thy │ ├── Tests_Nits.thy │ ├── Typedef_Nits.thy │ └── minipick.ML ├── Nominal │ ├── Examples │ │ ├── CK_Machine.thy │ │ ├── CR.thy │ │ ├── CR_Takahashi.thy │ │ ├── Class1.thy │ │ ├── Class2.thy │ │ ├── Class3.thy │ │ ├── Compile.thy │ │ ├── Contexts.thy │ │ ├── Crary.thy │ │ ├── Fsub.thy │ │ ├── Height.thy │ │ ├── Lam_Funs.thy │ │ ├── Lambda_mu.thy │ │ ├── LocalWeakening.thy │ │ ├── Pattern.thy │ │ ├── SN.thy │ │ ├── SOS.thy │ │ ├── Standardization.thy │ │ ├── Support.thy │ │ ├── Type_Preservation.thy │ │ ├── VC_Condition.thy │ │ ├── W.thy │ │ └── Weakening.thy │ ├── Nominal.thy │ ├── nominal_atoms.ML │ ├── nominal_datatype.ML │ ├── nominal_fresh_fun.ML │ ├── nominal_induct.ML │ ├── nominal_inductive.ML │ ├── nominal_inductive2.ML │ ├── nominal_permeq.ML │ ├── nominal_primrec.ML │ └── nominal_thmdecls.ML ├── Nonstandard_Analysis │ ├── CLim.thy │ ├── CStar.thy │ ├── Examples │ │ └── NSPrimes.thy │ ├── Free_Ultrafilter.thy │ ├── HDeriv.thy │ ├── HLim.thy │ ├── HLog.thy │ ├── HSEQ.thy │ ├── HSeries.thy │ ├── HTranscendental.thy │ ├── HyperDef.thy │ ├── HyperNat.thy │ ├── Hypercomplex.thy │ ├── Hyperreal.thy │ ├── NSA.thy │ ├── NSCA.thy │ ├── NSComplex.thy │ ├── NatStar.thy │ ├── Nonstandard_Analysis.thy │ ├── Star.thy │ ├── StarDef.thy │ ├── document │ │ └── root.tex │ └── transfer_principle.ML ├── NthRoot.thy ├── Num.thy ├── Number_Theory │ ├── Cong.thy │ ├── Eratosthenes.thy │ ├── Euler_Criterion.thy │ ├── Fib.thy │ ├── Gauss.thy │ ├── Mod_Exp.thy │ ├── Modular_Inverse.thy │ ├── Number_Theory.thy │ ├── Pocklington.thy │ ├── Prime_Powers.thy │ ├── Quadratic_Reciprocity.thy │ ├── Residue_Primitive_Roots.thy │ ├── Residues.thy │ ├── Totient.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Numeral_Simprocs.thy ├── Nunchaku.thy ├── Option.thy ├── Order_Relation.thy ├── Orderings.thy ├── Parity.thy ├── Partial_Function.thy ├── Power.thy ├── Predicate.thy ├── Predicate_Compile.thy ├── Predicate_Compile_Examples │ ├── Code_Prolog_Examples.thy │ ├── Context_Free_Grammar_Example.thy │ ├── Examples.thy │ ├── Hotel_Example.thy │ ├── Hotel_Example_Prolog.thy │ ├── Hotel_Example_Small_Generator.thy │ ├── IMP_1.thy │ ├── IMP_2.thy │ ├── IMP_3.thy │ ├── IMP_4.thy │ ├── Lambda_Example.thy │ ├── List_Examples.thy │ ├── Predicate_Compile_Quickcheck_Examples.thy │ ├── Predicate_Compile_Tests.thy │ ├── Reg_Exp_Example.thy │ └── Specialisation_Examples.thy ├── Presburger.thy ├── Probability │ ├── Central_Limit_Theorem.thy │ ├── Characteristic_Functions.thy │ ├── Conditional_Expectation.thy │ ├── Convolution.thy │ ├── Discrete_Topology.thy │ ├── Distribution_Functions.thy │ ├── Distributions.thy │ ├── Essential_Supremum.thy │ ├── Fin_Map.thy │ ├── Giry_Monad.thy │ ├── Helly_Selection.thy │ ├── Hoeffding.thy │ ├── Independent_Family.thy │ ├── Infinite_Product_Measure.thy │ ├── Information.thy │ ├── Levy.thy │ ├── PMF_Impl.thy │ ├── Probability.thy │ ├── Probability_Mass_Function.thy │ ├── Probability_Measure.thy │ ├── Product_PMF.thy │ ├── Projective_Family.thy │ ├── Projective_Limit.thy │ ├── Random_Permutations.thy │ ├── SPMF.thy │ ├── Sinc_Integral.thy │ ├── Stopping_Time.thy │ ├── Stream_Space.thy │ ├── Tree_Space.thy │ ├── Weak_Convergence.thy │ ├── document │ │ └── root.tex │ └── ex │ │ ├── Dining_Cryptographers.thy │ │ ├── Koepf_Duermuth_Countermeasure.thy │ │ └── Measure_Not_CCC.thy ├── Product_Type.thy ├── Prolog │ ├── Func.thy │ ├── HOHH.thy │ ├── Test.thy │ ├── Type.thy │ └── prolog.ML ├── Proofs │ ├── Extraction │ │ ├── Euclid.thy │ │ ├── Greatest_Common_Divisor.thy │ │ ├── Higman.thy │ │ ├── Higman_Extraction.thy │ │ ├── Pigeonhole.thy │ │ ├── QuotRem.thy │ │ ├── Util.thy │ │ ├── Warshall.thy │ │ └── document │ │ │ ├── root.bib │ │ │ └── root.tex │ ├── Lambda │ │ ├── Commutation.thy │ │ ├── Eta.thy │ │ ├── InductTermi.thy │ │ ├── Lambda.thy │ │ ├── LambdaType.thy │ │ ├── ListApplication.thy │ │ ├── ListBeta.thy │ │ ├── ListOrder.thy │ │ ├── NormalForm.thy │ │ ├── ParRed.thy │ │ ├── Standardization.thy │ │ ├── StrongNorm.thy │ │ ├── WeakNorm.thy │ │ └── document │ │ │ ├── root.bib │ │ │ └── root.tex │ └── ex │ │ ├── Hilbert_Classical.thy │ │ ├── Proof_Terms.thy │ │ └── XML_Data.thy ├── Quickcheck_Examples │ ├── Completeness.thy │ ├── Hotel_Example.thy │ ├── Quickcheck_Examples.thy │ ├── Quickcheck_Interfaces.thy │ ├── Quickcheck_Lattice_Examples.thy │ ├── Quickcheck_Narrowing_Examples.thy │ ├── Quickcheck_Nesting.thy │ └── Quickcheck_Nesting_Example.thy ├── Quickcheck_Exhaustive.thy ├── Quickcheck_Narrowing.thy ├── Quickcheck_Random.thy ├── Quotient.thy ├── Quotient_Examples │ ├── DList.thy │ ├── Int_Pow.thy │ ├── Lift_DList.thy │ ├── Lift_FSet.thy │ ├── Lift_Fun.thy │ ├── Lift_Set.thy │ ├── Lifting_Code_Dt_Test.thy │ ├── Quotient_FSet.thy │ ├── Quotient_Int.thy │ ├── Quotient_Message.thy │ └── Quotient_Rat.thy ├── ROOT ├── Random.thy ├── Random_Pred.thy ├── Random_Sequence.thy ├── Rat.thy ├── Real.thy ├── Real_Asymp │ ├── Eventuallize.thy │ ├── Inst_Existentials.thy │ ├── Lazy_Eval.thy │ ├── Manual │ │ ├── Real_Asymp_Doc.thy │ │ └── document │ │ │ ├── root.tex │ │ │ └── style.sty │ ├── Multiseries_Expansion.thy │ ├── Multiseries_Expansion_Bounds.thy │ ├── Real_Asymp.thy │ ├── Real_Asymp_Approx.thy │ ├── Real_Asymp_Examples.thy │ ├── asymptotic_basis.ML │ ├── exp_log_expression.ML │ ├── expansion_interface.ML │ ├── inst_existentials.ML │ ├── lazy_eval.ML │ ├── multiseries_expansion.ML │ ├── multiseries_expansion_bounds.ML │ ├── real_asymp.ML │ └── real_asymp_diag.ML ├── Real_Vector_Spaces.thy ├── Record.thy ├── Relation.thy ├── Rings.thy ├── SAT.thy ├── SET_Protocol │ ├── Cardholder_Registration.thy │ ├── Event_SET.thy │ ├── Merchant_Registration.thy │ ├── Message_SET.thy │ ├── Public_SET.thy │ ├── Purchase.thy │ ├── SET_Protocol.thy │ └── document │ │ └── root.tex ├── SMT.thy ├── SMT_Examples │ ├── Boogie.thy │ ├── Boogie_Dijkstra.b2i │ ├── Boogie_Dijkstra.certs │ ├── Boogie_Max.b2i │ ├── Boogie_Max.certs │ ├── SMT_Examples.certs │ ├── SMT_Examples.thy │ ├── SMT_Examples_Verit.certs │ ├── SMT_Examples_Verit.thy │ ├── SMT_Tests.thy │ ├── SMT_Tests_Verit.thy │ ├── SMT_Word_Examples.certs │ ├── SMT_Word_Examples.thy │ ├── VCC_Max.b2i │ ├── VCC_Max.certs │ └── boogie.ML ├── SPARK │ ├── Examples │ │ ├── Gcd │ │ │ ├── Gcd.adb │ │ │ ├── Gcd.ads │ │ │ ├── Greatest_Common_Divisor.thy │ │ │ └── greatest_common_divisor │ │ │ │ ├── g_c_d.fdl │ │ │ │ ├── g_c_d.rls │ │ │ │ └── g_c_d.siv │ │ ├── Liseq │ │ │ ├── Liseq.adb │ │ │ ├── Liseq.ads │ │ │ ├── Longest_Increasing_Subsequence.thy │ │ │ └── liseq │ │ │ │ ├── liseq_length.fdl │ │ │ │ ├── liseq_length.rls │ │ │ │ └── liseq_length.siv │ │ ├── README │ │ ├── RIPEMD-160 │ │ │ ├── F.thy │ │ │ ├── Hash.thy │ │ │ ├── K_L.thy │ │ │ ├── K_R.thy │ │ │ ├── RMD.thy │ │ │ ├── RMD_Lemmas.thy │ │ │ ├── RMD_Specification.thy │ │ │ ├── R_L.thy │ │ │ ├── R_R.thy │ │ │ ├── Round.thy │ │ │ ├── S_L.thy │ │ │ ├── S_R.thy │ │ │ ├── rmd.adb │ │ │ ├── rmd.ads │ │ │ ├── rmd │ │ │ │ ├── f.fdl │ │ │ │ ├── f.rls │ │ │ │ ├── f.siv │ │ │ │ ├── hash.fdl │ │ │ │ ├── hash.rls │ │ │ │ ├── hash.siv │ │ │ │ ├── k_l.fdl │ │ │ │ ├── k_l.rls │ │ │ │ ├── k_l.siv │ │ │ │ ├── k_r.fdl │ │ │ │ ├── k_r.rls │ │ │ │ ├── k_r.siv │ │ │ │ ├── r_l.fdl │ │ │ │ ├── r_l.rls │ │ │ │ ├── r_l.siv │ │ │ │ ├── r_r.fdl │ │ │ │ ├── r_r.rls │ │ │ │ ├── r_r.siv │ │ │ │ ├── round.fdl │ │ │ │ ├── round.rls │ │ │ │ ├── round.siv │ │ │ │ ├── s_l.fdl │ │ │ │ ├── s_l.rls │ │ │ │ ├── s_l.siv │ │ │ │ ├── s_r.fdl │ │ │ │ ├── s_r.rls │ │ │ │ └── s_r.siv │ │ │ ├── shadow │ │ │ │ └── interfaces.ads │ │ │ ├── wordops.adb │ │ │ └── wordops.ads │ │ └── Sqrt │ │ │ ├── Sqrt.adb │ │ │ ├── Sqrt.ads │ │ │ ├── Sqrt.thy │ │ │ └── sqrt │ │ │ ├── isqrt.fdl │ │ │ ├── isqrt.rls │ │ │ └── isqrt.siv │ ├── Manual │ │ ├── Complex_Types.thy │ │ ├── Example_Verification.thy │ │ ├── Proc1.thy │ │ ├── Proc2.thy │ │ ├── Reference.thy │ │ ├── Simple_Greatest_Common_Divisor.thy │ │ ├── VC_Principles.thy │ │ ├── complex_types_app │ │ │ ├── initialize.fdl │ │ │ ├── initialize.rls │ │ │ └── initialize.siv │ │ ├── document │ │ │ ├── Gcd.adb │ │ │ ├── Gcd.ads │ │ │ ├── Simple_Gcd.adb │ │ │ ├── Simple_Gcd.ads │ │ │ ├── complex_types.ads │ │ │ ├── complex_types_app.adb │ │ │ ├── complex_types_app.ads │ │ │ ├── intro.tex │ │ │ ├── loop_invariant.adb │ │ │ ├── loop_invariant.ads │ │ │ ├── root.bib │ │ │ └── root.tex │ │ ├── loop_invariant │ │ │ ├── proc1.fdl │ │ │ ├── proc1.rls │ │ │ ├── proc1.siv │ │ │ ├── proc2.fdl │ │ │ ├── proc2.rls │ │ │ └── proc2.siv │ │ └── simple_greatest_common_divisor │ │ │ ├── g_c_d.fdl │ │ │ ├── g_c_d.rls │ │ │ └── g_c_d.siv │ ├── SPARK.thy │ ├── SPARK_Setup.thy │ └── Tools │ │ ├── fdl_lexer.ML │ │ ├── fdl_parser.ML │ │ ├── spark.scala │ │ ├── spark_commands.ML │ │ └── spark_vcs.ML ├── Semiring_Normalization.thy ├── Series.thy ├── Set.thy ├── Set_Interval.thy ├── Sledgehammer.thy ├── Statespace │ ├── DistinctTreeProver.thy │ ├── StateFun.thy │ ├── StateSpaceEx.thy │ ├── StateSpaceLocale.thy │ ├── StateSpaceSyntax.thy │ ├── distinct_tree_prover.ML │ ├── document │ │ └── root.tex │ ├── state_fun.ML │ └── state_space.ML ├── String.thy ├── Sum_Type.thy ├── TLA │ ├── Action.thy │ ├── Buffer │ │ ├── Buffer.thy │ │ └── DBuffer.thy │ ├── Inc │ │ └── Inc.thy │ ├── Init.thy │ ├── Intensional.thy │ ├── Memory │ │ ├── MemClerk.thy │ │ ├── MemClerkParameters.thy │ │ ├── Memory.thy │ │ ├── MemoryImplementation.thy │ │ ├── MemoryParameters.thy │ │ ├── ProcedureInterface.thy │ │ ├── RPC.thy │ │ ├── RPCMemoryParams.thy │ │ └── RPCParameters.thy │ ├── README.thy │ ├── Stfun.thy │ └── TLA.thy ├── TPTP │ ├── ATP_Problem_Import.thy │ ├── ATP_Theory_Export.thy │ ├── CASC │ │ ├── ReadMe │ │ ├── SysDesc_Isabelle.html │ │ ├── SysDesc_Nitpick.html │ │ └── SysDesc_Refute.html │ ├── MaSh_Eval.thy │ ├── MaSh_Export.thy │ ├── MaSh_Export_Base.thy │ ├── THF_Arith.thy │ ├── TPTP_Interpret.thy │ ├── TPTP_Interpret_Test.thy │ ├── TPTP_Parser.thy │ ├── TPTP_Parser │ │ ├── README │ │ ├── make_mlyacclib │ │ ├── make_tptp_parser │ │ ├── ml-yacc │ │ │ ├── COPYRIGHT │ │ │ └── lib │ │ │ │ ├── base.sig │ │ │ │ ├── join.sml │ │ │ │ ├── lrtable.sml │ │ │ │ ├── ml-yacc-lib.cm │ │ │ │ ├── parser1.sml │ │ │ │ ├── parser2.sml │ │ │ │ ├── sources.cm │ │ │ │ └── stream.sml │ │ ├── ml_yacc_lib.ML │ │ ├── tptp.lex │ │ ├── tptp.yacc │ │ ├── tptp_interpret.ML │ │ ├── tptp_lexyacc.ML │ │ ├── tptp_parser.ML │ │ ├── tptp_problem_name.ML │ │ ├── tptp_proof.ML │ │ ├── tptp_reconstruct.ML │ │ ├── tptp_reconstruct_library.ML │ │ ├── tptp_syntax.ML │ │ └── tptp_to_dot.ML │ ├── TPTP_Parser_Example.thy │ ├── TPTP_Parser_Test.thy │ ├── TPTP_Proof_Reconstruction.thy │ ├── TPTP_Proof_Reconstruction_Test.thy │ ├── TPTP_Proof_Reconstruction_Test_Units.thy │ ├── TPTP_Test.thy │ ├── atp_problem_import.ML │ ├── atp_theory_export.ML │ ├── etc │ │ └── settings │ ├── lib │ │ └── Tools │ │ │ ├── tptp_graph │ │ │ ├── tptp_isabelle │ │ │ ├── tptp_isabelle_hot │ │ │ ├── tptp_nitpick │ │ │ ├── tptp_refute │ │ │ ├── tptp_sledgehammer │ │ │ └── tptp_translate │ ├── mash_eval.ML │ └── mash_export.ML ├── Tools │ ├── ATP │ │ ├── atp_problem.ML │ │ ├── atp_problem_generate.ML │ │ ├── atp_proof.ML │ │ ├── atp_proof_reconstruct.ML │ │ ├── atp_proof_redirect.ML │ │ ├── atp_util.ML │ │ ├── scripts │ │ │ ├── dummy_atp │ │ │ └── remote_pirate │ │ ├── system_on_tptp.ML │ │ └── system_on_tptp.scala │ ├── Argo │ │ ├── argo_real.ML │ │ ├── argo_sat_solver.ML │ │ └── argo_tactic.ML │ ├── BNF │ │ ├── bnf_axiomatization.ML │ │ ├── bnf_comp.ML │ │ ├── bnf_comp_tactics.ML │ │ ├── bnf_def.ML │ │ ├── bnf_def_tactics.ML │ │ ├── bnf_fp_def_sugar.ML │ │ ├── bnf_fp_def_sugar_tactics.ML │ │ ├── bnf_fp_n2m.ML │ │ ├── bnf_fp_n2m_sugar.ML │ │ ├── bnf_fp_n2m_tactics.ML │ │ ├── bnf_fp_rec_sugar_transfer.ML │ │ ├── bnf_fp_rec_sugar_util.ML │ │ ├── bnf_fp_util.ML │ │ ├── bnf_fp_util_tactics.ML │ │ ├── bnf_gfp.ML │ │ ├── bnf_gfp_grec.ML │ │ ├── bnf_gfp_grec_sugar.ML │ │ ├── bnf_gfp_grec_sugar_tactics.ML │ │ ├── bnf_gfp_grec_sugar_util.ML │ │ ├── bnf_gfp_grec_tactics.ML │ │ ├── bnf_gfp_grec_unique_sugar.ML │ │ ├── bnf_gfp_rec_sugar.ML │ │ ├── bnf_gfp_rec_sugar_tactics.ML │ │ ├── bnf_gfp_tactics.ML │ │ ├── bnf_gfp_util.ML │ │ ├── bnf_lfp.ML │ │ ├── bnf_lfp_basic_sugar.ML │ │ ├── bnf_lfp_compat.ML │ │ ├── bnf_lfp_countable.ML │ │ ├── bnf_lfp_rec_sugar.ML │ │ ├── bnf_lfp_rec_sugar_more.ML │ │ ├── bnf_lfp_size.ML │ │ ├── bnf_lfp_tactics.ML │ │ ├── bnf_lfp_util.ML │ │ ├── bnf_lift.ML │ │ ├── bnf_tactics.ML │ │ └── bnf_util.ML │ ├── Ctr_Sugar │ │ ├── case_translation.ML │ │ ├── ctr_sugar.ML │ │ ├── ctr_sugar_code.ML │ │ ├── ctr_sugar_tactics.ML │ │ └── ctr_sugar_util.ML │ ├── Function │ │ ├── fun.ML │ │ ├── fun_cases.ML │ │ ├── function.ML │ │ ├── function_common.ML │ │ ├── function_context_tree.ML │ │ ├── function_core.ML │ │ ├── function_elims.ML │ │ ├── function_lib.ML │ │ ├── induction_schema.ML │ │ ├── lexicographic_order.ML │ │ ├── measure_functions.ML │ │ ├── mutual.ML │ │ ├── partial_function.ML │ │ ├── pat_completeness.ML │ │ ├── pattern_split.ML │ │ ├── relation.ML │ │ ├── scnp_reconstruct.ML │ │ ├── scnp_solve.ML │ │ ├── sum_tree.ML │ │ └── termination.ML │ ├── Lifting │ │ ├── lifting_bnf.ML │ │ ├── lifting_def.ML │ │ ├── lifting_def_code_dt.ML │ │ ├── lifting_info.ML │ │ ├── lifting_setup.ML │ │ ├── lifting_term.ML │ │ └── lifting_util.ML │ ├── Meson │ │ ├── meson.ML │ │ ├── meson_clausify.ML │ │ └── meson_tactic.ML │ ├── Metis │ │ ├── metis_generate.ML │ │ ├── metis_instantiations.ML │ │ ├── metis_reconstruct.ML │ │ └── metis_tactic.ML │ ├── Mirabelle │ │ ├── mirabelle.ML │ │ ├── mirabelle.scala │ │ ├── mirabelle_arith.ML │ │ ├── mirabelle_metis.ML │ │ ├── mirabelle_order.ML │ │ ├── mirabelle_presburger.ML │ │ ├── mirabelle_quickcheck.ML │ │ ├── mirabelle_sledgehammer.ML │ │ ├── mirabelle_sledgehammer_filter.ML │ │ ├── mirabelle_try0.ML │ │ └── mirabelle_util.ML │ ├── Nitpick │ │ ├── kodkod.ML │ │ ├── kodkod.scala │ │ ├── kodkod_sat.ML │ │ ├── nitpick.ML │ │ ├── nitpick_commands.ML │ │ ├── nitpick_hol.ML │ │ ├── nitpick_kodkod.ML │ │ ├── nitpick_model.ML │ │ ├── nitpick_mono.ML │ │ ├── nitpick_nut.ML │ │ ├── nitpick_peephole.ML │ │ ├── nitpick_preproc.ML │ │ ├── nitpick_rep.ML │ │ ├── nitpick_scope.ML │ │ ├── nitpick_tests.ML │ │ └── nitpick_util.ML │ ├── Nunchaku │ │ ├── nunchaku.ML │ │ ├── nunchaku_collect.ML │ │ ├── nunchaku_commands.ML │ │ ├── nunchaku_display.ML │ │ ├── nunchaku_model.ML │ │ ├── nunchaku_problem.ML │ │ ├── nunchaku_reconstruct.ML │ │ ├── nunchaku_tool.ML │ │ ├── nunchaku_translate.ML │ │ └── nunchaku_util.ML │ ├── Old_Datatype │ │ ├── old_datatype.ML │ │ ├── old_datatype_aux.ML │ │ ├── old_datatype_codegen.ML │ │ ├── old_datatype_data.ML │ │ ├── old_datatype_prop.ML │ │ ├── old_primrec.ML │ │ └── old_rep_datatype.ML │ ├── Predicate_Compile │ │ ├── code_prolog.ML │ │ ├── core_data.ML │ │ ├── mode_inference.ML │ │ ├── predicate_compile.ML │ │ ├── predicate_compile_aux.ML │ │ ├── predicate_compile_compilations.ML │ │ ├── predicate_compile_core.ML │ │ ├── predicate_compile_data.ML │ │ ├── predicate_compile_fun.ML │ │ ├── predicate_compile_pred.ML │ │ ├── predicate_compile_proof.ML │ │ ├── predicate_compile_quickcheck.ML │ │ └── predicate_compile_specialisation.ML │ ├── Qelim │ │ ├── cooper.ML │ │ ├── cooper_procedure.ML │ │ └── qelim.ML │ ├── Quickcheck │ │ ├── Narrowing_Engine.hs │ │ ├── PNF_Narrowing_Engine.hs │ │ ├── abstract_generators.ML │ │ ├── exhaustive_generators.ML │ │ ├── find_unused_assms.ML │ │ ├── narrowing_generators.ML │ │ ├── quickcheck_common.ML │ │ └── random_generators.ML │ ├── Quotient │ │ ├── quotient_def.ML │ │ ├── quotient_info.ML │ │ ├── quotient_tacs.ML │ │ ├── quotient_term.ML │ │ └── quotient_type.ML │ ├── SMT │ │ ├── conj_disj_perm.ML │ │ ├── cvc5_replay.ML │ │ ├── cvc5_replay_methods.ML │ │ ├── cvc_interface.ML │ │ ├── cvc_proof_parse.ML │ │ ├── lethe_isar.ML │ │ ├── lethe_proof.ML │ │ ├── lethe_proof_parse.ML │ │ ├── lethe_replay_methods.ML │ │ ├── scripts │ │ │ └── dummy_smtlib_solver │ │ ├── smt_builtin.ML │ │ ├── smt_config.ML │ │ ├── smt_datatypes.ML │ │ ├── smt_failure.ML │ │ ├── smt_normalize.ML │ │ ├── smt_real.ML │ │ ├── smt_replay.ML │ │ ├── smt_replay_arith.ML │ │ ├── smt_replay_methods.ML │ │ ├── smt_solver.ML │ │ ├── smt_systems.ML │ │ ├── smt_translate.ML │ │ ├── smt_util.ML │ │ ├── smtlib.ML │ │ ├── smtlib_interface.ML │ │ ├── smtlib_isar.ML │ │ ├── smtlib_proof.ML │ │ ├── vampire_interface.ML │ │ ├── verit_replay.ML │ │ ├── verit_replay_methods.ML │ │ ├── verit_strategies.ML │ │ ├── z3_interface.ML │ │ ├── z3_isar.ML │ │ ├── z3_proof.ML │ │ ├── z3_real.ML │ │ ├── z3_replay.ML │ │ ├── z3_replay_methods.ML │ │ └── z3_replay_rules.ML │ ├── Sledgehammer │ │ ├── async_manager_legacy.ML │ │ ├── sledgehammer.ML │ │ ├── sledgehammer_atp_systems.ML │ │ ├── sledgehammer_commands.ML │ │ ├── sledgehammer_fact.ML │ │ ├── sledgehammer_instantiations.ML │ │ ├── sledgehammer_isar.ML │ │ ├── sledgehammer_isar_annotate.ML │ │ ├── sledgehammer_isar_compress.ML │ │ ├── sledgehammer_isar_minimize.ML │ │ ├── sledgehammer_isar_preplay.ML │ │ ├── sledgehammer_isar_proof.ML │ │ ├── sledgehammer_mash.ML │ │ ├── sledgehammer_mepo.ML │ │ ├── sledgehammer_proof_methods.ML │ │ ├── sledgehammer_prover.ML │ │ ├── sledgehammer_prover_atp.ML │ │ ├── sledgehammer_prover_minimize.ML │ │ ├── sledgehammer_prover_smt.ML │ │ ├── sledgehammer_prover_tactic.ML │ │ ├── sledgehammer_tactics.ML │ │ └── sledgehammer_util.ML │ ├── Transfer │ │ ├── transfer.ML │ │ └── transfer_bnf.ML │ ├── arith_data.ML │ ├── boolean_algebra_cancel.ML │ ├── choice_specification.ML │ ├── cnf.ML │ ├── code_evaluation.ML │ ├── coinduction.ML │ ├── datatype_realizer.ML │ ├── datatype_simprocs.ML │ ├── etc │ │ ├── options │ │ └── settings │ ├── functor.ML │ ├── groebner.ML │ ├── group_cancel.ML │ ├── hologic.ML │ ├── inductive.ML │ ├── inductive_realizer.ML │ ├── inductive_set.ML │ ├── int_arith.ML │ ├── lambda_lifting.ML │ ├── lin_arith.ML │ ├── literal.ML │ ├── monomorph.ML │ ├── nat_arith.ML │ ├── nat_numeral_simprocs.ML │ ├── numeral.ML │ ├── numeral_simprocs.ML │ ├── prop_logic.ML │ ├── recdef.ML │ ├── record.ML │ ├── reflection.ML │ ├── reification.ML │ ├── rewrite_hol_proof.ML │ ├── sat.ML │ ├── sat_solver.ML │ ├── semiring_normalizer.ML │ ├── set_comprehension_pointfree.ML │ ├── simpdata.ML │ ├── split_rule.ML │ ├── string_syntax.ML │ ├── try0.ML │ ├── try0_util.ML │ ├── typedef.ML │ └── value_command.ML ├── Topological_Spaces.thy ├── Transcendental.thy ├── Transfer.thy ├── Transitive_Closure.thy ├── Try0.thy ├── Try0_HOL.thy ├── Typedef.thy ├── Typerep.thy ├── Types_To_Sets │ ├── Examples │ │ ├── Finite.thy │ │ ├── Group_On_With.thy │ │ ├── Linear_Algebra_On.thy │ │ ├── Linear_Algebra_On_With.thy │ │ ├── Prerequisites.thy │ │ ├── T2_Spaces.thy │ │ └── Unoverload_Def.thy │ ├── Types_To_Sets.thy │ ├── internalize_sort.ML │ ├── local_typedef.ML │ ├── unoverload_def.ML │ ├── unoverload_type.ML │ └── unoverloading.ML ├── UNITY │ ├── Comp.thy │ ├── Comp │ │ ├── Alloc.thy │ │ ├── AllocBase.thy │ │ ├── AllocImpl.thy │ │ ├── Client.thy │ │ ├── Counter.thy │ │ ├── Counterc.thy │ │ ├── Handshake.thy │ │ ├── Priority.thy │ │ ├── PriorityAux.thy │ │ ├── Progress.thy │ │ ├── README_Comp.thy │ │ └── TimerArray.thy │ ├── Constrains.thy │ ├── Detects.thy │ ├── ELT.thy │ ├── Extend.thy │ ├── FP.thy │ ├── Follows.thy │ ├── Guar.thy │ ├── Lift_prog.thy │ ├── ListOrder.thy │ ├── PPROD.thy │ ├── ProgressSets.thy │ ├── Project.thy │ ├── README.thy │ ├── Rename.thy │ ├── Simple │ │ ├── Channel.thy │ │ ├── Common.thy │ │ ├── Deadlock.thy │ │ ├── Lift.thy │ │ ├── Mutex.thy │ │ ├── NSP_Bad.thy │ │ ├── Network.thy │ │ ├── README_Simple.thy │ │ ├── Reach.thy │ │ ├── Reachability.thy │ │ └── Token.thy │ ├── SubstAx.thy │ ├── Transformers.thy │ ├── UNITY.thy │ ├── UNITY_Main.thy │ ├── UNITY_tactics.ML │ ├── Union.thy │ ├── WFair.thy │ └── document │ │ └── root.tex ├── Unix │ ├── Nested_Environment.thy │ ├── Unix.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── Vector_Spaces.thy ├── Wellfounded.thy ├── Wfrec.thy ├── ZF │ ├── Games.thy │ ├── HOLZF.thy │ ├── LProd.thy │ ├── MainZF.thy │ ├── Zet.thy │ └── document │ │ └── root.tex ├── Zorn.thy ├── document │ ├── root.bib │ └── root.tex └── ex │ ├── Antiquote.thy │ ├── Argo_Examples.thy │ ├── Arith_Examples.thy │ ├── Ballot.thy │ ├── BigO.thy │ ├── BinEx.thy │ ├── Birthday_Paradox.thy │ ├── Bit_Operation_Computations.thy │ ├── Bubblesort.thy │ ├── CTL.thy │ ├── Cartouche_Examples.thy │ ├── Case_Product.thy │ ├── Chinese.thy │ ├── Classical.thy │ ├── Code_Binary_Nat_examples.thy │ ├── Code_Lazy_Demo.thy │ ├── Code_Timing.thy │ ├── Coercion_Examples.thy │ ├── Computations.thy │ ├── Conditional_Parametricity_Examples.thy │ ├── Cubic_Quartic.thy │ ├── Datatype_Record_Examples.thy │ ├── Erdoes_Szekeres.thy │ ├── Eval_Examples.thy │ ├── Executable_Relation.thy │ ├── Execute_Choice.thy │ ├── Function_Growth.thy │ ├── Gauge_Integration.thy │ ├── HarmonicSeries.thy │ ├── Hebrew.thy │ ├── Hex_Bin_Examples.thy │ ├── IArray_Examples.thy │ ├── Interpretation_in_nested_targets.thy │ ├── Intuitionistic.thy │ ├── Join_Theory.thy │ ├── Lagrange.thy │ ├── List_to_Set_Comprehension_Examples.thy │ ├── LocaleTest2.thy │ ├── MergeSort.thy │ ├── Meson_Test.thy │ ├── MonoidGroup.thy │ ├── Multiquote.thy │ ├── NatSum.thy │ ├── Normalization_by_Evaluation.thy │ ├── Note_on_signed_division_on_words.thy │ ├── PER.thy │ ├── Parallel_Example.thy │ ├── Peano_Axioms.thy │ ├── Perm_Fragments.thy │ ├── PresburgerEx.thy │ ├── Pythagoras.thy │ ├── Quicksort.thy │ ├── Radix_Sort.thy │ ├── Reflection_Examples.thy │ ├── Refute_Examples.thy │ ├── Residue_Ring.thy │ ├── SAT_Examples.thy │ ├── SOS.thy │ ├── SOS_Cert.thy │ ├── Serbian.thy │ ├── Set_Comprehension_Pointfree_Examples.thy │ ├── Set_Theory.thy │ ├── Simproc_Tests.thy │ ├── Simps_Case_Conv_Examples.thy │ ├── Sketch_and_Explore.thy │ ├── Sorting_Algorithms_Examples.thy │ ├── Specifications_with_bundle_mixins.thy │ ├── Sqrt_Script.thy │ ├── Sudoku.thy │ ├── Tarski.thy │ ├── Termination.thy │ ├── ThreeDivides.thy │ ├── Transfer_Debug.thy │ ├── Transfer_Int_Nat.thy │ ├── Transitive_Closure_Table_Ex.thy │ ├── Tree23.thy │ ├── Triangular_Numbers.thy │ ├── Unification.thy │ ├── While_Combinator_Example.thy │ ├── Word_Computations.thy │ ├── Word_Msb.thy │ ├── document │ └── root.bib │ └── veriT_Preprocessing.thy ├── LCF ├── LCF.thy ├── ROOT └── ex │ ├── Ex1.thy │ ├── Ex2.thy │ ├── Ex3.thy │ └── Ex4.thy ├── Provers ├── Arith │ ├── assoc_fold.ML │ ├── cancel_div_mod.ML │ ├── cancel_numeral_factor.ML │ ├── cancel_numerals.ML │ ├── combine_numerals.ML │ ├── extract_common_term.ML │ └── fast_lin_arith.ML ├── README ├── blast.ML ├── clasimp.ML ├── classical.ML ├── hypsubst.ML ├── order_procedure.ML ├── order_tac.ML ├── preorder.ML ├── quantifier1.ML ├── splitter.ML ├── trancl.ML └── typedsimp.ML ├── Pure ├── Admin │ ├── afp.scala │ ├── build_doc.scala │ ├── build_history.scala │ ├── build_log.scala │ ├── build_release.scala │ ├── build_status.scala │ ├── check_sources.scala │ ├── component_bash_process.scala │ ├── component_csdp.scala │ ├── component_cvc5.scala │ ├── component_cygwin.scala │ ├── component_e.scala │ ├── component_easychair.scala │ ├── component_elm.scala │ ├── component_eptcs.scala │ ├── component_find_facts_web.scala │ ├── component_flatlaf.scala │ ├── component_foiltex.scala │ ├── component_fonts.scala │ ├── component_hol_light.scala │ ├── component_hugo.scala │ ├── component_javamail.scala │ ├── component_jcef.scala │ ├── component_jdk.scala │ ├── component_jedit.scala │ ├── component_jsoup.scala │ ├── component_jsvg.scala │ ├── component_lipics.scala │ ├── component_llncs.scala │ ├── component_minisat.scala │ ├── component_mlton.scala │ ├── component_pdfjs.scala │ ├── component_polyml.scala │ ├── component_postgresql.scala │ ├── component_prismjs.scala │ ├── component_rsync.scala │ ├── component_scala.scala │ ├── component_solr.scala │ ├── component_spass.scala │ ├── component_sqlite.scala │ ├── component_stack.scala │ ├── component_vampire.scala │ ├── component_verit.scala │ ├── component_windows_app.scala │ ├── component_xz.scala │ ├── component_zipperposition.scala │ ├── component_zstd.scala │ └── isabelle_cronjob.scala ├── Build │ ├── browser_info.scala │ ├── build.ML │ ├── build.scala │ ├── build_benchmark.scala │ ├── build_ci.scala │ ├── build_cluster.scala │ ├── build_job.scala │ ├── build_manager.scala │ ├── build_process.scala │ ├── build_schedule.scala │ ├── database_progress.scala │ ├── export.ML │ ├── export.scala │ ├── export_theory.ML │ ├── export_theory.scala │ ├── file_format.scala │ ├── resources.ML │ ├── resources.scala │ ├── sessions.ML │ ├── sessions.scala │ └── store.scala ├── Concurrent │ ├── cache.ML │ ├── consumer_thread.scala │ ├── counter.ML │ ├── counter.scala │ ├── delay.scala │ ├── event_timer.ML │ ├── event_timer.scala │ ├── future.ML │ ├── future.scala │ ├── isabelle_thread.ML │ ├── isabelle_thread.scala │ ├── lazy.ML │ ├── mailbox.ML │ ├── mailbox.scala │ ├── multithreading.ML │ ├── multithreading.scala │ ├── par_exn.ML │ ├── par_list.ML │ ├── par_list.scala │ ├── single_assignment.ML │ ├── synchronized.ML │ ├── synchronized.scala │ ├── task_queue.ML │ ├── thread_attributes.ML │ ├── thread_data.ML │ ├── thread_data_virtual.ML │ ├── thread_position.ML │ ├── timeout.ML │ └── unsynchronized.ML ├── Examples │ ├── First_Order_Logic.thy │ ├── Higher_Order_Logic.thy │ └── document │ │ ├── root.bib │ │ └── root.tex ├── GUI │ ├── color_value.scala │ ├── desktop_app.scala │ ├── font_metric.scala │ ├── gui.scala │ ├── gui_thread.scala │ ├── popup.scala │ ├── rich_text.scala │ ├── tree_view.scala │ └── wrap_panel.scala ├── General │ ├── alist.ML │ ├── antiquote.ML │ ├── antiquote.scala │ ├── array.ML │ ├── balanced_tree.ML │ ├── base64.ML │ ├── base64.scala │ ├── basics.ML │ ├── bibtex.ML │ ├── bibtex.scala │ ├── binding.ML │ ├── bitset.ML │ ├── buffer.ML │ ├── bytes.ML │ ├── bytes.scala │ ├── cache.scala │ ├── change_table.ML │ ├── codepoint.scala │ ├── comment.ML │ ├── comment.scala │ ├── completion.ML │ ├── completion.scala │ ├── compress.scala │ ├── csv.scala │ ├── date.scala │ ├── exn.ML │ ├── exn.scala │ ├── file.ML │ ├── file.scala │ ├── file_store.scala │ ├── file_stream.ML │ ├── file_watcher.scala │ ├── graph.ML │ ├── graph.scala │ ├── graph_display.ML │ ├── graph_display.scala │ ├── graphics_file.scala │ ├── heap.ML │ ├── html.scala │ ├── http.scala │ ├── input.ML │ ├── integer.ML │ ├── js.scala │ ├── json.scala │ ├── json_api.scala │ ├── latex.ML │ ├── latex.scala │ ├── linear_set.ML │ ├── linear_set.scala │ ├── logger.scala │ ├── long_name.ML │ ├── long_name.scala │ ├── mail.scala │ ├── mailman.scala │ ├── mercurial.scala │ ├── multi_map.scala │ ├── name_space.ML │ ├── ord_list.ML │ ├── output.ML │ ├── output.scala │ ├── output_primitives.ML │ ├── output_primitives_virtual.ML │ ├── path.ML │ ├── path.scala │ ├── position.ML │ ├── position.scala │ ├── pretty.ML │ ├── pretty.scala │ ├── print_mode.ML │ ├── properties.ML │ ├── properties.scala │ ├── queue.ML │ ├── random.ML │ ├── rat.ML │ ├── rdf.scala │ ├── rsync.scala │ ├── same.ML │ ├── scan.ML │ ├── scan.scala │ ├── seq.ML │ ├── set.ML │ ├── sha1.ML │ ├── sha1.scala │ ├── socket_io.ML │ ├── source.ML │ ├── space.scala │ ├── sql.scala │ ├── ssh.scala │ ├── stack.ML │ ├── string.ML │ ├── symbol.ML │ ├── symbol.scala │ ├── symbol_explode.ML │ ├── symbol_pos.ML │ ├── table.ML │ ├── time.ML │ ├── time.scala │ ├── timing.ML │ ├── timing.scala │ ├── toml.scala │ ├── untyped.scala │ ├── url.ML │ ├── url.scala │ ├── utf8.ML │ ├── utf8.scala │ ├── uuid.scala │ ├── value.ML │ ├── value.scala │ ├── vector.ML │ ├── word.scala │ ├── xz.ML │ ├── zstd.ML │ └── zstd.scala ├── Isar │ ├── args.ML │ ├── attrib.ML │ ├── auto_bind.ML │ ├── bundle.ML │ ├── calculation.ML │ ├── class.ML │ ├── class_declaration.ML │ ├── code.ML │ ├── context_rules.ML │ ├── document_structure.scala │ ├── element.ML │ ├── entity.ML │ ├── experiment.ML │ ├── expression.ML │ ├── generic_target.ML │ ├── interpretation.ML │ ├── isar_cmd.ML │ ├── keyword.ML │ ├── keyword.scala │ ├── line_structure.scala │ ├── local_defs.ML │ ├── local_theory.ML │ ├── locale.ML │ ├── method.ML │ ├── named_target.ML │ ├── object_logic.ML │ ├── obtain.ML │ ├── outer_syntax.ML │ ├── outer_syntax.scala │ ├── overloading.ML │ ├── parse.ML │ ├── parse.scala │ ├── parse_spec.ML │ ├── proof.ML │ ├── proof_context.ML │ ├── proof_display.ML │ ├── proof_node.ML │ ├── rule_cases.ML │ ├── runtime.ML │ ├── spec_rules.ML │ ├── specification.ML │ ├── subgoal.ML │ ├── target_context.ML │ ├── token.ML │ ├── token.scala │ ├── toplevel.ML │ └── typedecl.ML ├── ML │ ├── exn_debugger.ML │ ├── exn_properties.ML │ ├── ml_antiquotation.ML │ ├── ml_antiquotations.ML │ ├── ml_compiler.ML │ ├── ml_compiler0.ML │ ├── ml_compiler1.ML │ ├── ml_compiler2.ML │ ├── ml_console.scala │ ├── ml_context.ML │ ├── ml_env.ML │ ├── ml_file.ML │ ├── ml_heap.ML │ ├── ml_heap.scala │ ├── ml_init.ML │ ├── ml_instantiate.ML │ ├── ml_lex.ML │ ├── ml_lex.scala │ ├── ml_name_space.ML │ ├── ml_options.ML │ ├── ml_pid.ML │ ├── ml_pp.ML │ ├── ml_pretty.ML │ ├── ml_print_depth.ML │ ├── ml_print_depth0.ML │ ├── ml_process.ML │ ├── ml_process.scala │ ├── ml_profiling.ML │ ├── ml_profiling.scala │ ├── ml_recursive.ML │ ├── ml_settings.scala │ ├── ml_statistics.ML │ ├── ml_statistics.scala │ ├── ml_syntax.ML │ ├── ml_syntax.scala │ ├── ml_system.ML │ └── ml_thms.ML ├── ML_Bootstrap.thy ├── PIDE │ ├── active.ML │ ├── byte_message.ML │ ├── byte_message.scala │ ├── command.ML │ ├── command.scala │ ├── command_span.ML │ ├── command_span.scala │ ├── document.ML │ ├── document.scala │ ├── document_editor.scala │ ├── document_id.ML │ ├── document_id.scala │ ├── document_info.scala │ ├── document_status.scala │ ├── editor.scala │ ├── execution.ML │ ├── headless.scala │ ├── line.scala │ ├── markup.ML │ ├── markup.scala │ ├── markup_kind.ML │ ├── markup_tree.scala │ ├── protocol.ML │ ├── protocol.scala │ ├── protocol_command.ML │ ├── protocol_handlers.scala │ ├── protocol_message.ML │ ├── protocol_message.scala │ ├── prover.scala │ ├── query_operation.ML │ ├── query_operation.scala │ ├── rendering.scala │ ├── session.ML │ ├── session.scala │ ├── text.scala │ ├── xml.ML │ ├── xml.scala │ ├── xml0.ML │ ├── yxml.ML │ └── yxml.scala ├── Proof │ ├── extraction.ML │ ├── proof_checker.ML │ ├── proof_rewrite_rules.ML │ └── proof_syntax.ML ├── Pure.thy ├── README ├── ROOT ├── ROOT.ML ├── ROOT.scala ├── ROOT0.ML ├── Sessions.thy ├── Syntax │ ├── ast.ML │ ├── lexicon.ML │ ├── local_syntax.ML │ ├── mixfix.ML │ ├── parser.ML │ ├── printer.ML │ ├── simple_syntax.ML │ ├── syntax.ML │ ├── syntax_ext.ML │ ├── syntax_phases.ML │ ├── syntax_trans.ML │ ├── term_position.ML │ └── type_annotation.ML ├── System │ ├── bash.ML │ ├── bash.scala │ ├── classpath.scala │ ├── command_line.ML │ ├── command_line.scala │ ├── components.scala │ ├── cygwin.scala │ ├── executable.scala │ ├── getopts.scala │ ├── host.scala │ ├── isabelle_charset.scala │ ├── isabelle_fonts.scala │ ├── isabelle_platform.scala │ ├── isabelle_process.ML │ ├── isabelle_process.scala │ ├── isabelle_system.ML │ ├── isabelle_system.scala │ ├── isabelle_tool.ML │ ├── isabelle_tool.scala │ ├── java.ML │ ├── java_statistics.scala │ ├── linux.scala │ ├── message_channel.ML │ ├── mingw.scala │ ├── nodejs.scala │ ├── options.ML │ ├── options.scala │ ├── other_isabelle.scala │ ├── platform.scala │ ├── posix_interrupt.scala │ ├── process_result.ML │ ├── process_result.scala │ ├── program_progress.scala │ ├── progress.scala │ ├── registry.scala │ ├── scala.ML │ ├── scala.scala │ ├── scala_compiler.ML │ ├── setup_tool.scala │ ├── system_channel.scala │ ├── tty_loop.scala │ └── web_app.scala ├── Thy │ ├── document_antiquotation.ML │ ├── document_antiquotations.ML │ ├── document_build.scala │ ├── document_marker.ML │ ├── document_output.ML │ ├── document_source.ML │ ├── markdown.ML │ ├── term_style.ML │ ├── thy_element.ML │ ├── thy_element.scala │ ├── thy_header.ML │ ├── thy_header.scala │ ├── thy_info.ML │ └── thy_syntax.scala ├── Tools │ ├── adhoc_overloading.ML │ ├── caddy_setup.scala │ ├── check_keywords.scala │ ├── class_deps.ML │ ├── debugger.ML │ ├── debugger.scala │ ├── doc.ML │ ├── doc.scala │ ├── docker_build.scala │ ├── dotnet_setup.scala │ ├── dump.scala │ ├── find_consts.ML │ ├── find_theorems.ML │ ├── flarum.scala │ ├── fontforge.scala │ ├── generated_files.ML │ ├── ghc.ML │ ├── go_setup.scala │ ├── java_monitor.scala │ ├── jedit.ML │ ├── logo.scala │ ├── mkroot.scala │ ├── named_theorems.ML │ ├── named_thms.ML │ ├── phabricator.scala │ ├── plugin.ML │ ├── print_operation.ML │ ├── print_operation.scala │ ├── prismjs.ML │ ├── prismjs.scala │ ├── process_theories.scala │ ├── profiling.scala │ ├── profiling_report.scala │ ├── rail.ML │ ├── rule_insts.ML │ ├── scala_build.scala │ ├── scala_project.scala │ ├── server.scala │ ├── server_commands.scala │ ├── simplifier_trace.ML │ ├── simplifier_trace.scala │ ├── spell_checker.scala │ ├── sync.scala │ ├── task_statistics.scala │ ├── thy_deps.ML │ ├── update_cartouches.scala │ ├── update_comments.scala │ ├── update_then.scala │ ├── update_theorems.scala │ └── update_tool.scala ├── assumption.ML ├── axclass.ML ├── bires.ML ├── config.ML ├── conjunction.ML ├── consts.ML ├── context.ML ├── context_position.ML ├── context_tactic.ML ├── conv.ML ├── cterm_items.ML ├── defs.ML ├── drule.ML ├── envir.ML ├── ex │ ├── Alternative_Headings.thy │ ├── Alternative_Headings_Examples.thy │ ├── Def.thy │ ├── Def_Examples.thy │ ├── Guess.thy │ ├── Guess_Examples.thy │ └── document │ │ └── root.tex ├── facts.ML ├── global_theory.ML ├── goal.ML ├── goal_display.ML ├── item_net.ML ├── library.ML ├── library.scala ├── logic.ML ├── more_pattern.ML ├── more_thm.ML ├── more_unify.ML ├── morphism.ML ├── name.ML ├── name.scala ├── net.ML ├── par_tactical.ML ├── pattern.ML ├── primitive_defs.ML ├── proofterm.ML ├── pure_syn.ML ├── pure_thy.ML ├── pure_thy.scala ├── raw_simplifier.ML ├── search.ML ├── sign.ML ├── simplifier.ML ├── skip_proof.ML ├── soft_type_system.ML ├── sorts.ML ├── tactic.ML ├── tactical.ML ├── term.ML ├── term.scala ├── term_items.ML ├── term_ord.ML ├── term_sharing.ML ├── term_subst.ML ├── term_xml.ML ├── term_xml.scala ├── theory.ML ├── thm.ML ├── thm_deps.ML ├── thm_name.ML ├── thm_name.scala ├── type.ML ├── type_infer.ML ├── type_infer_context.ML ├── unify.ML ├── update.scala ├── variable.ML └── zterm.ML ├── Sequents ├── ILL.thy ├── ILL_predlog.thy ├── LK.thy ├── LK │ ├── Hard_Quantifiers.thy │ ├── Nat.thy │ ├── Propositional.thy │ └── Quantifiers.thy ├── LK0.thy ├── Modal0.thy ├── ROOT ├── S4.thy ├── S43.thy ├── Sequents.thy ├── T.thy ├── Washing.thy ├── modal.ML ├── prover.ML └── simpdata.ML ├── Tools ├── Argo │ ├── argo_cc.ML │ ├── argo_cdcl.ML │ ├── argo_clausify.ML │ ├── argo_cls.ML │ ├── argo_common.ML │ ├── argo_core.ML │ ├── argo_expr.ML │ ├── argo_heap.ML │ ├── argo_lit.ML │ ├── argo_proof.ML │ ├── argo_rewr.ML │ ├── argo_simplex.ML │ ├── argo_solver.ML │ ├── argo_term.ML │ └── argo_thy.ML ├── Code │ ├── code_haskell.ML │ ├── code_ml.ML │ ├── code_namespace.ML │ ├── code_preproc.ML │ ├── code_printer.ML │ ├── code_runtime.ML │ ├── code_scala.ML │ ├── code_simp.ML │ ├── code_symbol.ML │ ├── code_target.ML │ └── code_thingol.ML ├── Code_Generator.thy ├── Demo │ ├── README.md │ ├── etc │ │ ├── build.props │ │ ├── options │ │ └── settings │ └── src │ │ └── demo_tool.scala ├── Electron │ └── test │ │ ├── main.js │ │ └── package.json ├── Find_Facts │ ├── etc │ │ ├── options │ │ └── settings │ ├── lib │ │ └── Tools │ │ │ ├── find_facts_index │ │ │ └── find_facts_server │ ├── src │ │ ├── elm.scala │ │ ├── find_facts.scala │ │ ├── find_facts_tools.scala │ │ ├── solr.scala │ │ └── thy_blocks.scala │ └── web │ │ ├── elm.json │ │ ├── favicon.ico │ │ └── src │ │ ├── About.elm │ │ ├── Delay.elm │ │ ├── Details.elm │ │ ├── Library.elm │ │ ├── Main.elm │ │ ├── Parser.elm │ │ ├── Query.elm │ │ ├── Results.elm │ │ ├── Searcher.elm │ │ └── Utils.elm ├── GraphBrowser │ ├── awt │ │ ├── Border.java │ │ ├── MessageDialog.java │ │ └── TextFrame.java │ ├── etc │ │ ├── build.props │ │ └── settings │ ├── graphbrowser │ │ ├── AWTFontMetrics.java │ │ ├── AbstractFontMetrics.java │ │ ├── Box.java │ │ ├── Console.java │ │ ├── DefaultFontMetrics.java │ │ ├── Directory.java │ │ ├── DummyVertex.java │ │ ├── Graph.java │ │ ├── GraphBrowser.java │ │ ├── GraphBrowserFrame.java │ │ ├── GraphView.java │ │ ├── NormalVertex.java │ │ ├── ParseError.java │ │ ├── Region.java │ │ ├── Spline.java │ │ ├── TreeBrowser.java │ │ ├── TreeNode.java │ │ └── Vertex.java │ └── lib │ │ └── Tools │ │ └── browser ├── Graphview │ ├── etc │ │ └── options │ ├── graph_file.scala │ ├── graph_panel.scala │ ├── graphview.scala │ ├── layout.scala │ ├── main_panel.scala │ ├── metrics.scala │ ├── model.scala │ ├── mutator.scala │ ├── mutator_dialog.scala │ ├── mutator_event.scala │ ├── popups.scala │ ├── shapes.scala │ └── tree_panel.scala ├── Haskell │ ├── Haskell.thy │ └── Test.thy ├── IsaPlanner │ ├── README │ ├── isand.ML │ ├── rw_inst.ML │ └── zipper.ML ├── Metis │ ├── Makefile │ ├── Makefile.FILES │ ├── PortableIsabelle.sml │ ├── README │ ├── fix_metis_license │ ├── make_metis │ ├── metis.ML │ ├── scripts │ │ └── mlpp │ └── src │ │ ├── Active.sig │ │ ├── Active.sml │ │ ├── Atom.sig │ │ ├── Atom.sml │ │ ├── AtomNet.sig │ │ ├── AtomNet.sml │ │ ├── Clause.sig │ │ ├── Clause.sml │ │ ├── ElementSet.sig │ │ ├── ElementSet.sml │ │ ├── Formula.sig │ │ ├── Formula.sml │ │ ├── Heap.sig │ │ ├── Heap.sml │ │ ├── KeyMap.sig │ │ ├── KeyMap.sml │ │ ├── KnuthBendixOrder.sig │ │ ├── KnuthBendixOrder.sml │ │ ├── Lazy.sig │ │ ├── Lazy.sml │ │ ├── Literal.sig │ │ ├── Literal.sml │ │ ├── LiteralNet.sig │ │ ├── LiteralNet.sml │ │ ├── Map.sig │ │ ├── Map.sml │ │ ├── Model.sig │ │ ├── Model.sml │ │ ├── Name.sig │ │ ├── Name.sml │ │ ├── NameArity.sig │ │ ├── NameArity.sml │ │ ├── Normalize.sig │ │ ├── Normalize.sml │ │ ├── Options.sig │ │ ├── Options.sml │ │ ├── Ordered.sig │ │ ├── Ordered.sml │ │ ├── Parse.sig │ │ ├── Parse.sml │ │ ├── Portable.sig │ │ ├── PortableMlton.sml │ │ ├── PortableMosml.sml │ │ ├── PortablePolyml.sml │ │ ├── Print.sig │ │ ├── Print.sml │ │ ├── Problem.sig │ │ ├── Problem.sml │ │ ├── Proof.sig │ │ ├── Proof.sml │ │ ├── Random.sig │ │ ├── Random.sml │ │ ├── Resolution.sig │ │ ├── Resolution.sml │ │ ├── Rewrite.sig │ │ ├── Rewrite.sml │ │ ├── Rule.sig │ │ ├── Rule.sml │ │ ├── Set.sig │ │ ├── Set.sml │ │ ├── Sharing.sig │ │ ├── Sharing.sml │ │ ├── Stream.sig │ │ ├── Stream.sml │ │ ├── Subst.sig │ │ ├── Subst.sml │ │ ├── Subsume.sig │ │ ├── Subsume.sml │ │ ├── Term.sig │ │ ├── Term.sml │ │ ├── TermNet.sig │ │ ├── TermNet.sml │ │ ├── Thm.sig │ │ ├── Thm.sml │ │ ├── Tptp.sig │ │ ├── Tptp.sml │ │ ├── Units.sig │ │ ├── Units.sml │ │ ├── Useful.sig │ │ ├── Useful.sml │ │ ├── Waiting.sig │ │ ├── Waiting.sml │ │ ├── metis.sml │ │ ├── problems.sml │ │ ├── problems2tptp.sml │ │ └── selftest.sml ├── Profiling.thy ├── README ├── ROOT ├── SML │ ├── Example.sig │ ├── Example.sml │ ├── Examples.thy │ └── factorial.sml ├── Setup │ ├── etc │ │ └── build.props │ └── src │ │ ├── Build.java │ │ ├── Environment.java │ │ ├── Exn.java │ │ ├── GUI_Setup.java │ │ ├── Library.java │ │ └── Setup.java ├── VSCode │ ├── etc │ │ ├── options │ │ └── settings │ ├── extension │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ ├── .vscodeignore │ │ ├── .yarnrc │ │ ├── MANIFEST │ │ ├── README.md │ │ ├── isabelle-language.json │ │ ├── isabelle-ml-grammar.json │ │ ├── isabelle-ml-language.json │ │ ├── isabelle.png │ │ ├── isabelle_vscode.png │ │ ├── media │ │ │ ├── Preview.svg │ │ │ ├── PreviewOnRightPane_16x.svg │ │ │ ├── PreviewOnRightPane_16x_dark.svg │ │ │ ├── Preview_inverse.svg │ │ │ ├── ViewSource.svg │ │ │ ├── ViewSource_inverse.svg │ │ │ ├── documentation-panel.svg │ │ │ ├── documentation.css │ │ │ ├── documentation.js │ │ │ ├── main.js │ │ │ ├── output-panel.svg │ │ │ ├── sledgehammer-panel.svg │ │ │ ├── sledgehammer.css │ │ │ ├── sledgehammer.js │ │ │ ├── symbol-panel.svg │ │ │ ├── symbols.css │ │ │ ├── symbols.js │ │ │ └── vscode.css │ │ ├── package.json │ │ ├── src │ │ │ ├── decorations.ts │ │ │ ├── documentation_panel.ts │ │ │ ├── extension.ts │ │ │ ├── file.ts │ │ │ ├── library.ts │ │ │ ├── lsp.ts │ │ │ ├── output_view.ts │ │ │ ├── platform.ts │ │ │ ├── preview_panel.ts │ │ │ ├── script_decorations.ts │ │ │ ├── sledgehammer_panel.ts │ │ │ ├── state_panel.ts │ │ │ ├── symbol.ts │ │ │ ├── symbol_panel.ts │ │ │ └── vscode_lib.ts │ │ ├── test │ │ │ ├── extension.test.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── no_extension │ │ ├── README.md │ │ ├── isabelle.png │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ └── extension.ts │ │ └── tsconfig.json │ ├── patches │ │ ├── cli.patch │ │ ├── isabelle_encoding.patch │ │ ├── isabelle_encoding.ts │ │ └── vscodium.patch │ └── src │ │ ├── channel.scala │ │ ├── component_vscode_extension.scala │ │ ├── component_vscodium.scala │ │ ├── dynamic_output.scala │ │ ├── language_server.scala │ │ ├── lsp.scala │ │ ├── pretty_text_panel.scala │ │ ├── preview_panel.scala │ │ ├── state_panel.scala │ │ ├── vscode_main.scala │ │ ├── vscode_model.scala │ │ ├── vscode_rendering.scala │ │ ├── vscode_resources.scala │ │ ├── vscode_session.scala │ │ ├── vscode_sledgehammer.scala │ │ └── vscode_spell_checker.scala ├── atomize_elim.ML ├── cache_io.ML ├── case_product.ML ├── coherent.ML ├── cong_tac.ML ├── eqsubst.ML ├── float.ML ├── induct.ML ├── induct_tacs.ML ├── induction.ML ├── intuitionistic.ML ├── jEdit │ ├── README │ ├── etc │ │ ├── options │ │ └── settings │ ├── jedit_base │ │ ├── build.props │ │ ├── plugin.props │ │ ├── plugin.scala │ │ └── services.xml │ ├── jedit_main │ │ ├── actions.xml │ │ ├── build.props │ │ ├── dockables.scala │ │ ├── dockables.xml │ │ ├── isabelle_sidekick.scala │ │ ├── plugin.props │ │ ├── plugin.scala │ │ ├── scala_console.scala │ │ ├── services.scala │ │ └── services.xml │ ├── lib │ │ └── Tools │ │ │ ├── jedit │ │ │ └── jedit_client │ ├── patches │ │ ├── emacs_macros │ │ ├── folding │ │ ├── gutter │ │ ├── keymaps │ │ ├── line_separator │ │ ├── main │ │ ├── menu_accelerator │ │ ├── props │ │ ├── putenv │ │ ├── status_bar │ │ └── vfs_manager │ └── src │ │ ├── active.scala │ │ ├── base_plugin.scala │ │ ├── completion_popup.scala │ │ ├── context_menu.scala │ │ ├── debugger_dockable.scala │ │ ├── dockable.scala │ │ ├── document_dockable.scala │ │ ├── document_model.scala │ │ ├── document_view.scala │ │ ├── documentation_dockable.scala │ │ ├── fold_handling.scala │ │ ├── font_info.scala │ │ ├── graphview_dockable.scala │ │ ├── info_dockable.scala │ │ ├── isabelle.scala │ │ ├── isabelle_encoding.scala │ │ ├── isabelle_export.scala │ │ ├── isabelle_navigator.scala │ │ ├── isabelle_session.scala │ │ ├── isabelle_vfs.scala │ │ ├── jedit_accessible.scala │ │ ├── jedit_bibtex.scala │ │ ├── jedit_editor.scala │ │ ├── jedit_jar.scala │ │ ├── jedit_lib.scala │ │ ├── jedit_main.scala │ │ ├── jedit_mouse_handler.scala │ │ ├── jedit_options.scala │ │ ├── jedit_plugins.scala │ │ ├── jedit_rendering.scala │ │ ├── jedit_resources.scala │ │ ├── jedit_session.scala │ │ ├── jedit_spell_checker.scala │ │ ├── keymap_merge.scala │ │ ├── main_plugin.scala │ │ ├── monitor_dockable.scala │ │ ├── output_area.scala │ │ ├── output_dockable.scala │ │ ├── pide_docking_framework.scala │ │ ├── pretty_text_area.scala │ │ ├── pretty_tooltip.scala │ │ ├── process_indicator.scala │ │ ├── protocol_dockable.scala │ │ ├── query_dockable.scala │ │ ├── raw_output_dockable.scala │ │ ├── rich_text_area.scala │ │ ├── session_build.scala │ │ ├── simplifier_trace_dockable.scala │ │ ├── simplifier_trace_window.scala │ │ ├── sledgehammer_dockable.scala │ │ ├── state_dockable.scala │ │ ├── status_widget.scala │ │ ├── symbols_dockable.scala │ │ ├── syntax_style.scala │ │ ├── syslog_dockable.scala │ │ ├── text_overview.scala │ │ ├── text_structure.scala │ │ ├── theories_dockable.scala │ │ ├── theories_status.scala │ │ ├── timing_dockable.scala │ │ └── token_markup.scala ├── misc_legacy.ML ├── nbe.ML ├── project_rule.ML ├── quickcheck.ML ├── solve_direct.ML ├── subtyping.ML └── try.ML └── ZF ├── AC.thy ├── AC ├── AC15_WO6.thy ├── AC16_WO4.thy ├── AC16_lemmas.thy ├── AC17_AC1.thy ├── AC18_AC19.thy ├── AC7_AC9.thy ├── AC_Equiv.thy ├── Cardinal_aux.thy ├── DC.thy ├── HH.thy ├── Hartog.thy ├── WO1_AC.thy ├── WO1_WO7.thy ├── WO2_AC16.thy ├── WO6_WO1.thy └── document │ ├── root.bib │ └── root.tex ├── Arith.thy ├── ArithSimp.thy ├── Bin.thy ├── Bool.thy ├── Cardinal.thy ├── CardinalArith.thy ├── Cardinal_AC.thy ├── Coind ├── Dynamic.thy ├── ECR.thy ├── Language.thy ├── Map.thy ├── Static.thy ├── Types.thy └── Values.thy ├── Constructible ├── AC_in_L.thy ├── DPow_absolute.thy ├── Datatype_absolute.thy ├── Formula.thy ├── Internalize.thy ├── L_axioms.thy ├── MetaExists.thy ├── Normal.thy ├── Rank.thy ├── Rank_Separation.thy ├── Rec_Separation.thy ├── Reflection.thy ├── Relative.thy ├── Satisfies_absolute.thy ├── Separation.thy ├── WF_absolute.thy ├── WFrec.thy ├── Wellorderings.thy └── document │ ├── root.bib │ └── root.tex ├── Datatype.thy ├── Epsilon.thy ├── EquivClass.thy ├── Finite.thy ├── Fixedpt.thy ├── IMP ├── Com.thy ├── Denotation.thy ├── Equiv.thy └── document │ ├── root.bib │ └── root.tex ├── Induct ├── Acc.thy ├── Binary_Trees.thy ├── Brouwer.thy ├── Comb.thy ├── Datatypes.thy ├── FoldSet.thy ├── ListN.thy ├── Multiset.thy ├── Mutil.thy ├── Ntree.thy ├── Primrec.thy ├── PropLog.thy ├── Rmap.thy ├── Term.thy ├── Tree_Forest.thy └── document │ ├── root.bib │ └── root.tex ├── Inductive.thy ├── InfDatatype.thy ├── Int.thy ├── IntDiv.thy ├── List.thy ├── Nat.thy ├── OrdQuant.thy ├── Order.thy ├── OrderArith.thy ├── OrderType.thy ├── Ordinal.thy ├── Perm.thy ├── QPair.thy ├── QUniv.thy ├── ROOT ├── Resid ├── Confluence.thy ├── Redex.thy ├── Reduction.thy ├── Residuals.thy └── Substitution.thy ├── Sum.thy ├── Tools ├── cartprod.ML ├── datatype_package.ML ├── ind_cases.ML ├── induct_tacs.ML ├── inductive_package.ML ├── numeral_syntax.ML ├── primrec_package.ML └── typechk.ML ├── Trancl.thy ├── UNITY ├── AllocBase.thy ├── AllocImpl.thy ├── ClientImpl.thy ├── Comp.thy ├── Constrains.thy ├── Distributor.thy ├── FP.thy ├── Follows.thy ├── GenPrefix.thy ├── Guar.thy ├── Increasing.thy ├── Merge.thy ├── Monotonicity.thy ├── MultisetSum.thy ├── Mutex.thy ├── State.thy ├── SubstAx.thy ├── UNITY.thy ├── Union.thy └── WFair.thy ├── Univ.thy ├── WF.thy ├── ZF.thy ├── ZFC.thy ├── ZF_Base.thy ├── Zorn.thy ├── arith_data.ML ├── document └── root.tex ├── equalities.thy ├── ex ├── BinEx.thy ├── CoUnit.thy ├── Commutation.thy ├── Group.thy ├── LList.thy ├── Limit.thy ├── NatSum.thy ├── Primes.thy ├── Ramsey.thy ├── Ring.thy └── misc.thy ├── func.thy ├── ind_syntax.ML ├── int_arith.ML ├── pair.thy ├── simpdata.ML └── upair.thy /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/.hgignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/.hgtags -------------------------------------------------------------------------------- /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /Admin/Isabelle_app/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Isabelle_app/build -------------------------------------------------------------------------------- /Admin/Mercurial/Central/hgrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Mercurial/Central/hgrc -------------------------------------------------------------------------------- /Admin/Mercurial/cvsids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Mercurial/cvsids -------------------------------------------------------------------------------- /Admin/Mercurial/hgwebdir.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Mercurial/hgwebdir.cgi -------------------------------------------------------------------------------- /Admin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/README -------------------------------------------------------------------------------- /Admin/Release/CHECKLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Release/CHECKLIST -------------------------------------------------------------------------------- /Admin/Release/isasync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Release/isasync -------------------------------------------------------------------------------- /Admin/Release/mirror-website: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Release/mirror-website -------------------------------------------------------------------------------- /Admin/Release/official: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Release/official -------------------------------------------------------------------------------- /Admin/Windows/Cygwin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/Windows/Cygwin/README -------------------------------------------------------------------------------- /Admin/build/TUM.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/build/TUM.toml -------------------------------------------------------------------------------- /Admin/build_other: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/build_other -------------------------------------------------------------------------------- /Admin/build_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/build_release -------------------------------------------------------------------------------- /Admin/check_ml_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/check_ml_headers -------------------------------------------------------------------------------- /Admin/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/components/README.md -------------------------------------------------------------------------------- /Admin/components/bundled: -------------------------------------------------------------------------------- 1 | #additional components to be bundled for release 2 | -------------------------------------------------------------------------------- /Admin/components/cakeml: -------------------------------------------------------------------------------- 1 | cakeml-2.0 2 | -------------------------------------------------------------------------------- /Admin/components/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/components/index.php -------------------------------------------------------------------------------- /Admin/components/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/components/main -------------------------------------------------------------------------------- /Admin/components/nonfree: -------------------------------------------------------------------------------- 1 | #special components for internal testing only 2 | yices-1.0.28 3 | -------------------------------------------------------------------------------- /Admin/components/optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/components/optional -------------------------------------------------------------------------------- /Admin/components/windows: -------------------------------------------------------------------------------- 1 | #additional components for Windows platform 2 | sumatra_pdf-3.5.2 3 | -------------------------------------------------------------------------------- /Admin/cronjob/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/cronjob/README -------------------------------------------------------------------------------- /Admin/cronjob/crontab.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/cronjob/crontab.server -------------------------------------------------------------------------------- /Admin/cronjob/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/cronjob/main -------------------------------------------------------------------------------- /Admin/cronjob/plain_identify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/cronjob/plain_identify -------------------------------------------------------------------------------- /Admin/cronjob/self_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/cronjob/self_update -------------------------------------------------------------------------------- /Admin/etc/build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/etc/build.props -------------------------------------------------------------------------------- /Admin/etc/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/etc/options -------------------------------------------------------------------------------- /Admin/etc/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/etc/settings -------------------------------------------------------------------------------- /Admin/haskell/stack/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/haskell/stack/README -------------------------------------------------------------------------------- /Admin/haskell/stack/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/haskell/stack/settings -------------------------------------------------------------------------------- /Admin/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/init -------------------------------------------------------------------------------- /Admin/isabelle_fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/isabelle_fonts/README -------------------------------------------------------------------------------- /Admin/lib/Tools/churn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/lib/Tools/churn -------------------------------------------------------------------------------- /Admin/lib/Tools/churn_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/lib/Tools/churn_pie -------------------------------------------------------------------------------- /Admin/lib/scripts/churn_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/lib/scripts/churn_pie -------------------------------------------------------------------------------- /Admin/ocaml/opam/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/ocaml/opam/README -------------------------------------------------------------------------------- /Admin/polyml/INSTALL-MinGW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/polyml/INSTALL-MinGW -------------------------------------------------------------------------------- /Admin/polyml/future/ROOT.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/polyml/future/ROOT.ML -------------------------------------------------------------------------------- /Admin/polyml/future/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/polyml/future/run -------------------------------------------------------------------------------- /Admin/rsyncd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/rsyncd -------------------------------------------------------------------------------- /Admin/rsyncd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/rsyncd.conf -------------------------------------------------------------------------------- /Admin/user-aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/Admin/user-aliases -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/README -------------------------------------------------------------------------------- /README_REPOSITORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/README_REPOSITORY -------------------------------------------------------------------------------- /ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/ROOT -------------------------------------------------------------------------------- /ROOTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/ROOTS -------------------------------------------------------------------------------- /bin/isabelle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/bin/isabelle -------------------------------------------------------------------------------- /bin/isabelle_java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/bin/isabelle_java -------------------------------------------------------------------------------- /doc/Contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/doc/Contents -------------------------------------------------------------------------------- /etc/build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/etc/build.props -------------------------------------------------------------------------------- /etc/components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/etc/components -------------------------------------------------------------------------------- /etc/isabelle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/etc/isabelle.css -------------------------------------------------------------------------------- /etc/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/etc/options -------------------------------------------------------------------------------- /etc/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/etc/settings -------------------------------------------------------------------------------- /etc/symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/etc/symbols -------------------------------------------------------------------------------- /lib/Tools/caddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/caddy -------------------------------------------------------------------------------- /lib/Tools/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/client -------------------------------------------------------------------------------- /lib/Tools/components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/components -------------------------------------------------------------------------------- /lib/Tools/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/console -------------------------------------------------------------------------------- /lib/Tools/dotnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/dotnet -------------------------------------------------------------------------------- /lib/Tools/electron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/electron -------------------------------------------------------------------------------- /lib/Tools/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/env -------------------------------------------------------------------------------- /lib/Tools/getenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/getenv -------------------------------------------------------------------------------- /lib/Tools/ghc_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/ghc_setup -------------------------------------------------------------------------------- /lib/Tools/ghc_stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/ghc_stack -------------------------------------------------------------------------------- /lib/Tools/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/go -------------------------------------------------------------------------------- /lib/Tools/gofmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/gofmt -------------------------------------------------------------------------------- /lib/Tools/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/install -------------------------------------------------------------------------------- /lib/Tools/java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/java -------------------------------------------------------------------------------- /lib/Tools/java_monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/java_monitor -------------------------------------------------------------------------------- /lib/Tools/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/node -------------------------------------------------------------------------------- /lib/Tools/ocaml_opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/ocaml_opam -------------------------------------------------------------------------------- /lib/Tools/ocaml_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/ocaml_setup -------------------------------------------------------------------------------- /lib/Tools/ocaml_setup_base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/ocaml_setup_base -------------------------------------------------------------------------------- /lib/Tools/scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/scala -------------------------------------------------------------------------------- /lib/Tools/scala_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/scala_build -------------------------------------------------------------------------------- /lib/Tools/scalac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/scalac -------------------------------------------------------------------------------- /lib/Tools/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/Tools/version -------------------------------------------------------------------------------- /lib/dummy_stty/stty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/dummy_stty/stty -------------------------------------------------------------------------------- /lib/icons/isabelle-mini.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/icons/isabelle-mini.xpm -------------------------------------------------------------------------------- /lib/icons/isabelle.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/icons/isabelle.xpm -------------------------------------------------------------------------------- /lib/logo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/index.html -------------------------------------------------------------------------------- /lib/logo/isabelle-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle-16.gif -------------------------------------------------------------------------------- /lib/logo/isabelle-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle-24.gif -------------------------------------------------------------------------------- /lib/logo/isabelle-32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle-32.gif -------------------------------------------------------------------------------- /lib/logo/isabelle-48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle-48.gif -------------------------------------------------------------------------------- /lib/logo/isabelle-small.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle-small.xpm -------------------------------------------------------------------------------- /lib/logo/isabelle-tiny.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle-tiny.xpm -------------------------------------------------------------------------------- /lib/logo/isabelle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle.bmp -------------------------------------------------------------------------------- /lib/logo/isabelle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle.gif -------------------------------------------------------------------------------- /lib/logo/isabelle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle.icns -------------------------------------------------------------------------------- /lib/logo/isabelle_any.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle_any.eps -------------------------------------------------------------------------------- /lib/logo/isabelle_hol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle_hol.gif -------------------------------------------------------------------------------- /lib/logo/isabelle_holcf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle_holcf.gif -------------------------------------------------------------------------------- /lib/logo/isabelle_zf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/isabelle_zf.gif -------------------------------------------------------------------------------- /lib/logo/theory.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/logo/theory.icns -------------------------------------------------------------------------------- /lib/scripts/download_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/scripts/download_file -------------------------------------------------------------------------------- /lib/scripts/getfunctions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/scripts/getfunctions -------------------------------------------------------------------------------- /lib/scripts/getsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/scripts/getsettings -------------------------------------------------------------------------------- /lib/scripts/ghc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/scripts/ghc -------------------------------------------------------------------------------- /lib/scripts/ocamlfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/scripts/ocamlfind -------------------------------------------------------------------------------- /lib/texinputs/comment.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/texinputs/comment.sty -------------------------------------------------------------------------------- /lib/texinputs/isabelle.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/texinputs/isabelle.sty -------------------------------------------------------------------------------- /lib/texinputs/pdfsetup.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/texinputs/pdfsetup.sty -------------------------------------------------------------------------------- /lib/texinputs/railsetup.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/lib/texinputs/railsetup.sty -------------------------------------------------------------------------------- /src/Benchmarks/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Benchmarks/ROOT -------------------------------------------------------------------------------- /src/CCL/CCL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/CCL.thy -------------------------------------------------------------------------------- /src/CCL/Fix.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Fix.thy -------------------------------------------------------------------------------- /src/CCL/Gfp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Gfp.thy -------------------------------------------------------------------------------- /src/CCL/Hered.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Hered.thy -------------------------------------------------------------------------------- /src/CCL/Lfp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Lfp.thy -------------------------------------------------------------------------------- /src/CCL/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/ROOT -------------------------------------------------------------------------------- /src/CCL/Set.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Set.thy -------------------------------------------------------------------------------- /src/CCL/Term.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Term.thy -------------------------------------------------------------------------------- /src/CCL/Trancl.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Trancl.thy -------------------------------------------------------------------------------- /src/CCL/Type.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Type.thy -------------------------------------------------------------------------------- /src/CCL/Wfd.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/Wfd.thy -------------------------------------------------------------------------------- /src/CCL/ex/Flag.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/ex/Flag.thy -------------------------------------------------------------------------------- /src/CCL/ex/List.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/ex/List.thy -------------------------------------------------------------------------------- /src/CCL/ex/Nat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/ex/Nat.thy -------------------------------------------------------------------------------- /src/CCL/ex/Stream.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CCL/ex/Stream.thy -------------------------------------------------------------------------------- /src/CTT/CTT.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/CTT.thy -------------------------------------------------------------------------------- /src/CTT/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/ROOT -------------------------------------------------------------------------------- /src/CTT/document/root.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/document/root.tex -------------------------------------------------------------------------------- /src/CTT/ex/Elimination.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/ex/Elimination.thy -------------------------------------------------------------------------------- /src/CTT/ex/Equality.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/ex/Equality.thy -------------------------------------------------------------------------------- /src/CTT/ex/Synthesis.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/ex/Synthesis.thy -------------------------------------------------------------------------------- /src/CTT/ex/Typechecking.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/ex/Typechecking.thy -------------------------------------------------------------------------------- /src/CTT/rew.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/CTT/rew.ML -------------------------------------------------------------------------------- /src/Cube/Cube.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Cube/Cube.thy -------------------------------------------------------------------------------- /src/Cube/Example.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Cube/Example.thy -------------------------------------------------------------------------------- /src/Cube/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Cube/ROOT -------------------------------------------------------------------------------- /src/Doc/Classes/Classes.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Classes/Classes.thy -------------------------------------------------------------------------------- /src/Doc/Classes/Setup.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Classes/Setup.thy -------------------------------------------------------------------------------- /src/Doc/Codegen/Further.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Codegen/Further.thy -------------------------------------------------------------------------------- /src/Doc/Codegen/Setup.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Codegen/Setup.thy -------------------------------------------------------------------------------- /src/Doc/Corec/Corec.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Corec/Corec.thy -------------------------------------------------------------------------------- /src/Doc/Datatypes/Setup.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Datatypes/Setup.thy -------------------------------------------------------------------------------- /src/Doc/Demo_EPTCS/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Demo_EPTCS/ROOT -------------------------------------------------------------------------------- /src/Doc/Demo_Easychair/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Demo_Easychair/ROOT -------------------------------------------------------------------------------- /src/Doc/Demo_FoilTeX/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Demo_FoilTeX/ROOT -------------------------------------------------------------------------------- /src/Doc/Demo_LIPIcs/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Demo_LIPIcs/ROOT -------------------------------------------------------------------------------- /src/Doc/Demo_LLNCS/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Demo_LLNCS/ROOT -------------------------------------------------------------------------------- /src/Doc/Eisbach/Base.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Eisbach/Base.thy -------------------------------------------------------------------------------- /src/Doc/Eisbach/Manual.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Eisbach/Manual.thy -------------------------------------------------------------------------------- /src/Doc/Eisbach/Preface.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Eisbach/Preface.thy -------------------------------------------------------------------------------- /src/Doc/Intro/document/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Intro/document/build -------------------------------------------------------------------------------- /src/Doc/Isar_Ref/Base.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Isar_Ref/Base.thy -------------------------------------------------------------------------------- /src/Doc/Isar_Ref/Generic.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Isar_Ref/Generic.thy -------------------------------------------------------------------------------- /src/Doc/Isar_Ref/Preface.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Isar_Ref/Preface.thy -------------------------------------------------------------------------------- /src/Doc/Isar_Ref/Proof.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Isar_Ref/Proof.thy -------------------------------------------------------------------------------- /src/Doc/Isar_Ref/Spec.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Isar_Ref/Spec.thy -------------------------------------------------------------------------------- /src/Doc/Isar_Ref/Symbols.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Isar_Ref/Symbols.thy -------------------------------------------------------------------------------- /src/Doc/JEdit/Base.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/JEdit/Base.thy -------------------------------------------------------------------------------- /src/Doc/JEdit/JEdit.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/JEdit/JEdit.thy -------------------------------------------------------------------------------- /src/Doc/Locales/Examples.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Locales/Examples.thy -------------------------------------------------------------------------------- /src/Doc/Logics/abstract.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Logics/abstract.txt -------------------------------------------------------------------------------- /src/Doc/Logics_ZF/If.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Logics_ZF/If.thy -------------------------------------------------------------------------------- /src/Doc/Main/Main_Doc.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Main/Main_Doc.thy -------------------------------------------------------------------------------- /src/Doc/Prog_Prove/Isar.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Prog_Prove/Isar.thy -------------------------------------------------------------------------------- /src/Doc/Prog_Prove/Logic.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Prog_Prove/Logic.thy -------------------------------------------------------------------------------- /src/Doc/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/ROOT -------------------------------------------------------------------------------- /src/Doc/ROOTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/ROOTS -------------------------------------------------------------------------------- /src/Doc/Sugar/Sugar.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Sugar/Sugar.thy -------------------------------------------------------------------------------- /src/Doc/System/Base.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/System/Base.thy -------------------------------------------------------------------------------- /src/Doc/System/Misc.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/System/Misc.thy -------------------------------------------------------------------------------- /src/Doc/System/Scala.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/System/Scala.thy -------------------------------------------------------------------------------- /src/Doc/System/Server.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/System/Server.thy -------------------------------------------------------------------------------- /src/Doc/System/Sessions.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/System/Sessions.thy -------------------------------------------------------------------------------- /src/Doc/Tutorial/CTL/CTL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Tutorial/CTL/CTL.thy -------------------------------------------------------------------------------- /src/Doc/Tutorial/CTL/PDL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Tutorial/CTL/PDL.thy -------------------------------------------------------------------------------- /src/Doc/Tutorial/Setup.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Tutorial/Setup.thy -------------------------------------------------------------------------------- /src/Doc/Tutorial/todo.tobias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/Tutorial/todo.tobias -------------------------------------------------------------------------------- /src/Doc/antiquote_setup.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/antiquote_setup.ML -------------------------------------------------------------------------------- /src/Doc/extra.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/extra.sty -------------------------------------------------------------------------------- /src/Doc/iman.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/iman.sty -------------------------------------------------------------------------------- /src/Doc/isar.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/isar.sty -------------------------------------------------------------------------------- /src/Doc/manual.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/manual.bib -------------------------------------------------------------------------------- /src/Doc/more_antiquote.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/more_antiquote.ML -------------------------------------------------------------------------------- /src/Doc/pdfsetup.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/pdfsetup.sty -------------------------------------------------------------------------------- /src/Doc/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/preface.tex -------------------------------------------------------------------------------- /src/Doc/sedindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/sedindex -------------------------------------------------------------------------------- /src/Doc/ttbox.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/ttbox.sty -------------------------------------------------------------------------------- /src/Doc/underscore.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Doc/underscore.sty -------------------------------------------------------------------------------- /src/FOL/FOL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/FOL.thy -------------------------------------------------------------------------------- /src/FOL/IFOL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/IFOL.thy -------------------------------------------------------------------------------- /src/FOL/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ROOT -------------------------------------------------------------------------------- /src/FOL/document/root.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/document/root.tex -------------------------------------------------------------------------------- /src/FOL/ex/Classical.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Classical.thy -------------------------------------------------------------------------------- /src/FOL/ex/Foundation.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Foundation.thy -------------------------------------------------------------------------------- /src/FOL/ex/If.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/If.thy -------------------------------------------------------------------------------- /src/FOL/ex/Intro.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Intro.thy -------------------------------------------------------------------------------- /src/FOL/ex/Miniscope.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Miniscope.thy -------------------------------------------------------------------------------- /src/FOL/ex/Nat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Nat.thy -------------------------------------------------------------------------------- /src/FOL/ex/Nat_Class.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Nat_Class.thy -------------------------------------------------------------------------------- /src/FOL/ex/Prolog.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/Prolog.thy -------------------------------------------------------------------------------- /src/FOL/ex/document/root.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/ex/document/root.tex -------------------------------------------------------------------------------- /src/FOL/fologic.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/fologic.ML -------------------------------------------------------------------------------- /src/FOL/intprover.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/intprover.ML -------------------------------------------------------------------------------- /src/FOL/simpdata.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOL/simpdata.ML -------------------------------------------------------------------------------- /src/FOLP/FOLP.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/FOLP.thy -------------------------------------------------------------------------------- /src/FOLP/IFOLP.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/IFOLP.thy -------------------------------------------------------------------------------- /src/FOLP/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/ROOT -------------------------------------------------------------------------------- /src/FOLP/classical.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/classical.ML -------------------------------------------------------------------------------- /src/FOLP/ex/Classical.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/ex/Classical.thy -------------------------------------------------------------------------------- /src/FOLP/ex/Foundation.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/ex/Foundation.thy -------------------------------------------------------------------------------- /src/FOLP/ex/If.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/ex/If.thy -------------------------------------------------------------------------------- /src/FOLP/ex/Intro.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/ex/Intro.thy -------------------------------------------------------------------------------- /src/FOLP/ex/Nat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/ex/Nat.thy -------------------------------------------------------------------------------- /src/FOLP/hypsubst.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/hypsubst.ML -------------------------------------------------------------------------------- /src/FOLP/intprover.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/intprover.ML -------------------------------------------------------------------------------- /src/FOLP/simp.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/simp.ML -------------------------------------------------------------------------------- /src/FOLP/simpdata.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/FOLP/simpdata.ML -------------------------------------------------------------------------------- /src/HOL/ATP.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ATP.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Algebra.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Algebra.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Bij.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Bij.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Coset.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Coset.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Exponent.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Exponent.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Group.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Group.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Ideal.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Ideal.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/IntRing.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/IntRing.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Lattice.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Lattice.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Module.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Module.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Order.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Order.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/QuotRing.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/QuotRing.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/README.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/README.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Ring.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Ring.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/RingHom.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/RingHom.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Subrings.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Subrings.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/Sylow.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/Sylow.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/UnivPoly.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/UnivPoly.thy -------------------------------------------------------------------------------- /src/HOL/Algebra/ringsimp.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Algebra/ringsimp.ML -------------------------------------------------------------------------------- /src/HOL/Analysis/Affine.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/Affine.thy -------------------------------------------------------------------------------- /src/HOL/Analysis/Convex.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/Convex.thy -------------------------------------------------------------------------------- /src/HOL/Analysis/Cross3.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/Cross3.thy -------------------------------------------------------------------------------- /src/HOL/Analysis/FSigma.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/FSigma.thy -------------------------------------------------------------------------------- /src/HOL/Analysis/L2_Norm.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/L2_Norm.thy -------------------------------------------------------------------------------- /src/HOL/Analysis/Locally.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/Locally.thy -------------------------------------------------------------------------------- /src/HOL/Analysis/Urysohn.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Analysis/Urysohn.thy -------------------------------------------------------------------------------- /src/HOL/Argo.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Argo.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Auth_Public.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Auth_Public.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Auth_Shared.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Auth_Shared.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Event.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Event.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Guard/Analz.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Guard/Analz.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Guard/Guard.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Guard/Guard.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Guard/P1.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Guard/P1.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Guard/P2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Guard/P2.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Guard/Proto.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Guard/Proto.thy -------------------------------------------------------------------------------- /src/HOL/Auth/KerberosIV.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/KerberosIV.thy -------------------------------------------------------------------------------- /src/HOL/Auth/KerberosV.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/KerberosV.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Message.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Message.thy -------------------------------------------------------------------------------- /src/HOL/Auth/NS_Public.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/NS_Public.thy -------------------------------------------------------------------------------- /src/HOL/Auth/NS_Shared.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/NS_Shared.thy -------------------------------------------------------------------------------- /src/HOL/Auth/OtwayRees.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/OtwayRees.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Public.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Public.thy -------------------------------------------------------------------------------- /src/HOL/Auth/README.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/README.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Recur.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Recur.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Shared.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Shared.thy -------------------------------------------------------------------------------- /src/HOL/Auth/TLS.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/TLS.thy -------------------------------------------------------------------------------- /src/HOL/Auth/WooLam.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/WooLam.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Yahalom.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Yahalom.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Yahalom2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Yahalom2.thy -------------------------------------------------------------------------------- /src/HOL/Auth/Yahalom_Bad.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Auth/Yahalom_Bad.thy -------------------------------------------------------------------------------- /src/HOL/BNF_Composition.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/BNF_Composition.thy -------------------------------------------------------------------------------- /src/HOL/BNF_Def.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/BNF_Def.thy -------------------------------------------------------------------------------- /src/HOL/Bali/AxCompl.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/AxCompl.thy -------------------------------------------------------------------------------- /src/HOL/Bali/AxExample.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/AxExample.thy -------------------------------------------------------------------------------- /src/HOL/Bali/AxSem.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/AxSem.thy -------------------------------------------------------------------------------- /src/HOL/Bali/AxSound.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/AxSound.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Basis.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Basis.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Conform.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Conform.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Decl.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Decl.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Eval.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Eval.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Evaln.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Evaln.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Example.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Example.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Name.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Name.thy -------------------------------------------------------------------------------- /src/HOL/Bali/State.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/State.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Table.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Table.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Term.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Term.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Trans.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Trans.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Type.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Type.thy -------------------------------------------------------------------------------- /src/HOL/Bali/TypeRel.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/TypeRel.thy -------------------------------------------------------------------------------- /src/HOL/Bali/TypeSafe.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/TypeSafe.thy -------------------------------------------------------------------------------- /src/HOL/Bali/Value.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/Value.thy -------------------------------------------------------------------------------- /src/HOL/Bali/WellForm.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/WellForm.thy -------------------------------------------------------------------------------- /src/HOL/Bali/WellType.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bali/WellType.thy -------------------------------------------------------------------------------- /src/HOL/Basic_BNF_LFPs.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Basic_BNF_LFPs.thy -------------------------------------------------------------------------------- /src/HOL/Basic_BNFs.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Basic_BNFs.thy -------------------------------------------------------------------------------- /src/HOL/Binomial.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Binomial.thy -------------------------------------------------------------------------------- /src/HOL/Binomial_Plus.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Binomial_Plus.thy -------------------------------------------------------------------------------- /src/HOL/Bit_Operations.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Bit_Operations.thy -------------------------------------------------------------------------------- /src/HOL/Boolean_Algebras.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Boolean_Algebras.thy -------------------------------------------------------------------------------- /src/HOL/Cardinals/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Cardinals/README.txt -------------------------------------------------------------------------------- /src/HOL/Cardinals/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Cardinals/TODO.txt -------------------------------------------------------------------------------- /src/HOL/Code_Numeral.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Code_Numeral.thy -------------------------------------------------------------------------------- /src/HOL/Complex.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Complex.thy -------------------------------------------------------------------------------- /src/HOL/Complex_Analysis/document/root.bib: -------------------------------------------------------------------------------- 1 | 2 | 3 | @misc{dummy} 4 | -------------------------------------------------------------------------------- /src/HOL/Complex_Main.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Complex_Main.thy -------------------------------------------------------------------------------- /src/HOL/Ctr_Sugar.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Ctr_Sugar.thy -------------------------------------------------------------------------------- /src/HOL/Deriv.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Deriv.thy -------------------------------------------------------------------------------- /src/HOL/Eisbach/Tests.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Eisbach/Tests.thy -------------------------------------------------------------------------------- /src/HOL/Enum.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Enum.thy -------------------------------------------------------------------------------- /src/HOL/Examples/ML.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Examples/ML.thy -------------------------------------------------------------------------------- /src/HOL/Examples/Seq.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Examples/Seq.thy -------------------------------------------------------------------------------- /src/HOL/Examples/Sqrt.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Examples/Sqrt.thy -------------------------------------------------------------------------------- /src/HOL/Extraction.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Extraction.thy -------------------------------------------------------------------------------- /src/HOL/Factorial.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Factorial.thy -------------------------------------------------------------------------------- /src/HOL/Fields.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Fields.thy -------------------------------------------------------------------------------- /src/HOL/Filter.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Filter.thy -------------------------------------------------------------------------------- /src/HOL/Finite_Set.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Finite_Set.thy -------------------------------------------------------------------------------- /src/HOL/Fun.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Fun.thy -------------------------------------------------------------------------------- /src/HOL/Fun_Def.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Fun_Def.thy -------------------------------------------------------------------------------- /src/HOL/Fun_Def_Base.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Fun_Def_Base.thy -------------------------------------------------------------------------------- /src/HOL/GCD.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/GCD.thy -------------------------------------------------------------------------------- /src/HOL/Groups.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Groups.thy -------------------------------------------------------------------------------- /src/HOL/Groups_Big.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Groups_Big.thy -------------------------------------------------------------------------------- /src/HOL/Groups_List.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Groups_List.thy -------------------------------------------------------------------------------- /src/HOL/HOL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOL.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Cfun.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Cfun.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Cpo.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Cpo.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Cpodef.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Cpodef.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Cprod.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Cprod.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Domain.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Domain.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Fixrec.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Fixrec.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/HOLCF.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/HOLCF.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/IOA/IOA.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/IOA/IOA.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/IOA/Seq.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/IOA/Seq.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/IOA/TL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/IOA/TL.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/IOA/TLS.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/IOA/TLS.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Lift.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Lift.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/LowerPD.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/LowerPD.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/One.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/One.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/README.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/README.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Sfun.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Sfun.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Sprod.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Sprod.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Ssum.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Ssum.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Tr.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Tr.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/Up.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/Up.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/UpperPD.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/UpperPD.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/ex/Dnat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/ex/Dnat.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/ex/Fix2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/ex/Fix2.thy -------------------------------------------------------------------------------- /src/HOL/HOLCF/ex/Loop.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/HOLCF/ex/Loop.thy -------------------------------------------------------------------------------- /src/HOL/Hoare/Arith2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Hoare/Arith2.thy -------------------------------------------------------------------------------- /src/HOL/Hoare/Heap.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Hoare/Heap.thy -------------------------------------------------------------------------------- /src/HOL/Hoare/README.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Hoare/README.thy -------------------------------------------------------------------------------- /src/HOL/Homology/Homology.thy: -------------------------------------------------------------------------------- 1 | theory Homology 2 | imports Invariance_of_Domain 3 | begin 4 | 5 | end 6 | -------------------------------------------------------------------------------- /src/HOL/Hull.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Hull.thy -------------------------------------------------------------------------------- /src/HOL/IMP/ACom.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/ACom.thy -------------------------------------------------------------------------------- /src/HOL/IMP/AExp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/AExp.thy -------------------------------------------------------------------------------- /src/HOL/IMP/ASM.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/ASM.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Abs_Int0.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Abs_Int0.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Abs_Int1.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Abs_Int1.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Abs_Int2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Abs_Int2.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Abs_Int3.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Abs_Int3.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Abs_State.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Abs_State.thy -------------------------------------------------------------------------------- /src/HOL/IMP/BExp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/BExp.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Big_Step.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Big_Step.thy -------------------------------------------------------------------------------- /src/HOL/IMP/C_like.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/C_like.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Com.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Com.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Compiler.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Compiler.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Compiler2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Compiler2.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Def_Init.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Def_Init.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Fold.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Fold.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Halting.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Halting.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Hoare.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Hoare.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Live.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Live.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Live_True.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Live_True.thy -------------------------------------------------------------------------------- /src/HOL/IMP/OO.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/OO.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Procs.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Procs.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Sem_Equiv.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Sem_Equiv.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Star.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Star.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Types.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Types.thy -------------------------------------------------------------------------------- /src/HOL/IMP/VCG.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/VCG.thy -------------------------------------------------------------------------------- /src/HOL/IMP/Vars.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/Vars.thy -------------------------------------------------------------------------------- /src/HOL/IMP/export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMP/export.sh -------------------------------------------------------------------------------- /src/HOL/IMPP/Com.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMPP/Com.thy -------------------------------------------------------------------------------- /src/HOL/IMPP/EvenOdd.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMPP/EvenOdd.thy -------------------------------------------------------------------------------- /src/HOL/IMPP/Hoare.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMPP/Hoare.thy -------------------------------------------------------------------------------- /src/HOL/IMPP/Misc.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMPP/Misc.thy -------------------------------------------------------------------------------- /src/HOL/IMPP/Natural.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IMPP/Natural.thy -------------------------------------------------------------------------------- /src/HOL/IOA/Asig.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IOA/Asig.thy -------------------------------------------------------------------------------- /src/HOL/IOA/IOA.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IOA/IOA.thy -------------------------------------------------------------------------------- /src/HOL/IOA/Solve.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/IOA/Solve.thy -------------------------------------------------------------------------------- /src/HOL/Induct/ABexp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Induct/ABexp.thy -------------------------------------------------------------------------------- /src/HOL/Induct/Com.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Induct/Com.thy -------------------------------------------------------------------------------- /src/HOL/Induct/Comb.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Induct/Comb.thy -------------------------------------------------------------------------------- /src/HOL/Induct/SList.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Induct/SList.thy -------------------------------------------------------------------------------- /src/HOL/Induct/Sexp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Induct/Sexp.thy -------------------------------------------------------------------------------- /src/HOL/Induct/Term.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Induct/Term.thy -------------------------------------------------------------------------------- /src/HOL/Inductive.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Inductive.thy -------------------------------------------------------------------------------- /src/HOL/Inequalities.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Inequalities.thy -------------------------------------------------------------------------------- /src/HOL/Int.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Int.thy -------------------------------------------------------------------------------- /src/HOL/Lattices.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Lattices.thy -------------------------------------------------------------------------------- /src/HOL/Lattices_Big.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Lattices_Big.thy -------------------------------------------------------------------------------- /src/HOL/Lazy_Sequence.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Lazy_Sequence.thy -------------------------------------------------------------------------------- /src/HOL/Library/AList.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/AList.thy -------------------------------------------------------------------------------- /src/HOL/Library/Debug.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Debug.thy -------------------------------------------------------------------------------- /src/HOL/Library/Dlist.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Dlist.thy -------------------------------------------------------------------------------- /src/HOL/Library/FSet.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/FSet.thy -------------------------------------------------------------------------------- /src/HOL/Library/Float.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Float.thy -------------------------------------------------------------------------------- /src/HOL/Library/NList.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/NList.thy -------------------------------------------------------------------------------- /src/HOL/Library/RBT.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/RBT.thy -------------------------------------------------------------------------------- /src/HOL/Library/Tree.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Tree.thy -------------------------------------------------------------------------------- /src/HOL/Library/Uprod.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Uprod.thy -------------------------------------------------------------------------------- /src/HOL/Library/Word.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Word.thy -------------------------------------------------------------------------------- /src/HOL/Library/Z2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/Z2.thy -------------------------------------------------------------------------------- /src/HOL/Library/cconv.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/cconv.ML -------------------------------------------------------------------------------- /src/HOL/Library/refute.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Library/refute.ML -------------------------------------------------------------------------------- /src/HOL/Lifting.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Lifting.thy -------------------------------------------------------------------------------- /src/HOL/Lifting_Set.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Lifting_Set.thy -------------------------------------------------------------------------------- /src/HOL/Limits.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Limits.thy -------------------------------------------------------------------------------- /src/HOL/List.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/List.thy -------------------------------------------------------------------------------- /src/HOL/MacLaurin.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/MacLaurin.thy -------------------------------------------------------------------------------- /src/HOL/Main.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Main.thy -------------------------------------------------------------------------------- /src/HOL/Map.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Map.thy -------------------------------------------------------------------------------- /src/HOL/Matrix_LP/LP.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Matrix_LP/LP.thy -------------------------------------------------------------------------------- /src/HOL/Meson.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Meson.thy -------------------------------------------------------------------------------- /src/HOL/Metis.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Metis.thy -------------------------------------------------------------------------------- /src/HOL/Mirabelle.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Mirabelle.thy -------------------------------------------------------------------------------- /src/HOL/Modules.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Modules.thy -------------------------------------------------------------------------------- /src/HOL/NanoJava/Decl.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/NanoJava/Decl.thy -------------------------------------------------------------------------------- /src/HOL/NanoJava/Term.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/NanoJava/Term.thy -------------------------------------------------------------------------------- /src/HOL/Nat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Nat.thy -------------------------------------------------------------------------------- /src/HOL/Nitpick.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Nitpick.thy -------------------------------------------------------------------------------- /src/HOL/NthRoot.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/NthRoot.thy -------------------------------------------------------------------------------- /src/HOL/Num.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Num.thy -------------------------------------------------------------------------------- /src/HOL/Nunchaku.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Nunchaku.thy -------------------------------------------------------------------------------- /src/HOL/Option.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Option.thy -------------------------------------------------------------------------------- /src/HOL/Orderings.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Orderings.thy -------------------------------------------------------------------------------- /src/HOL/Parity.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Parity.thy -------------------------------------------------------------------------------- /src/HOL/Power.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Power.thy -------------------------------------------------------------------------------- /src/HOL/Predicate.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Predicate.thy -------------------------------------------------------------------------------- /src/HOL/Presburger.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Presburger.thy -------------------------------------------------------------------------------- /src/HOL/Product_Type.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Product_Type.thy -------------------------------------------------------------------------------- /src/HOL/Prolog/Func.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Prolog/Func.thy -------------------------------------------------------------------------------- /src/HOL/Prolog/HOHH.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Prolog/HOHH.thy -------------------------------------------------------------------------------- /src/HOL/Prolog/Test.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Prolog/Test.thy -------------------------------------------------------------------------------- /src/HOL/Prolog/Type.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Prolog/Type.thy -------------------------------------------------------------------------------- /src/HOL/Prolog/prolog.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Prolog/prolog.ML -------------------------------------------------------------------------------- /src/HOL/Quotient.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Quotient.thy -------------------------------------------------------------------------------- /src/HOL/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ROOT -------------------------------------------------------------------------------- /src/HOL/Random.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Random.thy -------------------------------------------------------------------------------- /src/HOL/Random_Pred.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Random_Pred.thy -------------------------------------------------------------------------------- /src/HOL/Rat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Rat.thy -------------------------------------------------------------------------------- /src/HOL/Real.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Real.thy -------------------------------------------------------------------------------- /src/HOL/Record.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Record.thy -------------------------------------------------------------------------------- /src/HOL/Relation.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Relation.thy -------------------------------------------------------------------------------- /src/HOL/Rings.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Rings.thy -------------------------------------------------------------------------------- /src/HOL/SAT.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/SAT.thy -------------------------------------------------------------------------------- /src/HOL/SMT.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/SMT.thy -------------------------------------------------------------------------------- /src/HOL/SPARK/SPARK.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/SPARK/SPARK.thy -------------------------------------------------------------------------------- /src/HOL/Series.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Series.thy -------------------------------------------------------------------------------- /src/HOL/Set.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Set.thy -------------------------------------------------------------------------------- /src/HOL/Set_Interval.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Set_Interval.thy -------------------------------------------------------------------------------- /src/HOL/Sledgehammer.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Sledgehammer.thy -------------------------------------------------------------------------------- /src/HOL/String.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/String.thy -------------------------------------------------------------------------------- /src/HOL/Sum_Type.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Sum_Type.thy -------------------------------------------------------------------------------- /src/HOL/TLA/Action.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TLA/Action.thy -------------------------------------------------------------------------------- /src/HOL/TLA/Inc/Inc.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TLA/Inc/Inc.thy -------------------------------------------------------------------------------- /src/HOL/TLA/Init.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TLA/Init.thy -------------------------------------------------------------------------------- /src/HOL/TLA/README.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TLA/README.thy -------------------------------------------------------------------------------- /src/HOL/TLA/Stfun.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TLA/Stfun.thy -------------------------------------------------------------------------------- /src/HOL/TLA/TLA.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TLA/TLA.thy -------------------------------------------------------------------------------- /src/HOL/TPTP/CASC/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TPTP/CASC/ReadMe -------------------------------------------------------------------------------- /src/HOL/TPTP/etc/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TPTP/etc/settings -------------------------------------------------------------------------------- /src/HOL/TPTP/mash_eval.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/TPTP/mash_eval.ML -------------------------------------------------------------------------------- /src/HOL/Tools/ATP/scripts/dummy_atp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "SZS status Unknown" 4 | -------------------------------------------------------------------------------- /src/HOL/Tools/SMT/scripts/dummy_smtlib_solver: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | printf "unknown\n" 4 | -------------------------------------------------------------------------------- /src/HOL/Tools/cnf.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/cnf.ML -------------------------------------------------------------------------------- /src/HOL/Tools/etc/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/etc/options -------------------------------------------------------------------------------- /src/HOL/Tools/functor.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/functor.ML -------------------------------------------------------------------------------- /src/HOL/Tools/groebner.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/groebner.ML -------------------------------------------------------------------------------- /src/HOL/Tools/hologic.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/hologic.ML -------------------------------------------------------------------------------- /src/HOL/Tools/literal.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/literal.ML -------------------------------------------------------------------------------- /src/HOL/Tools/numeral.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/numeral.ML -------------------------------------------------------------------------------- /src/HOL/Tools/recdef.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/recdef.ML -------------------------------------------------------------------------------- /src/HOL/Tools/record.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/record.ML -------------------------------------------------------------------------------- /src/HOL/Tools/sat.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/sat.ML -------------------------------------------------------------------------------- /src/HOL/Tools/simpdata.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/simpdata.ML -------------------------------------------------------------------------------- /src/HOL/Tools/try0.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/try0.ML -------------------------------------------------------------------------------- /src/HOL/Tools/typedef.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Tools/typedef.ML -------------------------------------------------------------------------------- /src/HOL/Transfer.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Transfer.thy -------------------------------------------------------------------------------- /src/HOL/Try0.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Try0.thy -------------------------------------------------------------------------------- /src/HOL/Try0_HOL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Try0_HOL.thy -------------------------------------------------------------------------------- /src/HOL/Typedef.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Typedef.thy -------------------------------------------------------------------------------- /src/HOL/Typerep.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Typerep.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Comp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Comp.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Detects.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Detects.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/ELT.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/ELT.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Extend.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Extend.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/FP.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/FP.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Follows.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Follows.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Guar.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Guar.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/PPROD.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/PPROD.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Project.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Project.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/README.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/README.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Rename.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Rename.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/SubstAx.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/SubstAx.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/UNITY.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/UNITY.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/Union.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/Union.thy -------------------------------------------------------------------------------- /src/HOL/UNITY/WFair.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/UNITY/WFair.thy -------------------------------------------------------------------------------- /src/HOL/Unix/Unix.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Unix/Unix.thy -------------------------------------------------------------------------------- /src/HOL/Vector_Spaces.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Vector_Spaces.thy -------------------------------------------------------------------------------- /src/HOL/Wellfounded.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Wellfounded.thy -------------------------------------------------------------------------------- /src/HOL/Wfrec.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Wfrec.thy -------------------------------------------------------------------------------- /src/HOL/ZF/Games.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ZF/Games.thy -------------------------------------------------------------------------------- /src/HOL/ZF/HOLZF.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ZF/HOLZF.thy -------------------------------------------------------------------------------- /src/HOL/ZF/LProd.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ZF/LProd.thy -------------------------------------------------------------------------------- /src/HOL/ZF/MainZF.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ZF/MainZF.thy -------------------------------------------------------------------------------- /src/HOL/ZF/Zet.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ZF/Zet.thy -------------------------------------------------------------------------------- /src/HOL/Zorn.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/Zorn.thy -------------------------------------------------------------------------------- /src/HOL/document/root.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/document/root.bib -------------------------------------------------------------------------------- /src/HOL/document/root.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/document/root.tex -------------------------------------------------------------------------------- /src/HOL/ex/Antiquote.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Antiquote.thy -------------------------------------------------------------------------------- /src/HOL/ex/Ballot.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Ballot.thy -------------------------------------------------------------------------------- /src/HOL/ex/BigO.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/BigO.thy -------------------------------------------------------------------------------- /src/HOL/ex/BinEx.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/BinEx.thy -------------------------------------------------------------------------------- /src/HOL/ex/Bubblesort.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Bubblesort.thy -------------------------------------------------------------------------------- /src/HOL/ex/CTL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/CTL.thy -------------------------------------------------------------------------------- /src/HOL/ex/Chinese.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Chinese.thy -------------------------------------------------------------------------------- /src/HOL/ex/Classical.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Classical.thy -------------------------------------------------------------------------------- /src/HOL/ex/Hebrew.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Hebrew.thy -------------------------------------------------------------------------------- /src/HOL/ex/Lagrange.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Lagrange.thy -------------------------------------------------------------------------------- /src/HOL/ex/MergeSort.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/MergeSort.thy -------------------------------------------------------------------------------- /src/HOL/ex/Meson_Test.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Meson_Test.thy -------------------------------------------------------------------------------- /src/HOL/ex/Multiquote.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Multiquote.thy -------------------------------------------------------------------------------- /src/HOL/ex/NatSum.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/NatSum.thy -------------------------------------------------------------------------------- /src/HOL/ex/PER.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/PER.thy -------------------------------------------------------------------------------- /src/HOL/ex/Pythagoras.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Pythagoras.thy -------------------------------------------------------------------------------- /src/HOL/ex/Quicksort.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Quicksort.thy -------------------------------------------------------------------------------- /src/HOL/ex/Radix_Sort.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Radix_Sort.thy -------------------------------------------------------------------------------- /src/HOL/ex/SOS.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/SOS.thy -------------------------------------------------------------------------------- /src/HOL/ex/SOS_Cert.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/SOS_Cert.thy -------------------------------------------------------------------------------- /src/HOL/ex/Serbian.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Serbian.thy -------------------------------------------------------------------------------- /src/HOL/ex/Set_Theory.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Set_Theory.thy -------------------------------------------------------------------------------- /src/HOL/ex/Sudoku.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Sudoku.thy -------------------------------------------------------------------------------- /src/HOL/ex/Tarski.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Tarski.thy -------------------------------------------------------------------------------- /src/HOL/ex/Tree23.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Tree23.thy -------------------------------------------------------------------------------- /src/HOL/ex/Word_Msb.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/HOL/ex/Word_Msb.thy -------------------------------------------------------------------------------- /src/LCF/LCF.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/LCF/LCF.thy -------------------------------------------------------------------------------- /src/LCF/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/LCF/ROOT -------------------------------------------------------------------------------- /src/LCF/ex/Ex1.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/LCF/ex/Ex1.thy -------------------------------------------------------------------------------- /src/LCF/ex/Ex2.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/LCF/ex/Ex2.thy -------------------------------------------------------------------------------- /src/LCF/ex/Ex3.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/LCF/ex/Ex3.thy -------------------------------------------------------------------------------- /src/LCF/ex/Ex4.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/LCF/ex/Ex4.thy -------------------------------------------------------------------------------- /src/Provers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/README -------------------------------------------------------------------------------- /src/Provers/blast.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/blast.ML -------------------------------------------------------------------------------- /src/Provers/clasimp.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/clasimp.ML -------------------------------------------------------------------------------- /src/Provers/classical.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/classical.ML -------------------------------------------------------------------------------- /src/Provers/hypsubst.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/hypsubst.ML -------------------------------------------------------------------------------- /src/Provers/order_tac.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/order_tac.ML -------------------------------------------------------------------------------- /src/Provers/preorder.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/preorder.ML -------------------------------------------------------------------------------- /src/Provers/splitter.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/splitter.ML -------------------------------------------------------------------------------- /src/Provers/trancl.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/trancl.ML -------------------------------------------------------------------------------- /src/Provers/typedsimp.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Provers/typedsimp.ML -------------------------------------------------------------------------------- /src/Pure/Admin/afp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Admin/afp.scala -------------------------------------------------------------------------------- /src/Pure/Build/build.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Build/build.ML -------------------------------------------------------------------------------- /src/Pure/Build/export.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Build/export.ML -------------------------------------------------------------------------------- /src/Pure/GUI/gui.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/GUI/gui.scala -------------------------------------------------------------------------------- /src/Pure/GUI/popup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/GUI/popup.scala -------------------------------------------------------------------------------- /src/Pure/General/alist.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/alist.ML -------------------------------------------------------------------------------- /src/Pure/General/array.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/array.ML -------------------------------------------------------------------------------- /src/Pure/General/bytes.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/bytes.ML -------------------------------------------------------------------------------- /src/Pure/General/exn.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/exn.ML -------------------------------------------------------------------------------- /src/Pure/General/file.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/file.ML -------------------------------------------------------------------------------- /src/Pure/General/graph.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/graph.ML -------------------------------------------------------------------------------- /src/Pure/General/heap.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/heap.ML -------------------------------------------------------------------------------- /src/Pure/General/input.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/input.ML -------------------------------------------------------------------------------- /src/Pure/General/js.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/js.scala -------------------------------------------------------------------------------- /src/Pure/General/latex.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/latex.ML -------------------------------------------------------------------------------- /src/Pure/General/path.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/path.ML -------------------------------------------------------------------------------- /src/Pure/General/queue.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/queue.ML -------------------------------------------------------------------------------- /src/Pure/General/rat.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/rat.ML -------------------------------------------------------------------------------- /src/Pure/General/same.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/same.ML -------------------------------------------------------------------------------- /src/Pure/General/scan.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/scan.ML -------------------------------------------------------------------------------- /src/Pure/General/seq.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/seq.ML -------------------------------------------------------------------------------- /src/Pure/General/set.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/set.ML -------------------------------------------------------------------------------- /src/Pure/General/sha1.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/sha1.ML -------------------------------------------------------------------------------- /src/Pure/General/stack.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/stack.ML -------------------------------------------------------------------------------- /src/Pure/General/table.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/table.ML -------------------------------------------------------------------------------- /src/Pure/General/time.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/time.ML -------------------------------------------------------------------------------- /src/Pure/General/url.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/url.ML -------------------------------------------------------------------------------- /src/Pure/General/utf8.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/utf8.ML -------------------------------------------------------------------------------- /src/Pure/General/value.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/value.ML -------------------------------------------------------------------------------- /src/Pure/General/xz.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/xz.ML -------------------------------------------------------------------------------- /src/Pure/General/zstd.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/General/zstd.ML -------------------------------------------------------------------------------- /src/Pure/Isar/args.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/args.ML -------------------------------------------------------------------------------- /src/Pure/Isar/attrib.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/attrib.ML -------------------------------------------------------------------------------- /src/Pure/Isar/bundle.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/bundle.ML -------------------------------------------------------------------------------- /src/Pure/Isar/class.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/class.ML -------------------------------------------------------------------------------- /src/Pure/Isar/code.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/code.ML -------------------------------------------------------------------------------- /src/Pure/Isar/element.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/element.ML -------------------------------------------------------------------------------- /src/Pure/Isar/entity.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/entity.ML -------------------------------------------------------------------------------- /src/Pure/Isar/isar_cmd.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/isar_cmd.ML -------------------------------------------------------------------------------- /src/Pure/Isar/keyword.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/keyword.ML -------------------------------------------------------------------------------- /src/Pure/Isar/locale.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/locale.ML -------------------------------------------------------------------------------- /src/Pure/Isar/method.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/method.ML -------------------------------------------------------------------------------- /src/Pure/Isar/obtain.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/obtain.ML -------------------------------------------------------------------------------- /src/Pure/Isar/parse.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/parse.ML -------------------------------------------------------------------------------- /src/Pure/Isar/parse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/parse.scala -------------------------------------------------------------------------------- /src/Pure/Isar/proof.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/proof.ML -------------------------------------------------------------------------------- /src/Pure/Isar/runtime.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/runtime.ML -------------------------------------------------------------------------------- /src/Pure/Isar/subgoal.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/subgoal.ML -------------------------------------------------------------------------------- /src/Pure/Isar/token.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/token.ML -------------------------------------------------------------------------------- /src/Pure/Isar/token.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/token.scala -------------------------------------------------------------------------------- /src/Pure/Isar/toplevel.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/toplevel.ML -------------------------------------------------------------------------------- /src/Pure/Isar/typedecl.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Isar/typedecl.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_context.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_context.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_env.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_env.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_file.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_file.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_heap.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_heap.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_heap.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_heap.scala -------------------------------------------------------------------------------- /src/Pure/ML/ml_init.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_init.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_lex.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_lex.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_lex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_lex.scala -------------------------------------------------------------------------------- /src/Pure/ML/ml_options.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_options.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_pid.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_pid.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_pp.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_pp.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_pretty.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_pretty.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_process.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_process.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_syntax.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_syntax.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_system.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_system.ML -------------------------------------------------------------------------------- /src/Pure/ML/ml_thms.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML/ml_thms.ML -------------------------------------------------------------------------------- /src/Pure/ML_Bootstrap.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ML_Bootstrap.thy -------------------------------------------------------------------------------- /src/Pure/PIDE/active.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/active.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/command.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/command.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/document.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/document.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/line.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/line.scala -------------------------------------------------------------------------------- /src/Pure/PIDE/markup.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/markup.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/protocol.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/protocol.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/session.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/session.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/text.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/text.scala -------------------------------------------------------------------------------- /src/Pure/PIDE/xml.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/xml.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/xml.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/xml.scala -------------------------------------------------------------------------------- /src/Pure/PIDE/xml0.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/xml0.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/yxml.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/yxml.ML -------------------------------------------------------------------------------- /src/Pure/PIDE/yxml.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/PIDE/yxml.scala -------------------------------------------------------------------------------- /src/Pure/Pure.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Pure.thy -------------------------------------------------------------------------------- /src/Pure/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/README -------------------------------------------------------------------------------- /src/Pure/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ROOT -------------------------------------------------------------------------------- /src/Pure/ROOT.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ROOT.ML -------------------------------------------------------------------------------- /src/Pure/ROOT.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ROOT.scala -------------------------------------------------------------------------------- /src/Pure/ROOT0.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ROOT0.ML -------------------------------------------------------------------------------- /src/Pure/Sessions.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Sessions.thy -------------------------------------------------------------------------------- /src/Pure/Syntax/ast.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Syntax/ast.ML -------------------------------------------------------------------------------- /src/Pure/Syntax/mixfix.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Syntax/mixfix.ML -------------------------------------------------------------------------------- /src/Pure/Syntax/parser.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Syntax/parser.ML -------------------------------------------------------------------------------- /src/Pure/Syntax/syntax.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Syntax/syntax.ML -------------------------------------------------------------------------------- /src/Pure/System/bash.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/System/bash.ML -------------------------------------------------------------------------------- /src/Pure/System/java.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/System/java.ML -------------------------------------------------------------------------------- /src/Pure/System/scala.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/System/scala.ML -------------------------------------------------------------------------------- /src/Pure/Thy/markdown.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Thy/markdown.ML -------------------------------------------------------------------------------- /src/Pure/Thy/thy_info.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Thy/thy_info.ML -------------------------------------------------------------------------------- /src/Pure/Tools/doc.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/doc.ML -------------------------------------------------------------------------------- /src/Pure/Tools/doc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/doc.scala -------------------------------------------------------------------------------- /src/Pure/Tools/dump.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/dump.scala -------------------------------------------------------------------------------- /src/Pure/Tools/ghc.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/ghc.ML -------------------------------------------------------------------------------- /src/Pure/Tools/jedit.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/jedit.ML -------------------------------------------------------------------------------- /src/Pure/Tools/logo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/logo.scala -------------------------------------------------------------------------------- /src/Pure/Tools/plugin.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/plugin.ML -------------------------------------------------------------------------------- /src/Pure/Tools/prismjs.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/prismjs.ML -------------------------------------------------------------------------------- /src/Pure/Tools/rail.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/rail.ML -------------------------------------------------------------------------------- /src/Pure/Tools/sync.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/Tools/sync.scala -------------------------------------------------------------------------------- /src/Pure/assumption.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/assumption.ML -------------------------------------------------------------------------------- /src/Pure/axclass.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/axclass.ML -------------------------------------------------------------------------------- /src/Pure/bires.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/bires.ML -------------------------------------------------------------------------------- /src/Pure/config.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/config.ML -------------------------------------------------------------------------------- /src/Pure/conjunction.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/conjunction.ML -------------------------------------------------------------------------------- /src/Pure/consts.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/consts.ML -------------------------------------------------------------------------------- /src/Pure/context.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/context.ML -------------------------------------------------------------------------------- /src/Pure/conv.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/conv.ML -------------------------------------------------------------------------------- /src/Pure/cterm_items.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/cterm_items.ML -------------------------------------------------------------------------------- /src/Pure/defs.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/defs.ML -------------------------------------------------------------------------------- /src/Pure/drule.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/drule.ML -------------------------------------------------------------------------------- /src/Pure/envir.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/envir.ML -------------------------------------------------------------------------------- /src/Pure/ex/Def.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ex/Def.thy -------------------------------------------------------------------------------- /src/Pure/ex/Guess.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/ex/Guess.thy -------------------------------------------------------------------------------- /src/Pure/facts.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/facts.ML -------------------------------------------------------------------------------- /src/Pure/global_theory.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/global_theory.ML -------------------------------------------------------------------------------- /src/Pure/goal.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/goal.ML -------------------------------------------------------------------------------- /src/Pure/goal_display.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/goal_display.ML -------------------------------------------------------------------------------- /src/Pure/item_net.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/item_net.ML -------------------------------------------------------------------------------- /src/Pure/library.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/library.ML -------------------------------------------------------------------------------- /src/Pure/library.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/library.scala -------------------------------------------------------------------------------- /src/Pure/logic.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/logic.ML -------------------------------------------------------------------------------- /src/Pure/more_pattern.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/more_pattern.ML -------------------------------------------------------------------------------- /src/Pure/more_thm.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/more_thm.ML -------------------------------------------------------------------------------- /src/Pure/more_unify.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/more_unify.ML -------------------------------------------------------------------------------- /src/Pure/morphism.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/morphism.ML -------------------------------------------------------------------------------- /src/Pure/name.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/name.ML -------------------------------------------------------------------------------- /src/Pure/name.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/name.scala -------------------------------------------------------------------------------- /src/Pure/net.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/net.ML -------------------------------------------------------------------------------- /src/Pure/par_tactical.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/par_tactical.ML -------------------------------------------------------------------------------- /src/Pure/pattern.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/pattern.ML -------------------------------------------------------------------------------- /src/Pure/proofterm.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/proofterm.ML -------------------------------------------------------------------------------- /src/Pure/pure_syn.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/pure_syn.ML -------------------------------------------------------------------------------- /src/Pure/pure_thy.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/pure_thy.ML -------------------------------------------------------------------------------- /src/Pure/pure_thy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/pure_thy.scala -------------------------------------------------------------------------------- /src/Pure/search.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/search.ML -------------------------------------------------------------------------------- /src/Pure/sign.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/sign.ML -------------------------------------------------------------------------------- /src/Pure/simplifier.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/simplifier.ML -------------------------------------------------------------------------------- /src/Pure/skip_proof.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/skip_proof.ML -------------------------------------------------------------------------------- /src/Pure/sorts.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/sorts.ML -------------------------------------------------------------------------------- /src/Pure/tactic.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/tactic.ML -------------------------------------------------------------------------------- /src/Pure/tactical.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/tactical.ML -------------------------------------------------------------------------------- /src/Pure/term.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term.ML -------------------------------------------------------------------------------- /src/Pure/term.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term.scala -------------------------------------------------------------------------------- /src/Pure/term_items.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term_items.ML -------------------------------------------------------------------------------- /src/Pure/term_ord.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term_ord.ML -------------------------------------------------------------------------------- /src/Pure/term_sharing.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term_sharing.ML -------------------------------------------------------------------------------- /src/Pure/term_subst.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term_subst.ML -------------------------------------------------------------------------------- /src/Pure/term_xml.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term_xml.ML -------------------------------------------------------------------------------- /src/Pure/term_xml.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/term_xml.scala -------------------------------------------------------------------------------- /src/Pure/theory.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/theory.ML -------------------------------------------------------------------------------- /src/Pure/thm.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/thm.ML -------------------------------------------------------------------------------- /src/Pure/thm_deps.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/thm_deps.ML -------------------------------------------------------------------------------- /src/Pure/thm_name.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/thm_name.ML -------------------------------------------------------------------------------- /src/Pure/thm_name.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/thm_name.scala -------------------------------------------------------------------------------- /src/Pure/type.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/type.ML -------------------------------------------------------------------------------- /src/Pure/type_infer.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/type_infer.ML -------------------------------------------------------------------------------- /src/Pure/unify.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/unify.ML -------------------------------------------------------------------------------- /src/Pure/update.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/update.scala -------------------------------------------------------------------------------- /src/Pure/variable.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/variable.ML -------------------------------------------------------------------------------- /src/Pure/zterm.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Pure/zterm.ML -------------------------------------------------------------------------------- /src/Sequents/ILL.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/ILL.thy -------------------------------------------------------------------------------- /src/Sequents/LK.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/LK.thy -------------------------------------------------------------------------------- /src/Sequents/LK/Nat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/LK/Nat.thy -------------------------------------------------------------------------------- /src/Sequents/LK0.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/LK0.thy -------------------------------------------------------------------------------- /src/Sequents/Modal0.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/Modal0.thy -------------------------------------------------------------------------------- /src/Sequents/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/ROOT -------------------------------------------------------------------------------- /src/Sequents/S4.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/S4.thy -------------------------------------------------------------------------------- /src/Sequents/S43.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/S43.thy -------------------------------------------------------------------------------- /src/Sequents/Sequents.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/Sequents.thy -------------------------------------------------------------------------------- /src/Sequents/T.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/T.thy -------------------------------------------------------------------------------- /src/Sequents/Washing.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/Washing.thy -------------------------------------------------------------------------------- /src/Sequents/modal.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/modal.ML -------------------------------------------------------------------------------- /src/Sequents/prover.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/prover.ML -------------------------------------------------------------------------------- /src/Sequents/simpdata.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Sequents/simpdata.ML -------------------------------------------------------------------------------- /src/Tools/Argo/argo_cc.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Argo/argo_cc.ML -------------------------------------------------------------------------------- /src/Tools/Code/code_ml.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Code/code_ml.ML -------------------------------------------------------------------------------- /src/Tools/Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Demo/README.md -------------------------------------------------------------------------------- /src/Tools/Metis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Metis/Makefile -------------------------------------------------------------------------------- /src/Tools/Metis/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Metis/README -------------------------------------------------------------------------------- /src/Tools/Metis/metis.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Metis/metis.ML -------------------------------------------------------------------------------- /src/Tools/Profiling.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/Profiling.thy -------------------------------------------------------------------------------- /src/Tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/README -------------------------------------------------------------------------------- /src/Tools/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/ROOT -------------------------------------------------------------------------------- /src/Tools/SML/Example.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/SML/Example.sig -------------------------------------------------------------------------------- /src/Tools/SML/Example.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/SML/Example.sml -------------------------------------------------------------------------------- /src/Tools/VSCode/extension/.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /src/Tools/atomize_elim.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/atomize_elim.ML -------------------------------------------------------------------------------- /src/Tools/cache_io.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/cache_io.ML -------------------------------------------------------------------------------- /src/Tools/case_product.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/case_product.ML -------------------------------------------------------------------------------- /src/Tools/coherent.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/coherent.ML -------------------------------------------------------------------------------- /src/Tools/cong_tac.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/cong_tac.ML -------------------------------------------------------------------------------- /src/Tools/eqsubst.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/eqsubst.ML -------------------------------------------------------------------------------- /src/Tools/float.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/float.ML -------------------------------------------------------------------------------- /src/Tools/induct.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/induct.ML -------------------------------------------------------------------------------- /src/Tools/induct_tacs.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/induct_tacs.ML -------------------------------------------------------------------------------- /src/Tools/induction.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/induction.ML -------------------------------------------------------------------------------- /src/Tools/jEdit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/jEdit/README -------------------------------------------------------------------------------- /src/Tools/misc_legacy.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/misc_legacy.ML -------------------------------------------------------------------------------- /src/Tools/nbe.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/nbe.ML -------------------------------------------------------------------------------- /src/Tools/project_rule.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/project_rule.ML -------------------------------------------------------------------------------- /src/Tools/quickcheck.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/quickcheck.ML -------------------------------------------------------------------------------- /src/Tools/solve_direct.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/solve_direct.ML -------------------------------------------------------------------------------- /src/Tools/subtyping.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/subtyping.ML -------------------------------------------------------------------------------- /src/Tools/try.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/Tools/try.ML -------------------------------------------------------------------------------- /src/ZF/AC.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC15_WO6.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC15_WO6.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC16_WO4.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC16_WO4.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC16_lemmas.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC16_lemmas.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC17_AC1.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC17_AC1.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC18_AC19.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC18_AC19.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC7_AC9.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC7_AC9.thy -------------------------------------------------------------------------------- /src/ZF/AC/AC_Equiv.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/AC_Equiv.thy -------------------------------------------------------------------------------- /src/ZF/AC/DC.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/DC.thy -------------------------------------------------------------------------------- /src/ZF/AC/HH.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/HH.thy -------------------------------------------------------------------------------- /src/ZF/AC/Hartog.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/Hartog.thy -------------------------------------------------------------------------------- /src/ZF/AC/WO1_AC.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/WO1_AC.thy -------------------------------------------------------------------------------- /src/ZF/AC/WO1_WO7.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/WO1_WO7.thy -------------------------------------------------------------------------------- /src/ZF/AC/WO2_AC16.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/WO2_AC16.thy -------------------------------------------------------------------------------- /src/ZF/AC/WO6_WO1.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/AC/WO6_WO1.thy -------------------------------------------------------------------------------- /src/ZF/Arith.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Arith.thy -------------------------------------------------------------------------------- /src/ZF/ArithSimp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ArithSimp.thy -------------------------------------------------------------------------------- /src/ZF/Bin.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Bin.thy -------------------------------------------------------------------------------- /src/ZF/Bool.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Bool.thy -------------------------------------------------------------------------------- /src/ZF/Cardinal.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Cardinal.thy -------------------------------------------------------------------------------- /src/ZF/CardinalArith.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/CardinalArith.thy -------------------------------------------------------------------------------- /src/ZF/Cardinal_AC.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Cardinal_AC.thy -------------------------------------------------------------------------------- /src/ZF/Coind/Dynamic.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/Dynamic.thy -------------------------------------------------------------------------------- /src/ZF/Coind/ECR.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/ECR.thy -------------------------------------------------------------------------------- /src/ZF/Coind/Language.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/Language.thy -------------------------------------------------------------------------------- /src/ZF/Coind/Map.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/Map.thy -------------------------------------------------------------------------------- /src/ZF/Coind/Static.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/Static.thy -------------------------------------------------------------------------------- /src/ZF/Coind/Types.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/Types.thy -------------------------------------------------------------------------------- /src/ZF/Coind/Values.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Coind/Values.thy -------------------------------------------------------------------------------- /src/ZF/Datatype.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Datatype.thy -------------------------------------------------------------------------------- /src/ZF/Epsilon.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Epsilon.thy -------------------------------------------------------------------------------- /src/ZF/EquivClass.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/EquivClass.thy -------------------------------------------------------------------------------- /src/ZF/Finite.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Finite.thy -------------------------------------------------------------------------------- /src/ZF/Fixedpt.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Fixedpt.thy -------------------------------------------------------------------------------- /src/ZF/IMP/Com.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/IMP/Com.thy -------------------------------------------------------------------------------- /src/ZF/IMP/Denotation.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/IMP/Denotation.thy -------------------------------------------------------------------------------- /src/ZF/IMP/Equiv.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/IMP/Equiv.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Acc.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Acc.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Brouwer.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Brouwer.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Comb.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Comb.thy -------------------------------------------------------------------------------- /src/ZF/Induct/FoldSet.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/FoldSet.thy -------------------------------------------------------------------------------- /src/ZF/Induct/ListN.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/ListN.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Mutil.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Mutil.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Ntree.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Ntree.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Primrec.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Primrec.thy -------------------------------------------------------------------------------- /src/ZF/Induct/PropLog.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/PropLog.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Rmap.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Rmap.thy -------------------------------------------------------------------------------- /src/ZF/Induct/Term.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Induct/Term.thy -------------------------------------------------------------------------------- /src/ZF/Inductive.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Inductive.thy -------------------------------------------------------------------------------- /src/ZF/InfDatatype.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/InfDatatype.thy -------------------------------------------------------------------------------- /src/ZF/Int.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Int.thy -------------------------------------------------------------------------------- /src/ZF/IntDiv.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/IntDiv.thy -------------------------------------------------------------------------------- /src/ZF/List.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/List.thy -------------------------------------------------------------------------------- /src/ZF/Nat.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Nat.thy -------------------------------------------------------------------------------- /src/ZF/OrdQuant.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/OrdQuant.thy -------------------------------------------------------------------------------- /src/ZF/Order.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Order.thy -------------------------------------------------------------------------------- /src/ZF/OrderArith.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/OrderArith.thy -------------------------------------------------------------------------------- /src/ZF/OrderType.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/OrderType.thy -------------------------------------------------------------------------------- /src/ZF/Ordinal.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Ordinal.thy -------------------------------------------------------------------------------- /src/ZF/Perm.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Perm.thy -------------------------------------------------------------------------------- /src/ZF/QPair.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/QPair.thy -------------------------------------------------------------------------------- /src/ZF/QUniv.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/QUniv.thy -------------------------------------------------------------------------------- /src/ZF/ROOT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ROOT -------------------------------------------------------------------------------- /src/ZF/Resid/Redex.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Resid/Redex.thy -------------------------------------------------------------------------------- /src/ZF/Sum.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Sum.thy -------------------------------------------------------------------------------- /src/ZF/Tools/cartprod.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Tools/cartprod.ML -------------------------------------------------------------------------------- /src/ZF/Tools/ind_cases.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Tools/ind_cases.ML -------------------------------------------------------------------------------- /src/ZF/Tools/typechk.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Tools/typechk.ML -------------------------------------------------------------------------------- /src/ZF/Trancl.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Trancl.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/Comp.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/Comp.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/FP.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/FP.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/Follows.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/Follows.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/Guar.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/Guar.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/Merge.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/Merge.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/Mutex.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/Mutex.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/State.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/State.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/SubstAx.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/SubstAx.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/UNITY.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/UNITY.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/Union.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/Union.thy -------------------------------------------------------------------------------- /src/ZF/UNITY/WFair.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/UNITY/WFair.thy -------------------------------------------------------------------------------- /src/ZF/Univ.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Univ.thy -------------------------------------------------------------------------------- /src/ZF/WF.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/WF.thy -------------------------------------------------------------------------------- /src/ZF/ZF.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ZF.thy -------------------------------------------------------------------------------- /src/ZF/ZFC.thy: -------------------------------------------------------------------------------- 1 | theory ZFC imports ZF InfDatatype 2 | begin 3 | 4 | end 5 | -------------------------------------------------------------------------------- /src/ZF/ZF_Base.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ZF_Base.thy -------------------------------------------------------------------------------- /src/ZF/Zorn.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/Zorn.thy -------------------------------------------------------------------------------- /src/ZF/arith_data.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/arith_data.ML -------------------------------------------------------------------------------- /src/ZF/document/root.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/document/root.tex -------------------------------------------------------------------------------- /src/ZF/equalities.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/equalities.thy -------------------------------------------------------------------------------- /src/ZF/ex/BinEx.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/BinEx.thy -------------------------------------------------------------------------------- /src/ZF/ex/CoUnit.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/CoUnit.thy -------------------------------------------------------------------------------- /src/ZF/ex/Commutation.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/Commutation.thy -------------------------------------------------------------------------------- /src/ZF/ex/Group.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/Group.thy -------------------------------------------------------------------------------- /src/ZF/ex/LList.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/LList.thy -------------------------------------------------------------------------------- /src/ZF/ex/Limit.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/Limit.thy -------------------------------------------------------------------------------- /src/ZF/ex/NatSum.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/NatSum.thy -------------------------------------------------------------------------------- /src/ZF/ex/Primes.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/Primes.thy -------------------------------------------------------------------------------- /src/ZF/ex/Ramsey.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/Ramsey.thy -------------------------------------------------------------------------------- /src/ZF/ex/Ring.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/Ring.thy -------------------------------------------------------------------------------- /src/ZF/ex/misc.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ex/misc.thy -------------------------------------------------------------------------------- /src/ZF/func.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/func.thy -------------------------------------------------------------------------------- /src/ZF/ind_syntax.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/ind_syntax.ML -------------------------------------------------------------------------------- /src/ZF/int_arith.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/int_arith.ML -------------------------------------------------------------------------------- /src/ZF/pair.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/pair.thy -------------------------------------------------------------------------------- /src/ZF/simpdata.ML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/simpdata.ML -------------------------------------------------------------------------------- /src/ZF/upair.thy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isabelle-prover/mirror-isabelle/HEAD/src/ZF/upair.thy --------------------------------------------------------------------------------