Received: by mail.netbsd.org (Postfix, from userid 605) id 2A43284ED8; Tue, 21 Jun 2022 02:19:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 585E784ED5 for ; Tue, 21 Jun 2022 02:19:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id tvURhN9vKWkL for ; Tue, 21 Jun 2022 02:19:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B48B084D3F for ; Tue, 21 Jun 2022 02:19:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04BB8FB1A; Tue, 21 Jun 2022 02:21:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655778082146200" MIME-Version: 1.0 Date: Tue, 21 Jun 2022 02:21:22 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/lang/coq To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20220621022123.04BB8FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655778082146200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: dholland Date: Tue Jun 21 02:21:22 UTC 2022 Modified Files: pkgsrc/lang/coq: Makefile PLIST distinfo options.mk pkgsrc/lang/coq/patches: patch-Makefile.make Added Files: pkgsrc/lang/coq/patches: patch-Makefile.install patch-tools_configure_coqide.ml patch-tools_coqdoc_dune Removed Files: pkgsrc/lang/coq: MESSAGE pkgsrc/lang/coq/patches: patch-Makefile.common Log Message: lang/coq: update to 8.15.2 to make it work with current ocaml. (Update during freeze ok gdt@; even if this version might be broken, that beats definitely broken.) pkgsrc changes: use -native-compiler ondemand as recommended upstream. Now uses dune to build, and uses ocaml-zarith instead of ocaml-num. Upstream change summary: (see https://coq.github.io/doc/v8.15/refman/changes.html for the full change notes) Coq 8.15.2 fixes: - Added: intuition and dintuition use Tauto.intuition_solver (defined as auto with *) instead of hardcoding auto with *. This makes it possible to change the default solver with Ltac Tauto.intuition_solver ::= ... (#15866, fixes #7725, by Gaëtan Gilbert). - Fixed: uncaught exception UnableToUnify with bidirectionality hints (#16066, fixes #16063, by Gaëtan Gilbert). - Fixed: multiple CoqIDE bugs (#15938, fixes #15861, #15939, fixes #15882, #15964, fixes #15799, #15984, partially fixes #15873, #15996, #15912, fixes #15903, all by Jim Fehrle). -Fixed: an incorrect implementation of SFClassify, allowing for a proof of False since 8.11.0, due to Axioms present in Float.Axioms. (#16101, fixes #16096, by Ali Caglayan). Coq 8.15.1 fixes: - Fixed: cases of incompletenesses in the guard condition for fixpoints in the presence of cofixpoints or primitive projections (#15498, fixes #15451, by Hugo Herbelin). - Fixed: inconsistency when using module subtyping with squashed inductives (#15839, fixes #15838 (reported by Pierre-Marie Pédrot), by Gaëtan Gilbert). - Fixed: Check for prior declaration of a custom entry was missing for notations in only printing mode (#15628, fixes #15619, by Hugo Herbelin). - Fixed: rewrite_strat regression in 8.15.0 related to Transitive instances (#15577, fixes #15568, by Gaëtan Gilbert). - Fixed: When setoid_rewrite succeeds in rewriting at some occurrence but the resulting equality is the identity, it now tries rewriting in subterms of that occurrence instead of giving up (#15612, fixes #8080, by Gaëtan Gilbert). - Fixed: Ill-typed goals created by clearbody in the presence of transitive dependencies in the body of a hypothesis (#15634, fixes #15606, by Hugo Herbelin). - Fixed: cbn knows to refold fixpoints when Arguments with / and ! was used (#15653, fixes #15567, by Gaëtan Gilbert). - Fixed a bug where coqc -vok was not creating an empty '.vok' file. (#15745, by Ramkumar Ramachandra). - Fixed: Line numbers shown in the Errors panel of CoqIDE were incorrect; they didn't match the error locations in the script panel (#15532, fixes #15531, by Jim Fehrle). - Fixed: anomaly when using proof diffs with no focused goal (#15633, fixes #15578, by Jim Fehrle). - Fixed: Attempted edits to the processed part of a buffer while Coq is busy processing a request are now ignored to ensure "processed" highlighting is accurate (#15714, fixes #15733 and #15675 and #15725, by Jim Fehrle). - Fixed: Ensure that the names of arguments of inductive schemes are distinct so that the new Coq 8.15 preservation of argument names in the with clause of tactics in #13837 works as in Coq 8.14 for these schemes (#15537, fixes #15420, by Hugo Herbelin). Coq 8.15.0 summary: - The apply with tactic no longer renames arguments unless compatibility flag Apply With Renaming is set. - Improvements to the auto tactic family, fixing the Hint Unfold behavior, and generalizing the use of discrimination nets. - The typeclasses eauto tactic has a new best_effort option allowing it to return partial solutions to a proof search problem, depending on the mode declarations associated to each constraint. This mode is used by typeclass resolution during type inference to provide more precise error messages. - Many commands and options were deprecated or removed after deprecation and more consistently support locality attributes. - The Import command is extended with import_categories to select the components of a module to import or not, including features such as hints, coercions, and notations. - A visual Ltac debugger is now available in CoqIDE. Coq 8.14.2 fixes: - Instance warns about the default locality immediately rather than waiting until the instance is ready to be defined. This changes which command warns when the instance has a separate proof: the Instance command itself warns instead of the proof closing command (such as Defined). (#15243, fixes #14704, by Gaëtan Gilbert). Coq 8.14.1 fixes: - Fix the implementation of persistent arrays used by the VM and native compute so that it uses a uniform representation. Previously, storing primitive floats inside primitive arrays could cause memory corruption (#15081, closes #15070, by Pierre-Marie Pédrot). - Fixed missing registration of universe constraints in Module Type elaboration (#14666, fixes #14505, by Hugo Herbelin). - Fixed: abstract more robust with respect to Ltac constr bindings containing existential variables (#14671, fixes #10796, by Hugo Herbelin). - Fixed: correct support of trailing let by tactic specialize (#15046, fixes #15043, by Hugo Herbelin). - Fixed: anomaly with Extraction Conservative Types when extracting pattern-matching on singleton types (#14669, fixes #3527, by Hugo Herbelin). - Fixed: a regular error instead of an anomaly when calling Separate Extraction in a module (#14670, fixes #10796, by Hugo Herbelin). Coq 8.14.0 summary: - The internal representation of match has changed to a more space- efficient and cleaner structure, allowing the fix of a completeness issue with cumulative inductive types in the type-checker. The internal representation is now closer to the user-level view of match, where the argument context of branches and the inductive binders in and as do not carry type annotations. - A new coqnative binary performs separate native compilation of libraries, starting from a .vo file. It is supported by coq_makefile. - Improvements to typeclasses and canonical structure resolution, allowing more terms to be considered as classes or keys. - More control over notations declarations and support for primitive types in string and number notations. - Removal of deprecated tactics, notably omega, which has been replaced by a greatly improved lia, along with many bug fixes. - New Ltac2 APIs for interaction with Ltac1, manipulation of inductive types and printing. - Many changes and additions to the standard library in the numbers, vectors and lists libraries. A new signed primitive integers library Sint63 is available in addition to the unsigned Uint63 library. Coq 8.13.2: - Fixed crash when using vm_compute on an irreducible PArray.set (#14005, fixes #13998, by Guillaume Melquiond). - Fix: Never store persistent arrays as VM / native structured values. This could be used to make vo marshalling crash, and probably breaking some other invariants of the kernel (#14007, fixes #14006, by Pierre-Marie Pédrot). - Fix: Ltac2 Array.init no longer incurs exponential overhead when used recursively (#14012, fixes #14011, by Jason Gross). Coq 8.13.1: - Fix arities of VM opcodes for some floating-point operations that could cause memory corruption (#13867, by Guillaume Melquiond). - Added options -v and --version to CoqIDE (#13870, by Guillaume Melquiond). Coq 8.13.0 summary: - Introduction of primitive persistent arrays in the core language, implemented using imperative persistent arrays. - Introduction of definitional proof irrelevance for the equality type defined in the SProp sort. - Cumulative record and inductive type declarations can now specify the variance of their universes. - Various bugfixes and uniformization of behavior with respect to the use of implicit arguments and the handling of existential variables in declarations, unification and tactics. - New warning for unused variables in catch-all match branches that match multiple distinct patterns. - New warning for Hint commands outside sections without a locality attribute, whose goal is to eventually remove the fragile default behavior of importing hints only when using Require. The recommended fix is to declare hints as export, instead of the current default global, meaning that they are imported through Require Import only, not Require. See the following rationale and guidelines for details. - General support for boolean attributes. - Many improvements to the handling of notations, including number notations, recursive notations and notations with bindings. A new algorithm chooses the most precise notation available to print an expression, which might introduce changes in printing behavior. - Tactic improvements in lia and its zify preprocessing step, now supporting reasoning on boolean operators such as Z.leb and supporting primitive integers Int63. - Typing flags can now be specified per-constant / inductive. - Improvements to the reference manual including updated syntax descriptions that match Coq's grammar in several chapters, and splitting parts of the tactics chapter to independent sections. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r0 pkgsrc/lang/coq/MESSAGE cvs rdiff -u -r1.144 -r1.145 pkgsrc/lang/coq/Makefile cvs rdiff -u -r1.31 -r1.32 pkgsrc/lang/coq/PLIST cvs rdiff -u -r1.38 -r1.39 pkgsrc/lang/coq/distinfo cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/coq/options.mk cvs rdiff -u -r1.7 -r0 pkgsrc/lang/coq/patches/patch-Makefile.common cvs rdiff -u -r0 -r1.1 pkgsrc/lang/coq/patches/patch-Makefile.install \ pkgsrc/lang/coq/patches/patch-tools_configure_coqide.ml \ pkgsrc/lang/coq/patches/patch-tools_coqdoc_dune cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/coq/patches/patch-Makefile.make Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655778082146200 Content-Disposition: inline Content-Length: 401906 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/coq/Makefile diff -u pkgsrc/lang/coq/Makefile:1.144 pkgsrc/lang/coq/Makefile:1.145 --- pkgsrc/lang/coq/Makefile:1.144 Fri Jun 3 08:21:55 2022 +++ pkgsrc/lang/coq/Makefile Tue Jun 21 02:21:22 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.144 2022/06/03 08:21:55 wiz Exp $ +# $NetBSD: Makefile,v 1.145 2022/06/21 02:21:22 dholland Exp $ -DISTNAME= coq-8.12.2 -PKGREVISION= 4 +DISTNAME= coq-8.15.2 CATEGORIES= lang math MASTER_SITES= ${MASTER_SITE_GITHUB:=coq/} GITHUB_TAG= V${PKGVERSION_NOREV:S/_/+/} @@ -13,35 +12,30 @@ LICENSE= gnu-lgpl-v2.1 WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${PKGVERSION_NOREV:S/+/-/} -BROKEN= "does not support ocaml 4.14" - USE_TOOLS+= bash USE_TOOLS+= gmake +OCAML_USE_FINDLIB= yes HAS_CONFIGURE= yes CONFIGURE_ARGS+= -prefix ${PREFIX} -#CONFIGURE_ARGS+= -emacslib ${PREFIX}/share/emacs/site-lisp CONFIGURE_ARGS+= -mandir ${PREFIX}/${PKGMANDIR} CONFIGURE_ARGS+= -configdir ${PKG_SYSCONFDIR}/xdg/coq CONFIGURE_ARGS+= -docdir ${PREFIX}/share/doc/coq -CONFIGURE_ARGS+= -coqdocdir ${PREFIX}/share/texmf-dist/tex/latex/coq -CONFIGURE_ARGS+= -flambda-opts '-O3 -unbox-closures' +BUILD_TARGET= world -BUILDLINK_API_DEPENDS.ocaml+= ocaml>=3.10 +BUILDLINK_API_DEPENDS.ocaml+= ocaml>=4.05 # datestamp for reproducible builds (this ends up in compiled proofs) # Use the upstream release date plus (arbitrarily) 11 days, the latter # being a venture to hopefully avoid accepting compiled proof files from # elsewhere that likely are not in fact compatible. -MAKE_ENV+= SOURCE_DATE_EPOCH=20201222 +MAKE_ENV+= SOURCE_DATE_EPOCH=20220611 .include "../../mk/bsd.prefs.mk" -.include "../../mk/ocaml.mk" +.include "../../lang/ocaml/ocaml.mk" -PLIST_VARS+= native .if ${OCAML_USE_OPT_COMPILER} == "yes" COQIDE_TYPE= opt -PLIST.native= yes -CONFIGURE_ARGS+= -native-compiler yes +CONFIGURE_ARGS+= -native-compiler ondemand UNLIMIT_RESOURCES+= stacksize # compilation of some files needs this BUILD_TARGET= world .else @@ -82,6 +76,14 @@ PLIST_VARS+= coqide natdynlink doc EGDIR= ${PREFIX}/share/coq/examples #CONF_FILES= {EGDIR}/coqide-gtk2rc ${PKG_SYSCONFDIR}/xdg/coq/coqide-gtk2rc -.include "../../math/ocaml-num/buildlink3.mk" +# Pull in dune explicitly instead of setting OCAML_USE_DUNE above, +# because the latter causes pkgsrc to automagically run dune instead +# of make for the build and that isn't what you're supposed to do. +.include "../../devel/ocaml-dune/buildlink3.mk" + +# Docs say at least 1.10 is required. +BUILDLINK_API_DEPENDS.ocaml-zarith+= ocaml-zarith>=1.10 + +.include "../../math/ocaml-zarith/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/lang/coq/PLIST diff -u pkgsrc/lang/coq/PLIST:1.31 pkgsrc/lang/coq/PLIST:1.32 --- pkgsrc/lang/coq/PLIST:1.31 Tue Feb 9 22:37:43 2021 +++ pkgsrc/lang/coq/PLIST Tue Jun 21 02:21:22 2022 @@ -1,1020 +1,3064 @@ -@comment $NetBSD: PLIST,v 1.31 2021/02/09 22:37:43 dholland Exp $ +@comment $NetBSD: PLIST,v 1.32 2022/06/21 02:21:22 dholland Exp $ bin/coq-tex bin/coq_makefile bin/coqc +bin/coqc.byte bin/coqchk bin/coqdep bin/coqdoc ${PLIST.coqide}bin/coqide -${PLIST.coqide}bin/coqidetop +${PLIST.coqide}bin/coqidetop.byte ${PLIST.coqide}bin/coqidetop.opt +bin/coqnative bin/coqpp bin/coqproofworker.opt bin/coqqueryworker.opt bin/coqtacticworker.opt bin/coqtop +bin/coqtop.byte bin/coqtop.opt bin/coqwc bin/coqworkmgr +bin/csdpcert bin/ocamllibdep bin/votour -lib/coq/META -lib/coq/clib/bigint.cmi -${PLIST.ocaml-opt}lib/coq/clib/bigint.cmx -lib/coq/clib/cArray.cmi -${PLIST.ocaml-opt}lib/coq/clib/cArray.cmx -lib/coq/clib/cEphemeron.cmi -${PLIST.ocaml-opt}lib/coq/clib/cEphemeron.cmx -lib/coq/clib/cList.cmi -${PLIST.ocaml-opt}lib/coq/clib/cList.cmx -lib/coq/clib/cMap.cmi -${PLIST.ocaml-opt}lib/coq/clib/cMap.cmx -lib/coq/clib/cObj.cmi -${PLIST.ocaml-opt}lib/coq/clib/cObj.cmx -lib/coq/clib/cSet.cmi -${PLIST.ocaml-opt}lib/coq/clib/cSet.cmx -lib/coq/clib/cSig.cmi -lib/coq/clib/cString.cmi -${PLIST.ocaml-opt}lib/coq/clib/cString.cmx -lib/coq/clib/cThread.cmi -${PLIST.ocaml-opt}lib/coq/clib/cThread.cmx -lib/coq/clib/cUnix.cmi -${PLIST.ocaml-opt}lib/coq/clib/cUnix.cmx -${PLIST.ocaml-opt}lib/coq/clib/clib.a -${PLIST.ocaml-opt}lib/coq/clib/clib.cmxa -lib/coq/clib/diff2.cmi -${PLIST.ocaml-opt}lib/coq/clib/diff2.cmx -lib/coq/clib/dyn.cmi -${PLIST.ocaml-opt}lib/coq/clib/dyn.cmx -lib/coq/clib/exninfo.cmi -${PLIST.ocaml-opt}lib/coq/clib/exninfo.cmx -lib/coq/clib/hMap.cmi -${PLIST.ocaml-opt}lib/coq/clib/hMap.cmx -lib/coq/clib/hashcons.cmi -${PLIST.ocaml-opt}lib/coq/clib/hashcons.cmx -lib/coq/clib/hashset.cmi -${PLIST.ocaml-opt}lib/coq/clib/hashset.cmx -lib/coq/clib/heap.cmi -${PLIST.ocaml-opt}lib/coq/clib/heap.cmx -lib/coq/clib/iStream.cmi -${PLIST.ocaml-opt}lib/coq/clib/iStream.cmx -lib/coq/clib/int.cmi -${PLIST.ocaml-opt}lib/coq/clib/int.cmx -lib/coq/clib/minisys.cmi -${PLIST.ocaml-opt}lib/coq/clib/minisys.cmx -lib/coq/clib/monad.cmi -${PLIST.ocaml-opt}lib/coq/clib/monad.cmx -lib/coq/clib/option.cmi -${PLIST.ocaml-opt}lib/coq/clib/option.cmx -lib/coq/clib/orderedType.cmi -${PLIST.ocaml-opt}lib/coq/clib/orderedType.cmx -lib/coq/clib/predicate.cmi -${PLIST.ocaml-opt}lib/coq/clib/predicate.cmx -lib/coq/clib/range.cmi -${PLIST.ocaml-opt}lib/coq/clib/range.cmx -lib/coq/clib/segmenttree.cmi -${PLIST.ocaml-opt}lib/coq/clib/segmenttree.cmx -lib/coq/clib/store.cmi -${PLIST.ocaml-opt}lib/coq/clib/store.cmx -lib/coq/clib/terminal.cmi -${PLIST.ocaml-opt}lib/coq/clib/terminal.cmx -lib/coq/clib/trie.cmi -${PLIST.ocaml-opt}lib/coq/clib/trie.cmx -lib/coq/clib/unicode.cmi -${PLIST.ocaml-opt}lib/coq/clib/unicode.cmx -lib/coq/clib/unicodetable.cmi -${PLIST.ocaml-opt}lib/coq/clib/unicodetable.cmx -lib/coq/clib/unionfind.cmi -${PLIST.ocaml-opt}lib/coq/clib/unionfind.cmx -${PLIST.ocaml-opt}lib/coq/config/config.a -${PLIST.ocaml-opt}lib/coq/config/config.cmxa -lib/coq/config/coq_config.cmi -${PLIST.ocaml-opt}lib/coq/config/coq_config.cmx -lib/coq/coqpp/coqpp_ast.cmi -lib/coq/coqpp/coqpp_parse.cmi -lib/coq/coqpp/coqpp_parser.cmi -lib/coq/engine/eConstr.cmi -${PLIST.ocaml-opt}lib/coq/engine/eConstr.cmx -${PLIST.ocaml-opt}lib/coq/engine/engine.a -${PLIST.ocaml-opt}lib/coq/engine/engine.cmxa -lib/coq/engine/evar_kinds.cmi -${PLIST.ocaml-opt}lib/coq/engine/evar_kinds.cmx -lib/coq/engine/evarutil.cmi -${PLIST.ocaml-opt}lib/coq/engine/evarutil.cmx -lib/coq/engine/evd.cmi -${PLIST.ocaml-opt}lib/coq/engine/evd.cmx -lib/coq/engine/ftactic.cmi -${PLIST.ocaml-opt}lib/coq/engine/ftactic.cmx -lib/coq/engine/logic_monad.cmi -${PLIST.ocaml-opt}lib/coq/engine/logic_monad.cmx -lib/coq/engine/namegen.cmi -${PLIST.ocaml-opt}lib/coq/engine/namegen.cmx -lib/coq/engine/nameops.cmi -${PLIST.ocaml-opt}lib/coq/engine/nameops.cmx -lib/coq/engine/proofview.cmi -${PLIST.ocaml-opt}lib/coq/engine/proofview.cmx -lib/coq/engine/proofview_monad.cmi -${PLIST.ocaml-opt}lib/coq/engine/proofview_monad.cmx -lib/coq/engine/termops.cmi -${PLIST.ocaml-opt}lib/coq/engine/termops.cmx -lib/coq/engine/uState.cmi -${PLIST.ocaml-opt}lib/coq/engine/uState.cmx -lib/coq/engine/univGen.cmi -${PLIST.ocaml-opt}lib/coq/engine/univGen.cmx -lib/coq/engine/univMinim.cmi -${PLIST.ocaml-opt}lib/coq/engine/univMinim.cmx -lib/coq/engine/univNames.cmi -${PLIST.ocaml-opt}lib/coq/engine/univNames.cmx -lib/coq/engine/univProblem.cmi -${PLIST.ocaml-opt}lib/coq/engine/univProblem.cmx -lib/coq/engine/univSubst.cmi -${PLIST.ocaml-opt}lib/coq/engine/univSubst.cmx -lib/coq/engine/univops.cmi -${PLIST.ocaml-opt}lib/coq/engine/univops.cmx -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib.a -lib/coq/gramlib/.pack/gramlib.cmi -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib.cmx -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib.cmxa -lib/coq/gramlib/.pack/gramlib__Gramext.cmi -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib__Gramext.cmx -lib/coq/gramlib/.pack/gramlib__Grammar.cmi -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib__Grammar.cmx -lib/coq/gramlib/.pack/gramlib__Plexing.cmi -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib__Plexing.cmx -lib/coq/gramlib/.pack/gramlib__Ploc.cmi -${PLIST.ocaml-opt}lib/coq/gramlib/.pack/gramlib__Ploc.cmx -${PLIST.coqide}lib/coq/ide/config_lexer.cmi -${PLIST.coqide}lib/coq/ide/configwin.cmi -${PLIST.coqide}lib/coq/ide/configwin_ihm.cmi -${PLIST.coqide}lib/coq/ide/configwin_messages.cmi -${PLIST.coqide}lib/coq/ide/coq.cmi -${PLIST.coqide}lib/coq/ide/coqOps.cmi -${PLIST.coqide}lib/coq/ide/coq_commands.cmi -${PLIST.coqide}lib/coq/ide/coq_lex.cmi -${PLIST.coqide}lib/coq/ide/coqide.cmi -${PLIST.coqide}lib/coq/ide/coqide_ui.cmi -${PLIST.coqide}lib/coq/ide/document.cmi -${PLIST.coqide}lib/coq/ide/fileOps.cmi -${PLIST.coqide}lib/coq/ide/gtk_parsing.cmi -${PLIST.ocaml-opt}${PLIST.coqide}lib/coq/ide/ide.a -${PLIST.ocaml-opt}${PLIST.coqide}lib/coq/ide/ide.cmxa -${PLIST.coqide}lib/coq/ide/ideutils.cmi -${PLIST.coqide}lib/coq/ide/microPG.cmi -${PLIST.coqide}lib/coq/ide/minilib.cmi -${PLIST.coqide}lib/coq/ide/preferences.cmi -${PLIST.coqide}lib/coq/ide/sentence.cmi -${PLIST.coqide}lib/coq/ide/session.cmi -${PLIST.coqide}lib/coq/ide/tags.cmi -${PLIST.coqide}lib/coq/ide/unicode_bindings.cmi -${PLIST.coqide}lib/coq/ide/utf8_convert.cmi -${PLIST.coqide}lib/coq/ide/wg_Command.cmi -${PLIST.coqide}lib/coq/ide/wg_Completion.cmi -${PLIST.coqide}lib/coq/ide/wg_Detachable.cmi -${PLIST.coqide}lib/coq/ide/wg_Find.cmi -${PLIST.coqide}lib/coq/ide/wg_MessageView.cmi -${PLIST.coqide}lib/coq/ide/wg_Notebook.cmi -${PLIST.coqide}lib/coq/ide/wg_ProofView.cmi -${PLIST.coqide}lib/coq/ide/wg_RoutedMessageViews.cmi -${PLIST.coqide}lib/coq/ide/wg_ScriptView.cmi -${PLIST.coqide}lib/coq/ide/wg_Segment.cmi -lib/coq/interp/constrexpr.cmi -${PLIST.ocaml-opt}lib/coq/interp/constrexpr.cmx -lib/coq/interp/constrexpr_ops.cmi -${PLIST.ocaml-opt}lib/coq/interp/constrexpr_ops.cmx -lib/coq/interp/constrextern.cmi -${PLIST.ocaml-opt}lib/coq/interp/constrextern.cmx -lib/coq/interp/constrintern.cmi -${PLIST.ocaml-opt}lib/coq/interp/constrintern.cmx -lib/coq/interp/decls.cmi -${PLIST.ocaml-opt}lib/coq/interp/decls.cmx -lib/coq/interp/deprecation.cmi -${PLIST.ocaml-opt}lib/coq/interp/deprecation.cmx -lib/coq/interp/dumpglob.cmi -${PLIST.ocaml-opt}lib/coq/interp/dumpglob.cmx -lib/coq/interp/genintern.cmi -${PLIST.ocaml-opt}lib/coq/interp/genintern.cmx -lib/coq/interp/impargs.cmi -${PLIST.ocaml-opt}lib/coq/interp/impargs.cmx -lib/coq/interp/implicit_quantifiers.cmi -${PLIST.ocaml-opt}lib/coq/interp/implicit_quantifiers.cmx -${PLIST.ocaml-opt}lib/coq/interp/interp.a -${PLIST.ocaml-opt}lib/coq/interp/interp.cmxa -lib/coq/interp/modintern.cmi -${PLIST.ocaml-opt}lib/coq/interp/modintern.cmx -lib/coq/interp/notation.cmi -${PLIST.ocaml-opt}lib/coq/interp/notation.cmx -lib/coq/interp/notation_ops.cmi -${PLIST.ocaml-opt}lib/coq/interp/notation_ops.cmx -lib/coq/interp/notation_term.cmi -${PLIST.ocaml-opt}lib/coq/interp/notation_term.cmx -lib/coq/interp/numTok.cmi -${PLIST.ocaml-opt}lib/coq/interp/numTok.cmx -lib/coq/interp/reserve.cmi -${PLIST.ocaml-opt}lib/coq/interp/reserve.cmx -lib/coq/interp/smartlocate.cmi -${PLIST.ocaml-opt}lib/coq/interp/smartlocate.cmx -lib/coq/interp/stdarg.cmi -${PLIST.ocaml-opt}lib/coq/interp/stdarg.cmx -lib/coq/interp/syntax_def.cmi -${PLIST.ocaml-opt}lib/coq/interp/syntax_def.cmx -lib/coq/kernel/byterun/dllcoqrun.so -${PLIST.ocaml-opt}lib/coq/kernel/byterun/libcoqrun.a -lib/coq/kernel/cClosure.cmi -${PLIST.ocaml-opt}lib/coq/kernel/cClosure.cmx -lib/coq/kernel/cPrimitives.cmi -${PLIST.ocaml-opt}lib/coq/kernel/cPrimitives.cmx -lib/coq/kernel/cbytecodes.cmi -${PLIST.ocaml-opt}lib/coq/kernel/cbytecodes.cmx -lib/coq/kernel/cbytegen.cmi -${PLIST.ocaml-opt}lib/coq/kernel/cbytegen.cmx -lib/coq/kernel/cemitcodes.cmi -${PLIST.ocaml-opt}lib/coq/kernel/cemitcodes.cmx -lib/coq/kernel/clambda.cmi -${PLIST.ocaml-opt}lib/coq/kernel/clambda.cmx -lib/coq/kernel/constr.cmi -${PLIST.ocaml-opt}lib/coq/kernel/constr.cmx -lib/coq/kernel/context.cmi -${PLIST.ocaml-opt}lib/coq/kernel/context.cmx -lib/coq/kernel/conv_oracle.cmi -${PLIST.ocaml-opt}lib/coq/kernel/conv_oracle.cmx -lib/coq/kernel/cooking.cmi -${PLIST.ocaml-opt}lib/coq/kernel/cooking.cmx -lib/coq/kernel/copcodes.cmi -${PLIST.ocaml-opt}lib/coq/kernel/copcodes.cmx -lib/coq/kernel/csymtable.cmi -${PLIST.ocaml-opt}lib/coq/kernel/csymtable.cmx -lib/coq/kernel/declarations.cmi -${PLIST.ocaml-opt}lib/coq/kernel/declarations.cmx -lib/coq/kernel/declareops.cmi -${PLIST.ocaml-opt}lib/coq/kernel/declareops.cmx -lib/coq/kernel/entries.cmi -${PLIST.ocaml-opt}lib/coq/kernel/entries.cmx -lib/coq/kernel/environ.cmi -${PLIST.ocaml-opt}lib/coq/kernel/environ.cmx -lib/coq/kernel/esubst.cmi -${PLIST.ocaml-opt}lib/coq/kernel/esubst.cmx -lib/coq/kernel/evar.cmi -${PLIST.ocaml-opt}lib/coq/kernel/evar.cmx -lib/coq/kernel/float64.cmi -${PLIST.ocaml-opt}lib/coq/kernel/float64.cmx -lib/coq/kernel/indTyping.cmi -${PLIST.ocaml-opt}lib/coq/kernel/indTyping.cmx -lib/coq/kernel/indtypes.cmi -${PLIST.ocaml-opt}lib/coq/kernel/indtypes.cmx -lib/coq/kernel/inductive.cmi -${PLIST.ocaml-opt}lib/coq/kernel/inductive.cmx -lib/coq/kernel/inferCumulativity.cmi -${PLIST.ocaml-opt}lib/coq/kernel/inferCumulativity.cmx -${PLIST.ocaml-opt}lib/coq/kernel/kernel.a -${PLIST.ocaml-opt}lib/coq/kernel/kernel.cmxa -lib/coq/kernel/mod_subst.cmi -${PLIST.ocaml-opt}lib/coq/kernel/mod_subst.cmx -lib/coq/kernel/mod_typing.cmi -${PLIST.ocaml-opt}lib/coq/kernel/mod_typing.cmx -lib/coq/kernel/modops.cmi -${PLIST.ocaml-opt}lib/coq/kernel/modops.cmx -lib/coq/kernel/names.cmi -${PLIST.ocaml-opt}lib/coq/kernel/names.cmx -lib/coq/kernel/nativecode.cmi -${PLIST.ocaml-opt}lib/coq/kernel/nativecode.cmx -lib/coq/kernel/nativeconv.cmi -${PLIST.ocaml-opt}lib/coq/kernel/nativeconv.cmx -lib/coq/kernel/nativelambda.cmi -${PLIST.ocaml-opt}lib/coq/kernel/nativelambda.cmx -lib/coq/kernel/nativelib.cmi -${PLIST.ocaml-opt}lib/coq/kernel/nativelib.cmx -lib/coq/kernel/nativelibrary.cmi -${PLIST.ocaml-opt}lib/coq/kernel/nativelibrary.cmx -lib/coq/kernel/nativevalues.cmi -${PLIST.ocaml-opt}lib/coq/kernel/nativevalues.cmx -lib/coq/kernel/opaqueproof.cmi -${PLIST.ocaml-opt}lib/coq/kernel/opaqueproof.cmx -lib/coq/kernel/primred.cmi -${PLIST.ocaml-opt}lib/coq/kernel/primred.cmx -lib/coq/kernel/reduction.cmi -${PLIST.ocaml-opt}lib/coq/kernel/reduction.cmx -lib/coq/kernel/relevanceops.cmi -${PLIST.ocaml-opt}lib/coq/kernel/relevanceops.cmx -lib/coq/kernel/retroknowledge.cmi -${PLIST.ocaml-opt}lib/coq/kernel/retroknowledge.cmx -lib/coq/kernel/safe_typing.cmi -${PLIST.ocaml-opt}lib/coq/kernel/safe_typing.cmx -lib/coq/kernel/section.cmi -${PLIST.ocaml-opt}lib/coq/kernel/section.cmx -lib/coq/kernel/sorts.cmi -${PLIST.ocaml-opt}lib/coq/kernel/sorts.cmx -lib/coq/kernel/subtyping.cmi -${PLIST.ocaml-opt}lib/coq/kernel/subtyping.cmx -lib/coq/kernel/term.cmi -${PLIST.ocaml-opt}lib/coq/kernel/term.cmx -lib/coq/kernel/term_typing.cmi -${PLIST.ocaml-opt}lib/coq/kernel/term_typing.cmx -lib/coq/kernel/transparentState.cmi -${PLIST.ocaml-opt}lib/coq/kernel/transparentState.cmx -lib/coq/kernel/type_errors.cmi -${PLIST.ocaml-opt}lib/coq/kernel/type_errors.cmx -lib/coq/kernel/typeops.cmi -${PLIST.ocaml-opt}lib/coq/kernel/typeops.cmx -lib/coq/kernel/uGraph.cmi -${PLIST.ocaml-opt}lib/coq/kernel/uGraph.cmx -lib/coq/kernel/uint63.cmi -${PLIST.ocaml-opt}lib/coq/kernel/uint63.cmx -lib/coq/kernel/univ.cmi -${PLIST.ocaml-opt}lib/coq/kernel/univ.cmx -lib/coq/kernel/vars.cmi -${PLIST.ocaml-opt}lib/coq/kernel/vars.cmx -lib/coq/kernel/vconv.cmi -${PLIST.ocaml-opt}lib/coq/kernel/vconv.cmx -lib/coq/kernel/vm.cmi -${PLIST.ocaml-opt}lib/coq/kernel/vm.cmx -lib/coq/kernel/vmvalues.cmi -${PLIST.ocaml-opt}lib/coq/kernel/vmvalues.cmx -lib/coq/lib/acyclicGraph.cmi -${PLIST.ocaml-opt}lib/coq/lib/acyclicGraph.cmx -lib/coq/lib/aux_file.cmi -${PLIST.ocaml-opt}lib/coq/lib/aux_file.cmx -lib/coq/lib/cAst.cmi -${PLIST.ocaml-opt}lib/coq/lib/cAst.cmx -lib/coq/lib/cErrors.cmi -${PLIST.ocaml-opt}lib/coq/lib/cErrors.cmx -lib/coq/lib/cProfile.cmi -${PLIST.ocaml-opt}lib/coq/lib/cProfile.cmx -lib/coq/lib/cWarnings.cmi -${PLIST.ocaml-opt}lib/coq/lib/cWarnings.cmx -lib/coq/lib/control.cmi -${PLIST.ocaml-opt}lib/coq/lib/control.cmx -lib/coq/lib/coqProject_file.cmi -${PLIST.ocaml-opt}lib/coq/lib/coqProject_file.cmx -lib/coq/lib/dAst.cmi -${PLIST.ocaml-opt}lib/coq/lib/dAst.cmx -lib/coq/lib/envars.cmi -${PLIST.ocaml-opt}lib/coq/lib/envars.cmx -lib/coq/lib/explore.cmi -${PLIST.ocaml-opt}lib/coq/lib/explore.cmx -lib/coq/lib/feedback.cmi -${PLIST.ocaml-opt}lib/coq/lib/feedback.cmx -lib/coq/lib/flags.cmi -${PLIST.ocaml-opt}lib/coq/lib/flags.cmx -lib/coq/lib/future.cmi -${PLIST.ocaml-opt}lib/coq/lib/future.cmx -lib/coq/lib/genarg.cmi -${PLIST.ocaml-opt}lib/coq/lib/genarg.cmx -lib/coq/lib/hook.cmi -${PLIST.ocaml-opt}lib/coq/lib/hook.cmx -${PLIST.ocaml-opt}lib/coq/lib/lib.a -${PLIST.ocaml-opt}lib/coq/lib/lib.cmxa -lib/coq/lib/loc.cmi -${PLIST.ocaml-opt}lib/coq/lib/loc.cmx -lib/coq/lib/objFile.cmi -${PLIST.ocaml-opt}lib/coq/lib/objFile.cmx -lib/coq/lib/pp.cmi -${PLIST.ocaml-opt}lib/coq/lib/pp.cmx -lib/coq/lib/pp_diff.cmi -${PLIST.ocaml-opt}lib/coq/lib/pp_diff.cmx -lib/coq/lib/remoteCounter.cmi -${PLIST.ocaml-opt}lib/coq/lib/remoteCounter.cmx -lib/coq/lib/rtree.cmi -${PLIST.ocaml-opt}lib/coq/lib/rtree.cmx -lib/coq/lib/spawn.cmi -${PLIST.ocaml-opt}lib/coq/lib/spawn.cmx -lib/coq/lib/stateid.cmi -${PLIST.ocaml-opt}lib/coq/lib/stateid.cmx -lib/coq/lib/system.cmi -${PLIST.ocaml-opt}lib/coq/lib/system.cmx -lib/coq/lib/util.cmi -${PLIST.ocaml-opt}lib/coq/lib/util.cmx -lib/coq/lib/xml_datatype.cmi -lib/coq/library/coqlib.cmi -${PLIST.ocaml-opt}lib/coq/library/coqlib.cmx -lib/coq/library/global.cmi -${PLIST.ocaml-opt}lib/coq/library/global.cmx -lib/coq/library/globnames.cmi -${PLIST.ocaml-opt}lib/coq/library/globnames.cmx -lib/coq/library/goptions.cmi -${PLIST.ocaml-opt}lib/coq/library/goptions.cmx -lib/coq/library/lib.cmi -${PLIST.ocaml-opt}lib/coq/library/lib.cmx -lib/coq/library/libnames.cmi -${PLIST.ocaml-opt}lib/coq/library/libnames.cmx -lib/coq/library/libobject.cmi -${PLIST.ocaml-opt}lib/coq/library/libobject.cmx -${PLIST.ocaml-opt}lib/coq/library/library.a -${PLIST.ocaml-opt}lib/coq/library/library.cmxa -lib/coq/library/nametab.cmi -${PLIST.ocaml-opt}lib/coq/library/nametab.cmx -lib/coq/library/states.cmi -${PLIST.ocaml-opt}lib/coq/library/states.cmx -lib/coq/library/summary.cmi -${PLIST.ocaml-opt}lib/coq/library/summary.cmx -lib/coq/parsing/cLexer.cmi -${PLIST.ocaml-opt}lib/coq/parsing/cLexer.cmx -lib/coq/parsing/extend.cmi -${PLIST.ocaml-opt}lib/coq/parsing/extend.cmx -lib/coq/parsing/g_constr.cmi -${PLIST.ocaml-opt}lib/coq/parsing/g_constr.cmx -lib/coq/parsing/g_prim.cmi -${PLIST.ocaml-opt}lib/coq/parsing/g_prim.cmx -lib/coq/parsing/notation_gram.cmi -${PLIST.ocaml-opt}lib/coq/parsing/notation_gram.cmx -lib/coq/parsing/notgram_ops.cmi -${PLIST.ocaml-opt}lib/coq/parsing/notgram_ops.cmx -${PLIST.ocaml-opt}lib/coq/parsing/parsing.a -${PLIST.ocaml-opt}lib/coq/parsing/parsing.cmxa -lib/coq/parsing/pcoq.cmi -${PLIST.ocaml-opt}lib/coq/parsing/pcoq.cmx -lib/coq/parsing/ppextend.cmi -${PLIST.ocaml-opt}lib/coq/parsing/ppextend.cmx -lib/coq/parsing/tok.cmi -${PLIST.ocaml-opt}lib/coq/parsing/tok.cmx -lib/coq/plugins/btauto/btauto_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/btauto/btauto_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/btauto/btauto_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/btauto/btauto_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/btauto/g_btauto.cmx -lib/coq/plugins/btauto/refl_btauto.cmi -${PLIST.ocaml-opt}lib/coq/plugins/btauto/refl_btauto.cmx -lib/coq/plugins/cc/cc_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/cc/cc_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/cc/cc_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/cc/cc_plugin.o -lib/coq/plugins/cc/ccalgo.cmi -${PLIST.ocaml-opt}lib/coq/plugins/cc/ccalgo.cmx -lib/coq/plugins/cc/ccproof.cmi -${PLIST.ocaml-opt}lib/coq/plugins/cc/ccproof.cmx -lib/coq/plugins/cc/cctac.cmi -${PLIST.ocaml-opt}lib/coq/plugins/cc/cctac.cmx -${PLIST.ocaml-opt}lib/coq/plugins/cc/g_congruence.cmx -lib/coq/plugins/derive/derive.cmi -${PLIST.ocaml-opt}lib/coq/plugins/derive/derive.cmx -lib/coq/plugins/derive/derive_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/derive/derive_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/derive/derive_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/derive/derive_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/derive/g_derive.cmx -lib/coq/plugins/extraction/common.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/common.cmx -lib/coq/plugins/extraction/extract_env.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/extract_env.cmx -lib/coq/plugins/extraction/extraction.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/extraction.cmx -lib/coq/plugins/extraction/extraction_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/extraction_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/extraction/extraction_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/extraction/extraction_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/extraction/g_extraction.cmx -lib/coq/plugins/extraction/haskell.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/haskell.cmx -lib/coq/plugins/extraction/json.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/json.cmx -lib/coq/plugins/extraction/miniml.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/miniml.cmx -lib/coq/plugins/extraction/mlutil.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/mlutil.cmx -lib/coq/plugins/extraction/modutil.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/modutil.cmx -lib/coq/plugins/extraction/ocaml.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/ocaml.cmx -lib/coq/plugins/extraction/scheme.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/scheme.cmx -lib/coq/plugins/extraction/table.cmi -${PLIST.ocaml-opt}lib/coq/plugins/extraction/table.cmx -lib/coq/plugins/firstorder/formula.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/formula.cmx -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/g_ground.cmx -lib/coq/plugins/firstorder/ground.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/ground.cmx -lib/coq/plugins/firstorder/ground_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/ground_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/firstorder/ground_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/ground_plugin.o -lib/coq/plugins/firstorder/instances.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/instances.cmx -lib/coq/plugins/firstorder/rules.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/rules.cmx -lib/coq/plugins/firstorder/sequent.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/sequent.cmx -lib/coq/plugins/firstorder/unify.cmi -${PLIST.ocaml-opt}lib/coq/plugins/firstorder/unify.cmx -lib/coq/plugins/funind/functional_principles_proofs.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/functional_principles_proofs.cmx -lib/coq/plugins/funind/functional_principles_types.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/functional_principles_types.cmx -${PLIST.ocaml-opt}lib/coq/plugins/funind/g_indfun.cmx -lib/coq/plugins/funind/gen_principle.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/gen_principle.cmx -lib/coq/plugins/funind/glob_term_to_relation.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/glob_term_to_relation.cmx -lib/coq/plugins/funind/glob_termops.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/glob_termops.cmx -lib/coq/plugins/funind/indfun.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/indfun.cmx -lib/coq/plugins/funind/indfun_common.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/indfun_common.cmx -lib/coq/plugins/funind/invfun.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/invfun.cmx -lib/coq/plugins/funind/recdef.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/recdef.cmx -lib/coq/plugins/funind/recdef_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/funind/recdef_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/funind/recdef_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/funind/recdef_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/ltac/coretactics.cmx -lib/coq/plugins/ltac/evar_tactics.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/evar_tactics.cmx -lib/coq/plugins/ltac/extraargs.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/extraargs.cmx -lib/coq/plugins/ltac/extratactics.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/extratactics.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_auto.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_class.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_eqdecide.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_ltac.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_obligations.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_rewrite.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/g_tactic.cmx -lib/coq/plugins/ltac/leminv.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/leminv.cmx -lib/coq/plugins/ltac/ltac_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/ltac_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/ltac/ltac_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/ltac/ltac_plugin.o -lib/coq/plugins/ltac/pltac.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/pltac.cmx -lib/coq/plugins/ltac/pptactic.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/pptactic.cmx -lib/coq/plugins/ltac/profile_ltac.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/profile_ltac.cmx -${PLIST.ocaml-opt}lib/coq/plugins/ltac/profile_ltac_tactics.cmx -lib/coq/plugins/ltac/rewrite.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/rewrite.cmx -lib/coq/plugins/ltac/tacarg.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacarg.cmx -lib/coq/plugins/ltac/taccoerce.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/taccoerce.cmx -lib/coq/plugins/ltac/tacentries.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacentries.cmx -lib/coq/plugins/ltac/tacenv.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacenv.cmx -lib/coq/plugins/ltac/tacexpr.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacexpr.cmx -lib/coq/plugins/ltac/tacintern.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacintern.cmx -lib/coq/plugins/ltac/tacinterp.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacinterp.cmx -lib/coq/plugins/ltac/tacsubst.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tacsubst.cmx -lib/coq/plugins/ltac/tactic_debug.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tactic_debug.cmx -lib/coq/plugins/ltac/tactic_matching.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tactic_matching.cmx -lib/coq/plugins/ltac/tactic_option.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tactic_option.cmx -lib/coq/plugins/ltac/tauto.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tauto.cmx -lib/coq/plugins/ltac/tauto_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tauto_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/ltac/tauto_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/ltac/tauto_plugin.o -lib/coq/plugins/micromega/certificate.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/certificate.cmx -lib/coq/plugins/micromega/coq_micromega.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/coq_micromega.cmx -lib/coq/plugins/micromega/csdpcert -lib/coq/plugins/micromega/csdpcert.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/csdpcert.cmx -lib/coq/plugins/micromega/g_micromega.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/g_micromega.cmx -${PLIST.ocaml-opt}lib/coq/plugins/micromega/g_zify.cmx -lib/coq/plugins/micromega/itv.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/itv.cmx -lib/coq/plugins/micromega/mfourier.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/mfourier.cmx -lib/coq/plugins/micromega/micromega.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/micromega.cmx -lib/coq/plugins/micromega/micromega_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/micromega_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/micromega/micromega_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/micromega/micromega_plugin.o -lib/coq/plugins/micromega/mutils.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/mutils.cmx -lib/coq/plugins/micromega/numCompat.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/numCompat.cmx -lib/coq/plugins/micromega/persistent_cache.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/persistent_cache.cmx -lib/coq/plugins/micromega/polynomial.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/polynomial.cmx -lib/coq/plugins/micromega/simplex.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/simplex.cmx -lib/coq/plugins/micromega/sos.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/sos.cmx -lib/coq/plugins/micromega/sos_lib.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/sos_lib.cmx -lib/coq/plugins/micromega/sos_types.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/sos_types.cmx -lib/coq/plugins/micromega/vect.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/vect.cmx -lib/coq/plugins/micromega/zify.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/zify.cmx -lib/coq/plugins/micromega/zify_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/micromega/zify_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/micromega/zify_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/micromega/zify_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/g_nsatz.cmx -lib/coq/plugins/nsatz/ideal.cmi -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/ideal.cmx -lib/coq/plugins/nsatz/nsatz.cmi -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/nsatz.cmx -lib/coq/plugins/nsatz/nsatz_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/nsatz_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/nsatz/nsatz_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/nsatz_plugin.o -lib/coq/plugins/nsatz/polynom.cmi -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/polynom.cmx -lib/coq/plugins/nsatz/utile.cmi -${PLIST.ocaml-opt}lib/coq/plugins/nsatz/utile.cmx -lib/coq/plugins/omega/coq_omega.cmi -${PLIST.ocaml-opt}lib/coq/plugins/omega/coq_omega.cmx -${PLIST.ocaml-opt}lib/coq/plugins/omega/g_omega.cmx -${PLIST.ocaml-opt}lib/coq/plugins/omega/omega.cmx -lib/coq/plugins/omega/omega_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/omega/omega_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/omega/omega_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/omega/omega_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/rtauto/g_rtauto.cmx -lib/coq/plugins/rtauto/proof_search.cmi -${PLIST.ocaml-opt}lib/coq/plugins/rtauto/proof_search.cmx -lib/coq/plugins/rtauto/refl_tauto.cmi -${PLIST.ocaml-opt}lib/coq/plugins/rtauto/refl_tauto.cmx -lib/coq/plugins/rtauto/rtauto_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/rtauto/rtauto_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/rtauto/rtauto_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/rtauto/rtauto_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/setoid_ring/g_newring.cmx -lib/coq/plugins/setoid_ring/newring.cmi -${PLIST.ocaml-opt}lib/coq/plugins/setoid_ring/newring.cmx -lib/coq/plugins/setoid_ring/newring_ast.cmi -${PLIST.ocaml-opt}lib/coq/plugins/setoid_ring/newring_ast.cmx -lib/coq/plugins/setoid_ring/newring_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/setoid_ring/newring_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/setoid_ring/newring_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/setoid_ring/newring_plugin.o -lib/coq/plugins/ssr/ssrast.cmi -lib/coq/plugins/ssr/ssrbwd.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrbwd.cmx -lib/coq/plugins/ssr/ssrcommon.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrcommon.cmx -lib/coq/plugins/ssr/ssreflect_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssreflect_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/ssr/ssreflect_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssreflect_plugin.o -lib/coq/plugins/ssr/ssrelim.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrelim.cmx -lib/coq/plugins/ssr/ssrequality.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrequality.cmx -lib/coq/plugins/ssr/ssrfwd.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrfwd.cmx -lib/coq/plugins/ssr/ssripats.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssripats.cmx -lib/coq/plugins/ssr/ssrparser.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrparser.cmx -lib/coq/plugins/ssr/ssrprinters.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrprinters.cmx -lib/coq/plugins/ssr/ssrtacticals.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrtacticals.cmx -lib/coq/plugins/ssr/ssrvernac.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrvernac.cmx -lib/coq/plugins/ssr/ssrview.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssr/ssrview.cmx -lib/coq/plugins/ssrmatching/g_ssrmatching.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssrmatching/g_ssrmatching.cmx -lib/coq/plugins/ssrmatching/ssrmatching.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssrmatching/ssrmatching.cmx -lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/ssrmatching/ssrmatching_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/ssrmatching/ssrmatching_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/ssrsearch/g_search.cmx -lib/coq/plugins/ssrsearch/ssrsearch_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/ssrsearch/ssrsearch_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/ssrsearch/ssrsearch_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/ssrsearch/ssrsearch_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/syntax/float_syntax.cmx -lib/coq/plugins/syntax/float_syntax_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/float_syntax_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/syntax/float_syntax_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/syntax/float_syntax_plugin.o -${PLIST.ocaml-opt}lib/coq/plugins/syntax/g_numeral.cmx -${PLIST.ocaml-opt}lib/coq/plugins/syntax/g_string.cmx -${PLIST.ocaml-opt}lib/coq/plugins/syntax/int63_syntax.cmx -lib/coq/plugins/syntax/int63_syntax_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/int63_syntax_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/syntax/int63_syntax_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/syntax/int63_syntax_plugin.o -lib/coq/plugins/syntax/numeral.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/numeral.cmx -lib/coq/plugins/syntax/numeral_notation_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/numeral_notation_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/syntax/numeral_notation_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/syntax/numeral_notation_plugin.o -lib/coq/plugins/syntax/r_syntax.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/r_syntax.cmx -lib/coq/plugins/syntax/r_syntax_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/r_syntax_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/syntax/r_syntax_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/syntax/r_syntax_plugin.o -lib/coq/plugins/syntax/string_notation.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/string_notation.cmx -lib/coq/plugins/syntax/string_notation_plugin.cmi -${PLIST.ocaml-opt}lib/coq/plugins/syntax/string_notation_plugin.cmx -${PLIST.natdynlink}lib/coq/plugins/syntax/string_notation_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/plugins/syntax/string_notation_plugin.o -lib/coq/pretyping/arguments_renaming.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/arguments_renaming.cmx -lib/coq/pretyping/cases.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/cases.cmx -lib/coq/pretyping/cbv.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/cbv.cmx -lib/coq/pretyping/coercion.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/coercion.cmx -lib/coq/pretyping/coercionops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/coercionops.cmx -lib/coq/pretyping/constr_matching.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/constr_matching.cmx -lib/coq/pretyping/detyping.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/detyping.cmx -lib/coq/pretyping/evarconv.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/evarconv.cmx -lib/coq/pretyping/evardefine.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/evardefine.cmx -lib/coq/pretyping/evarsolve.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/evarsolve.cmx -lib/coq/pretyping/find_subterm.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/find_subterm.cmx -lib/coq/pretyping/geninterp.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/geninterp.cmx -lib/coq/pretyping/globEnv.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/globEnv.cmx -lib/coq/pretyping/glob_ops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/glob_ops.cmx -lib/coq/pretyping/glob_term.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/glob_term.cmx -lib/coq/pretyping/heads.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/heads.cmx -lib/coq/pretyping/indrec.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/indrec.cmx -lib/coq/pretyping/inductiveops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/inductiveops.cmx -lib/coq/pretyping/keys.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/keys.cmx -lib/coq/pretyping/locus.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/locus.cmx -lib/coq/pretyping/locusops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/locusops.cmx -lib/coq/pretyping/ltac_pretype.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/ltac_pretype.cmx -lib/coq/pretyping/nativenorm.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/nativenorm.cmx -lib/coq/pretyping/pattern.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/pattern.cmx -lib/coq/pretyping/patternops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/patternops.cmx -lib/coq/pretyping/pretype_errors.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/pretype_errors.cmx -${PLIST.ocaml-opt}lib/coq/pretyping/pretyping.a -lib/coq/pretyping/pretyping.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/pretyping.cmx -${PLIST.ocaml-opt}lib/coq/pretyping/pretyping.cmxa -lib/coq/pretyping/program.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/program.cmx -lib/coq/pretyping/recordops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/recordops.cmx -lib/coq/pretyping/reductionops.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/reductionops.cmx -lib/coq/pretyping/retyping.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/retyping.cmx -lib/coq/pretyping/tacred.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/tacred.cmx -lib/coq/pretyping/typeclasses.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/typeclasses.cmx -lib/coq/pretyping/typeclasses_errors.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/typeclasses_errors.cmx -lib/coq/pretyping/typing.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/typing.cmx -lib/coq/pretyping/unification.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/unification.cmx -lib/coq/pretyping/vnorm.cmi -${PLIST.ocaml-opt}lib/coq/pretyping/vnorm.cmx -lib/coq/printing/genprint.cmi -${PLIST.ocaml-opt}lib/coq/printing/genprint.cmx -lib/coq/printing/ppconstr.cmi -${PLIST.ocaml-opt}lib/coq/printing/ppconstr.cmx -lib/coq/printing/pputils.cmi -${PLIST.ocaml-opt}lib/coq/printing/pputils.cmx -lib/coq/printing/printer.cmi -${PLIST.ocaml-opt}lib/coq/printing/printer.cmx -${PLIST.ocaml-opt}lib/coq/printing/printing.a -${PLIST.ocaml-opt}lib/coq/printing/printing.cmxa -lib/coq/printing/printmod.cmi -${PLIST.ocaml-opt}lib/coq/printing/printmod.cmx -lib/coq/printing/proof_diffs.cmi -${PLIST.ocaml-opt}lib/coq/printing/proof_diffs.cmx -lib/coq/proofs/clenv.cmi -${PLIST.ocaml-opt}lib/coq/proofs/clenv.cmx -lib/coq/proofs/clenvtac.cmi -${PLIST.ocaml-opt}lib/coq/proofs/clenvtac.cmx -lib/coq/proofs/evar_refiner.cmi -${PLIST.ocaml-opt}lib/coq/proofs/evar_refiner.cmx -lib/coq/proofs/goal.cmi -${PLIST.ocaml-opt}lib/coq/proofs/goal.cmx -lib/coq/proofs/goal_select.cmi -${PLIST.ocaml-opt}lib/coq/proofs/goal_select.cmx -lib/coq/proofs/logic.cmi -${PLIST.ocaml-opt}lib/coq/proofs/logic.cmx -lib/coq/proofs/miscprint.cmi -${PLIST.ocaml-opt}lib/coq/proofs/miscprint.cmx -lib/coq/proofs/proof.cmi -${PLIST.ocaml-opt}lib/coq/proofs/proof.cmx -lib/coq/proofs/proof_bullet.cmi -${PLIST.ocaml-opt}lib/coq/proofs/proof_bullet.cmx -${PLIST.ocaml-opt}lib/coq/proofs/proofs.a -${PLIST.ocaml-opt}lib/coq/proofs/proofs.cmxa -lib/coq/proofs/refine.cmi -${PLIST.ocaml-opt}lib/coq/proofs/refine.cmx -lib/coq/proofs/refiner.cmi -${PLIST.ocaml-opt}lib/coq/proofs/refiner.cmx -lib/coq/proofs/tacmach.cmi -${PLIST.ocaml-opt}lib/coq/proofs/tacmach.cmx -lib/coq/proofs/tactypes.cmi -${PLIST.ocaml-opt}lib/coq/proofs/tactypes.cmx -lib/coq/revision -lib/coq/stm/asyncTaskQueue.cmi -${PLIST.ocaml-opt}lib/coq/stm/asyncTaskQueue.cmx -lib/coq/stm/coqworkmgrApi.cmi -${PLIST.ocaml-opt}lib/coq/stm/coqworkmgrApi.cmx -lib/coq/stm/dag.cmi -${PLIST.ocaml-opt}lib/coq/stm/dag.cmx -lib/coq/stm/proofBlockDelimiter.cmi -${PLIST.ocaml-opt}lib/coq/stm/proofBlockDelimiter.cmx -lib/coq/stm/spawned.cmi -${PLIST.ocaml-opt}lib/coq/stm/spawned.cmx -${PLIST.ocaml-opt}lib/coq/stm/stm.a -lib/coq/stm/stm.cmi -${PLIST.ocaml-opt}lib/coq/stm/stm.cmx -${PLIST.ocaml-opt}lib/coq/stm/stm.cmxa -lib/coq/stm/tQueue.cmi -${PLIST.ocaml-opt}lib/coq/stm/tQueue.cmx -lib/coq/stm/vcs.cmi -${PLIST.ocaml-opt}lib/coq/stm/vcs.cmx -lib/coq/stm/vernac_classifier.cmi -${PLIST.ocaml-opt}lib/coq/stm/vernac_classifier.cmx -lib/coq/stm/vio_checking.cmi -${PLIST.ocaml-opt}lib/coq/stm/vio_checking.cmx -lib/coq/stm/workerPool.cmi -${PLIST.ocaml-opt}lib/coq/stm/workerPool.cmx -lib/coq/tactics/abstract.cmi -${PLIST.ocaml-opt}lib/coq/tactics/abstract.cmx -lib/coq/tactics/auto.cmi -${PLIST.ocaml-opt}lib/coq/tactics/auto.cmx -lib/coq/tactics/autorewrite.cmi -${PLIST.ocaml-opt}lib/coq/tactics/autorewrite.cmx -lib/coq/tactics/btermdn.cmi -${PLIST.ocaml-opt}lib/coq/tactics/btermdn.cmx -lib/coq/tactics/class_tactics.cmi -${PLIST.ocaml-opt}lib/coq/tactics/class_tactics.cmx -lib/coq/tactics/contradiction.cmi -${PLIST.ocaml-opt}lib/coq/tactics/contradiction.cmx -lib/coq/tactics/declareScheme.cmi -${PLIST.ocaml-opt}lib/coq/tactics/declareScheme.cmx -lib/coq/tactics/declareUctx.cmi -${PLIST.ocaml-opt}lib/coq/tactics/declareUctx.cmx -lib/coq/tactics/dn.cmi -${PLIST.ocaml-opt}lib/coq/tactics/dn.cmx -lib/coq/tactics/dnet.cmi -${PLIST.ocaml-opt}lib/coq/tactics/dnet.cmx -lib/coq/tactics/eauto.cmi -${PLIST.ocaml-opt}lib/coq/tactics/eauto.cmx -lib/coq/tactics/elim.cmi -${PLIST.ocaml-opt}lib/coq/tactics/elim.cmx -lib/coq/tactics/elimschemes.cmi -${PLIST.ocaml-opt}lib/coq/tactics/elimschemes.cmx -lib/coq/tactics/eqdecide.cmi -${PLIST.ocaml-opt}lib/coq/tactics/eqdecide.cmx -lib/coq/tactics/eqschemes.cmi -${PLIST.ocaml-opt}lib/coq/tactics/eqschemes.cmx -lib/coq/tactics/equality.cmi -${PLIST.ocaml-opt}lib/coq/tactics/equality.cmx -lib/coq/tactics/genredexpr.cmi -${PLIST.ocaml-opt}lib/coq/tactics/genredexpr.cmx -lib/coq/tactics/hints.cmi -${PLIST.ocaml-opt}lib/coq/tactics/hints.cmx -lib/coq/tactics/hipattern.cmi -${PLIST.ocaml-opt}lib/coq/tactics/hipattern.cmx -lib/coq/tactics/ind_tables.cmi -${PLIST.ocaml-opt}lib/coq/tactics/ind_tables.cmx -lib/coq/tactics/inv.cmi -${PLIST.ocaml-opt}lib/coq/tactics/inv.cmx -lib/coq/tactics/ppred.cmi -${PLIST.ocaml-opt}lib/coq/tactics/ppred.cmx -lib/coq/tactics/redexpr.cmi -${PLIST.ocaml-opt}lib/coq/tactics/redexpr.cmx -lib/coq/tactics/redops.cmi -${PLIST.ocaml-opt}lib/coq/tactics/redops.cmx -lib/coq/tactics/tacticals.cmi -${PLIST.ocaml-opt}lib/coq/tactics/tacticals.cmx -${PLIST.ocaml-opt}lib/coq/tactics/tactics.a -lib/coq/tactics/tactics.cmi -${PLIST.ocaml-opt}lib/coq/tactics/tactics.cmx -${PLIST.ocaml-opt}lib/coq/tactics/tactics.cmxa -lib/coq/tactics/term_dnet.cmi -${PLIST.ocaml-opt}lib/coq/tactics/term_dnet.cmx -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Between.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Div2.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Even.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Gt.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Le.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Lt.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Max.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Min.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Minus.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Mult.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Plus.o -lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmx -${PLIST.natdynlink}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.o +lib/coq-core/META +${PLIST.ocaml-opt}lib/coq-core/boot/boot.a +lib/coq-core/boot/boot.cma +lib/coq-core/boot/boot.cmi +lib/coq-core/boot/boot.cmt +${PLIST.ocaml-opt}lib/coq-core/boot/boot.cmx +${PLIST.ocaml-opt}lib/coq-core/boot/boot.cmxa +${PLIST.natdynlink}lib/coq-core/boot/boot.cmxs +lib/coq-core/boot/boot.ml +lib/coq-core/boot/boot__Env.cmi +lib/coq-core/boot/boot__Env.cmt +lib/coq-core/boot/boot__Env.cmti +${PLIST.ocaml-opt}lib/coq-core/boot/boot__Env.cmx +lib/coq-core/boot/boot__Path.cmi +lib/coq-core/boot/boot__Path.cmt +${PLIST.ocaml-opt}lib/coq-core/boot/boot__Path.cmx +lib/coq-core/boot/boot__Util.cmi +lib/coq-core/boot/boot__Util.cmt +${PLIST.ocaml-opt}lib/coq-core/boot/boot__Util.cmx +lib/coq-core/boot/env.ml +lib/coq-core/boot/env.mli +lib/coq-core/boot/path.ml +lib/coq-core/boot/util.ml +lib/coq-core/clib/cArray.cmi +lib/coq-core/clib/cArray.cmt +lib/coq-core/clib/cArray.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cArray.cmx +lib/coq-core/clib/cArray.ml +lib/coq-core/clib/cArray.mli +lib/coq-core/clib/cEphemeron.cmi +lib/coq-core/clib/cEphemeron.cmt +lib/coq-core/clib/cEphemeron.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cEphemeron.cmx +lib/coq-core/clib/cEphemeron.ml +lib/coq-core/clib/cEphemeron.mli +lib/coq-core/clib/cList.cmi +lib/coq-core/clib/cList.cmt +lib/coq-core/clib/cList.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cList.cmx +lib/coq-core/clib/cList.ml +lib/coq-core/clib/cList.mli +lib/coq-core/clib/cMap.cmi +lib/coq-core/clib/cMap.cmt +lib/coq-core/clib/cMap.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cMap.cmx +lib/coq-core/clib/cMap.ml +lib/coq-core/clib/cMap.mli +lib/coq-core/clib/cObj.cmi +lib/coq-core/clib/cObj.cmt +lib/coq-core/clib/cObj.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cObj.cmx +lib/coq-core/clib/cObj.ml +lib/coq-core/clib/cObj.mli +lib/coq-core/clib/cSet.cmi +lib/coq-core/clib/cSet.cmt +lib/coq-core/clib/cSet.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cSet.cmx +lib/coq-core/clib/cSet.ml +lib/coq-core/clib/cSet.mli +lib/coq-core/clib/cSig.cmi +lib/coq-core/clib/cSig.cmti +lib/coq-core/clib/cSig.mli +lib/coq-core/clib/cString.cmi +lib/coq-core/clib/cString.cmt +lib/coq-core/clib/cString.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cString.cmx +lib/coq-core/clib/cString.ml +lib/coq-core/clib/cString.mli +lib/coq-core/clib/cThread.cmi +lib/coq-core/clib/cThread.cmt +lib/coq-core/clib/cThread.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cThread.cmx +lib/coq-core/clib/cThread.ml +lib/coq-core/clib/cThread.mli +lib/coq-core/clib/cUnix.cmi +lib/coq-core/clib/cUnix.cmt +lib/coq-core/clib/cUnix.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/cUnix.cmx +lib/coq-core/clib/cUnix.ml +lib/coq-core/clib/cUnix.mli +${PLIST.ocaml-opt}lib/coq-core/clib/clib.a +lib/coq-core/clib/clib.cma +${PLIST.ocaml-opt}lib/coq-core/clib/clib.cmxa +${PLIST.natdynlink}lib/coq-core/clib/clib.cmxs +lib/coq-core/clib/diff2.cmi +lib/coq-core/clib/diff2.cmt +lib/coq-core/clib/diff2.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/diff2.cmx +lib/coq-core/clib/diff2.ml +lib/coq-core/clib/diff2.mli +lib/coq-core/clib/dyn.cmi +lib/coq-core/clib/dyn.cmt +lib/coq-core/clib/dyn.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/dyn.cmx +lib/coq-core/clib/dyn.ml +lib/coq-core/clib/dyn.mli +lib/coq-core/clib/exninfo.cmi +lib/coq-core/clib/exninfo.cmt +lib/coq-core/clib/exninfo.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/exninfo.cmx +lib/coq-core/clib/exninfo.ml +lib/coq-core/clib/exninfo.mli +lib/coq-core/clib/hMap.cmi +lib/coq-core/clib/hMap.cmt +lib/coq-core/clib/hMap.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/hMap.cmx +lib/coq-core/clib/hMap.ml +lib/coq-core/clib/hMap.mli +lib/coq-core/clib/hashcons.cmi +lib/coq-core/clib/hashcons.cmt +lib/coq-core/clib/hashcons.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/hashcons.cmx +lib/coq-core/clib/hashcons.ml +lib/coq-core/clib/hashcons.mli +lib/coq-core/clib/hashset.cmi +lib/coq-core/clib/hashset.cmt +lib/coq-core/clib/hashset.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/hashset.cmx +lib/coq-core/clib/hashset.ml +lib/coq-core/clib/hashset.mli +lib/coq-core/clib/heap.cmi +lib/coq-core/clib/heap.cmt +lib/coq-core/clib/heap.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/heap.cmx +lib/coq-core/clib/heap.ml +lib/coq-core/clib/heap.mli +lib/coq-core/clib/iStream.cmi +lib/coq-core/clib/iStream.cmt +lib/coq-core/clib/iStream.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/iStream.cmx +lib/coq-core/clib/iStream.ml +lib/coq-core/clib/iStream.mli +lib/coq-core/clib/int.cmi +lib/coq-core/clib/int.cmt +lib/coq-core/clib/int.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/int.cmx +lib/coq-core/clib/int.ml +lib/coq-core/clib/int.mli +lib/coq-core/clib/minisys.cmi +lib/coq-core/clib/minisys.cmt +${PLIST.ocaml-opt}lib/coq-core/clib/minisys.cmx +lib/coq-core/clib/minisys.ml +lib/coq-core/clib/monad.cmi +lib/coq-core/clib/monad.cmt +lib/coq-core/clib/monad.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/monad.cmx +lib/coq-core/clib/monad.ml +lib/coq-core/clib/monad.mli +lib/coq-core/clib/neList.cmi +lib/coq-core/clib/neList.cmt +lib/coq-core/clib/neList.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/neList.cmx +lib/coq-core/clib/neList.ml +lib/coq-core/clib/neList.mli +lib/coq-core/clib/option.cmi +lib/coq-core/clib/option.cmt +lib/coq-core/clib/option.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/option.cmx +lib/coq-core/clib/option.ml +lib/coq-core/clib/option.mli +lib/coq-core/clib/orderedType.cmi +lib/coq-core/clib/orderedType.cmt +lib/coq-core/clib/orderedType.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/orderedType.cmx +lib/coq-core/clib/orderedType.ml +lib/coq-core/clib/orderedType.mli +lib/coq-core/clib/predicate.cmi +lib/coq-core/clib/predicate.cmt +lib/coq-core/clib/predicate.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/predicate.cmx +lib/coq-core/clib/predicate.ml +lib/coq-core/clib/predicate.mli +lib/coq-core/clib/range.cmi +lib/coq-core/clib/range.cmt +lib/coq-core/clib/range.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/range.cmx +lib/coq-core/clib/range.ml +lib/coq-core/clib/range.mli +lib/coq-core/clib/segmenttree.cmi +lib/coq-core/clib/segmenttree.cmt +lib/coq-core/clib/segmenttree.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/segmenttree.cmx +lib/coq-core/clib/segmenttree.ml +lib/coq-core/clib/segmenttree.mli +lib/coq-core/clib/store.cmi +lib/coq-core/clib/store.cmt +lib/coq-core/clib/store.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/store.cmx +lib/coq-core/clib/store.ml +lib/coq-core/clib/store.mli +lib/coq-core/clib/terminal.cmi +lib/coq-core/clib/terminal.cmt +lib/coq-core/clib/terminal.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/terminal.cmx +lib/coq-core/clib/terminal.ml +lib/coq-core/clib/terminal.mli +lib/coq-core/clib/trie.cmi +lib/coq-core/clib/trie.cmt +lib/coq-core/clib/trie.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/trie.cmx +lib/coq-core/clib/trie.ml +lib/coq-core/clib/trie.mli +lib/coq-core/clib/unicode.cmi +lib/coq-core/clib/unicode.cmt +lib/coq-core/clib/unicode.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/unicode.cmx +lib/coq-core/clib/unicode.ml +lib/coq-core/clib/unicode.mli +lib/coq-core/clib/unicodetable.cmi +lib/coq-core/clib/unicodetable.cmt +${PLIST.ocaml-opt}lib/coq-core/clib/unicodetable.cmx +lib/coq-core/clib/unicodetable.ml +lib/coq-core/clib/unionfind.cmi +lib/coq-core/clib/unionfind.cmt +lib/coq-core/clib/unionfind.cmti +${PLIST.ocaml-opt}lib/coq-core/clib/unionfind.cmx +lib/coq-core/clib/unionfind.ml +lib/coq-core/clib/unionfind.mli +${PLIST.ocaml-opt}lib/coq-core/config/config.a +lib/coq-core/config/config.cma +${PLIST.ocaml-opt}lib/coq-core/config/config.cmxa +${PLIST.natdynlink}lib/coq-core/config/config.cmxs +lib/coq-core/config/coq_config.cmi +lib/coq-core/config/coq_config.cmt +lib/coq-core/config/coq_config.cmti +${PLIST.ocaml-opt}lib/coq-core/config/coq_config.cmx +lib/coq-core/config/coq_config.ml +lib/coq-core/config/coq_config.mli +lib/coq-core/dune-package +lib/coq-core/engine/eConstr.cmi +lib/coq-core/engine/eConstr.cmt +lib/coq-core/engine/eConstr.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/eConstr.cmx +lib/coq-core/engine/eConstr.ml +lib/coq-core/engine/eConstr.mli +${PLIST.ocaml-opt}lib/coq-core/engine/engine.a +lib/coq-core/engine/engine.cma +${PLIST.ocaml-opt}lib/coq-core/engine/engine.cmxa +${PLIST.natdynlink}lib/coq-core/engine/engine.cmxs +lib/coq-core/engine/evar_kinds.cmi +lib/coq-core/engine/evar_kinds.cmt +lib/coq-core/engine/evar_kinds.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/evar_kinds.cmx +lib/coq-core/engine/evar_kinds.ml +lib/coq-core/engine/evar_kinds.mli +lib/coq-core/engine/evarutil.cmi +lib/coq-core/engine/evarutil.cmt +lib/coq-core/engine/evarutil.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/evarutil.cmx +lib/coq-core/engine/evarutil.ml +lib/coq-core/engine/evarutil.mli +lib/coq-core/engine/evd.cmi +lib/coq-core/engine/evd.cmt +lib/coq-core/engine/evd.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/evd.cmx +lib/coq-core/engine/evd.ml +lib/coq-core/engine/evd.mli +lib/coq-core/engine/ftactic.cmi +lib/coq-core/engine/ftactic.cmt +lib/coq-core/engine/ftactic.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/ftactic.cmx +lib/coq-core/engine/ftactic.ml +lib/coq-core/engine/ftactic.mli +lib/coq-core/engine/logic_monad.cmi +lib/coq-core/engine/logic_monad.cmt +lib/coq-core/engine/logic_monad.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/logic_monad.cmx +lib/coq-core/engine/logic_monad.ml +lib/coq-core/engine/logic_monad.mli +lib/coq-core/engine/namegen.cmi +lib/coq-core/engine/namegen.cmt +lib/coq-core/engine/namegen.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/namegen.cmx +lib/coq-core/engine/namegen.ml +lib/coq-core/engine/namegen.mli +lib/coq-core/engine/nameops.cmi +lib/coq-core/engine/nameops.cmt +lib/coq-core/engine/nameops.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/nameops.cmx +lib/coq-core/engine/nameops.ml +lib/coq-core/engine/nameops.mli +lib/coq-core/engine/proofview.cmi +lib/coq-core/engine/proofview.cmt +lib/coq-core/engine/proofview.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/proofview.cmx +lib/coq-core/engine/proofview.ml +lib/coq-core/engine/proofview.mli +lib/coq-core/engine/proofview_monad.cmi +lib/coq-core/engine/proofview_monad.cmt +lib/coq-core/engine/proofview_monad.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/proofview_monad.cmx +lib/coq-core/engine/proofview_monad.ml +lib/coq-core/engine/proofview_monad.mli +lib/coq-core/engine/termops.cmi +lib/coq-core/engine/termops.cmt +lib/coq-core/engine/termops.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/termops.cmx +lib/coq-core/engine/termops.ml +lib/coq-core/engine/termops.mli +lib/coq-core/engine/uState.cmi +lib/coq-core/engine/uState.cmt +lib/coq-core/engine/uState.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/uState.cmx +lib/coq-core/engine/uState.ml +lib/coq-core/engine/uState.mli +lib/coq-core/engine/univGen.cmi +lib/coq-core/engine/univGen.cmt +lib/coq-core/engine/univGen.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/univGen.cmx +lib/coq-core/engine/univGen.ml +lib/coq-core/engine/univGen.mli +lib/coq-core/engine/univMinim.cmi +lib/coq-core/engine/univMinim.cmt +lib/coq-core/engine/univMinim.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/univMinim.cmx +lib/coq-core/engine/univMinim.ml +lib/coq-core/engine/univMinim.mli +lib/coq-core/engine/univNames.cmi +lib/coq-core/engine/univNames.cmt +lib/coq-core/engine/univNames.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/univNames.cmx +lib/coq-core/engine/univNames.ml +lib/coq-core/engine/univNames.mli +lib/coq-core/engine/univProblem.cmi +lib/coq-core/engine/univProblem.cmt +lib/coq-core/engine/univProblem.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/univProblem.cmx +lib/coq-core/engine/univProblem.ml +lib/coq-core/engine/univProblem.mli +lib/coq-core/engine/univSubst.cmi +lib/coq-core/engine/univSubst.cmt +lib/coq-core/engine/univSubst.cmti +${PLIST.ocaml-opt}lib/coq-core/engine/univSubst.cmx +lib/coq-core/engine/univSubst.ml +lib/coq-core/engine/univSubst.mli +lib/coq-core/gramlib/gramext.ml +lib/coq-core/gramlib/gramext.mli +${PLIST.ocaml-opt}lib/coq-core/gramlib/gramlib.a +lib/coq-core/gramlib/gramlib.cma +lib/coq-core/gramlib/gramlib.cmi +lib/coq-core/gramlib/gramlib.cmt +${PLIST.ocaml-opt}lib/coq-core/gramlib/gramlib.cmx +${PLIST.ocaml-opt}lib/coq-core/gramlib/gramlib.cmxa +${PLIST.natdynlink}lib/coq-core/gramlib/gramlib.cmxs +lib/coq-core/gramlib/gramlib.ml +lib/coq-core/gramlib/gramlib__Gramext.cmi +lib/coq-core/gramlib/gramlib__Gramext.cmt +lib/coq-core/gramlib/gramlib__Gramext.cmti +${PLIST.ocaml-opt}lib/coq-core/gramlib/gramlib__Gramext.cmx +lib/coq-core/gramlib/gramlib__Grammar.cmi +lib/coq-core/gramlib/gramlib__Grammar.cmt +lib/coq-core/gramlib/gramlib__Grammar.cmti +${PLIST.ocaml-opt}lib/coq-core/gramlib/gramlib__Grammar.cmx +lib/coq-core/gramlib/gramlib__Plexing.cmi +lib/coq-core/gramlib/gramlib__Plexing.cmt +lib/coq-core/gramlib/gramlib__Plexing.cmti +${PLIST.ocaml-opt}lib/coq-core/gramlib/gramlib__Plexing.cmx +lib/coq-core/gramlib/grammar.ml +lib/coq-core/gramlib/grammar.mli +lib/coq-core/gramlib/plexing.ml +lib/coq-core/gramlib/plexing.mli +lib/coq-core/interp/constrexpr.cmi +lib/coq-core/interp/constrexpr.cmt +${PLIST.ocaml-opt}lib/coq-core/interp/constrexpr.cmx +lib/coq-core/interp/constrexpr.ml +lib/coq-core/interp/constrexpr_ops.cmi +lib/coq-core/interp/constrexpr_ops.cmt +lib/coq-core/interp/constrexpr_ops.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/constrexpr_ops.cmx +lib/coq-core/interp/constrexpr_ops.ml +lib/coq-core/interp/constrexpr_ops.mli +lib/coq-core/interp/constrextern.cmi +lib/coq-core/interp/constrextern.cmt +lib/coq-core/interp/constrextern.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/constrextern.cmx +lib/coq-core/interp/constrextern.ml +lib/coq-core/interp/constrextern.mli +lib/coq-core/interp/constrintern.cmi +lib/coq-core/interp/constrintern.cmt +lib/coq-core/interp/constrintern.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/constrintern.cmx +lib/coq-core/interp/constrintern.ml +lib/coq-core/interp/constrintern.mli +lib/coq-core/interp/decls.cmi +lib/coq-core/interp/decls.cmt +lib/coq-core/interp/decls.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/decls.cmx +lib/coq-core/interp/decls.ml +lib/coq-core/interp/decls.mli +lib/coq-core/interp/deprecation.cmi +lib/coq-core/interp/deprecation.cmt +lib/coq-core/interp/deprecation.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/deprecation.cmx +lib/coq-core/interp/deprecation.ml +lib/coq-core/interp/deprecation.mli +lib/coq-core/interp/dumpglob.cmi +lib/coq-core/interp/dumpglob.cmt +lib/coq-core/interp/dumpglob.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/dumpglob.cmx +lib/coq-core/interp/dumpglob.ml +lib/coq-core/interp/dumpglob.mli +lib/coq-core/interp/genintern.cmi +lib/coq-core/interp/genintern.cmt +lib/coq-core/interp/genintern.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/genintern.cmx +lib/coq-core/interp/genintern.ml +lib/coq-core/interp/genintern.mli +lib/coq-core/interp/impargs.cmi +lib/coq-core/interp/impargs.cmt +lib/coq-core/interp/impargs.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/impargs.cmx +lib/coq-core/interp/impargs.ml +lib/coq-core/interp/impargs.mli +lib/coq-core/interp/implicit_quantifiers.cmi +lib/coq-core/interp/implicit_quantifiers.cmt +lib/coq-core/interp/implicit_quantifiers.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/implicit_quantifiers.cmx +lib/coq-core/interp/implicit_quantifiers.ml +lib/coq-core/interp/implicit_quantifiers.mli +${PLIST.ocaml-opt}lib/coq-core/interp/interp.a +lib/coq-core/interp/interp.cma +${PLIST.ocaml-opt}lib/coq-core/interp/interp.cmxa +${PLIST.natdynlink}lib/coq-core/interp/interp.cmxs +lib/coq-core/interp/modintern.cmi +lib/coq-core/interp/modintern.cmt +lib/coq-core/interp/modintern.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/modintern.cmx +lib/coq-core/interp/modintern.ml +lib/coq-core/interp/modintern.mli +lib/coq-core/interp/notation.cmi +lib/coq-core/interp/notation.cmt +lib/coq-core/interp/notation.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/notation.cmx +lib/coq-core/interp/notation.ml +lib/coq-core/interp/notation.mli +lib/coq-core/interp/notation_ops.cmi +lib/coq-core/interp/notation_ops.cmt +lib/coq-core/interp/notation_ops.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/notation_ops.cmx +lib/coq-core/interp/notation_ops.ml +lib/coq-core/interp/notation_ops.mli +lib/coq-core/interp/notation_term.cmi +lib/coq-core/interp/notation_term.cmt +${PLIST.ocaml-opt}lib/coq-core/interp/notation_term.cmx +lib/coq-core/interp/notation_term.ml +lib/coq-core/interp/numTok.cmi +lib/coq-core/interp/numTok.cmt +lib/coq-core/interp/numTok.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/numTok.cmx +lib/coq-core/interp/numTok.ml +lib/coq-core/interp/numTok.mli +lib/coq-core/interp/reserve.cmi +lib/coq-core/interp/reserve.cmt +lib/coq-core/interp/reserve.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/reserve.cmx +lib/coq-core/interp/reserve.ml +lib/coq-core/interp/reserve.mli +lib/coq-core/interp/smartlocate.cmi +lib/coq-core/interp/smartlocate.cmt +lib/coq-core/interp/smartlocate.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/smartlocate.cmx +lib/coq-core/interp/smartlocate.ml +lib/coq-core/interp/smartlocate.mli +lib/coq-core/interp/stdarg.cmi +lib/coq-core/interp/stdarg.cmt +lib/coq-core/interp/stdarg.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/stdarg.cmx +lib/coq-core/interp/stdarg.ml +lib/coq-core/interp/stdarg.mli +lib/coq-core/interp/syntax_def.cmi +lib/coq-core/interp/syntax_def.cmt +lib/coq-core/interp/syntax_def.cmti +${PLIST.ocaml-opt}lib/coq-core/interp/syntax_def.cmx +lib/coq-core/interp/syntax_def.ml +lib/coq-core/interp/syntax_def.mli +lib/coq-core/kernel/cClosure.cmi +lib/coq-core/kernel/cClosure.cmt +lib/coq-core/kernel/cClosure.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/cClosure.cmx +lib/coq-core/kernel/cClosure.ml +lib/coq-core/kernel/cClosure.mli +lib/coq-core/kernel/cPrimitives.cmi +lib/coq-core/kernel/cPrimitives.cmt +lib/coq-core/kernel/cPrimitives.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/cPrimitives.cmx +lib/coq-core/kernel/cPrimitives.ml +lib/coq-core/kernel/cPrimitives.mli +lib/coq-core/kernel/constr.cmi +lib/coq-core/kernel/constr.cmt +lib/coq-core/kernel/constr.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/constr.cmx +lib/coq-core/kernel/constr.ml +lib/coq-core/kernel/constr.mli +lib/coq-core/kernel/context.cmi +lib/coq-core/kernel/context.cmt +lib/coq-core/kernel/context.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/context.cmx +lib/coq-core/kernel/context.ml +lib/coq-core/kernel/context.mli +lib/coq-core/kernel/conv_oracle.cmi +lib/coq-core/kernel/conv_oracle.cmt +lib/coq-core/kernel/conv_oracle.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/conv_oracle.cmx +lib/coq-core/kernel/conv_oracle.ml +lib/coq-core/kernel/conv_oracle.mli +lib/coq-core/kernel/cooking.cmi +lib/coq-core/kernel/cooking.cmt +lib/coq-core/kernel/cooking.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/cooking.cmx +lib/coq-core/kernel/cooking.ml +lib/coq-core/kernel/cooking.mli +lib/coq-core/kernel/declarations.cmi +lib/coq-core/kernel/declarations.cmt +${PLIST.ocaml-opt}lib/coq-core/kernel/declarations.cmx +lib/coq-core/kernel/declarations.ml +lib/coq-core/kernel/declareops.cmi +lib/coq-core/kernel/declareops.cmt +lib/coq-core/kernel/declareops.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/declareops.cmx +lib/coq-core/kernel/declareops.ml +lib/coq-core/kernel/declareops.mli +lib/coq-core/kernel/entries.cmi +lib/coq-core/kernel/entries.cmt +${PLIST.ocaml-opt}lib/coq-core/kernel/entries.cmx +lib/coq-core/kernel/entries.ml +lib/coq-core/kernel/environ.cmi +lib/coq-core/kernel/environ.cmt +lib/coq-core/kernel/environ.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/environ.cmx +lib/coq-core/kernel/environ.ml +lib/coq-core/kernel/environ.mli +lib/coq-core/kernel/esubst.cmi +lib/coq-core/kernel/esubst.cmt +lib/coq-core/kernel/esubst.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/esubst.cmx +lib/coq-core/kernel/esubst.ml +lib/coq-core/kernel/esubst.mli +lib/coq-core/kernel/evar.cmi +lib/coq-core/kernel/evar.cmt +lib/coq-core/kernel/evar.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/evar.cmx +lib/coq-core/kernel/evar.ml +lib/coq-core/kernel/evar.mli +lib/coq-core/kernel/float64.cmi +lib/coq-core/kernel/float64.cmt +lib/coq-core/kernel/float64.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/float64.cmx +lib/coq-core/kernel/float64.ml +lib/coq-core/kernel/float64.mli +lib/coq-core/kernel/float64_common.cmi +lib/coq-core/kernel/float64_common.cmt +lib/coq-core/kernel/float64_common.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/float64_common.cmx +lib/coq-core/kernel/float64_common.ml +lib/coq-core/kernel/float64_common.mli +lib/coq-core/kernel/indTyping.cmi +lib/coq-core/kernel/indTyping.cmt +lib/coq-core/kernel/indTyping.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/indTyping.cmx +lib/coq-core/kernel/indTyping.ml +lib/coq-core/kernel/indTyping.mli +lib/coq-core/kernel/indtypes.cmi +lib/coq-core/kernel/indtypes.cmt +lib/coq-core/kernel/indtypes.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/indtypes.cmx +lib/coq-core/kernel/indtypes.ml +lib/coq-core/kernel/indtypes.mli +lib/coq-core/kernel/inductive.cmi +lib/coq-core/kernel/inductive.cmt +lib/coq-core/kernel/inductive.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/inductive.cmx +lib/coq-core/kernel/inductive.ml +lib/coq-core/kernel/inductive.mli +lib/coq-core/kernel/inferCumulativity.cmi +lib/coq-core/kernel/inferCumulativity.cmt +lib/coq-core/kernel/inferCumulativity.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/inferCumulativity.cmx +lib/coq-core/kernel/inferCumulativity.ml +lib/coq-core/kernel/inferCumulativity.mli +${PLIST.ocaml-opt}lib/coq-core/kernel/kernel.a +lib/coq-core/kernel/kernel.cma +${PLIST.ocaml-opt}lib/coq-core/kernel/kernel.cmxa +${PLIST.natdynlink}lib/coq-core/kernel/kernel.cmxs +lib/coq-core/kernel/mod_subst.cmi +lib/coq-core/kernel/mod_subst.cmt +lib/coq-core/kernel/mod_subst.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/mod_subst.cmx +lib/coq-core/kernel/mod_subst.ml +lib/coq-core/kernel/mod_subst.mli +lib/coq-core/kernel/mod_typing.cmi +lib/coq-core/kernel/mod_typing.cmt +lib/coq-core/kernel/mod_typing.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/mod_typing.cmx +lib/coq-core/kernel/mod_typing.ml +lib/coq-core/kernel/mod_typing.mli +lib/coq-core/kernel/modops.cmi +lib/coq-core/kernel/modops.cmt +lib/coq-core/kernel/modops.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/modops.cmx +lib/coq-core/kernel/modops.ml +lib/coq-core/kernel/modops.mli +lib/coq-core/kernel/names.cmi +lib/coq-core/kernel/names.cmt +lib/coq-core/kernel/names.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/names.cmx +lib/coq-core/kernel/names.ml +lib/coq-core/kernel/names.mli +lib/coq-core/kernel/nativecode.cmi +lib/coq-core/kernel/nativecode.cmt +lib/coq-core/kernel/nativecode.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/nativecode.cmx +lib/coq-core/kernel/nativecode.ml +lib/coq-core/kernel/nativecode.mli +lib/coq-core/kernel/nativeconv.cmi +lib/coq-core/kernel/nativeconv.cmt +lib/coq-core/kernel/nativeconv.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/nativeconv.cmx +lib/coq-core/kernel/nativeconv.ml +lib/coq-core/kernel/nativeconv.mli +lib/coq-core/kernel/nativelambda.cmi +lib/coq-core/kernel/nativelambda.cmt +lib/coq-core/kernel/nativelambda.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/nativelambda.cmx +lib/coq-core/kernel/nativelambda.ml +lib/coq-core/kernel/nativelambda.mli +lib/coq-core/kernel/nativelib.cmi +lib/coq-core/kernel/nativelib.cmt +lib/coq-core/kernel/nativelib.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/nativelib.cmx +lib/coq-core/kernel/nativelib.ml +lib/coq-core/kernel/nativelib.mli +lib/coq-core/kernel/nativelibrary.cmi +lib/coq-core/kernel/nativelibrary.cmt +lib/coq-core/kernel/nativelibrary.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/nativelibrary.cmx +lib/coq-core/kernel/nativelibrary.ml +lib/coq-core/kernel/nativelibrary.mli +lib/coq-core/kernel/nativevalues.cmi +lib/coq-core/kernel/nativevalues.cmt +lib/coq-core/kernel/nativevalues.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/nativevalues.cmx +lib/coq-core/kernel/nativevalues.ml +lib/coq-core/kernel/nativevalues.mli +lib/coq-core/kernel/opaqueproof.cmi +lib/coq-core/kernel/opaqueproof.cmt +lib/coq-core/kernel/opaqueproof.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/opaqueproof.cmx +lib/coq-core/kernel/opaqueproof.ml +lib/coq-core/kernel/opaqueproof.mli +lib/coq-core/kernel/parray.cmi +lib/coq-core/kernel/parray.cmt +lib/coq-core/kernel/parray.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/parray.cmx +lib/coq-core/kernel/parray.ml +lib/coq-core/kernel/parray.mli +lib/coq-core/kernel/primred.cmi +lib/coq-core/kernel/primred.cmt +lib/coq-core/kernel/primred.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/primred.cmx +lib/coq-core/kernel/primred.ml +lib/coq-core/kernel/primred.mli +lib/coq-core/kernel/reduction.cmi +lib/coq-core/kernel/reduction.cmt +lib/coq-core/kernel/reduction.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/reduction.cmx +lib/coq-core/kernel/reduction.ml +lib/coq-core/kernel/reduction.mli +lib/coq-core/kernel/relevanceops.cmi +lib/coq-core/kernel/relevanceops.cmt +lib/coq-core/kernel/relevanceops.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/relevanceops.cmx +lib/coq-core/kernel/relevanceops.ml +lib/coq-core/kernel/relevanceops.mli +lib/coq-core/kernel/retroknowledge.cmi +lib/coq-core/kernel/retroknowledge.cmt +lib/coq-core/kernel/retroknowledge.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/retroknowledge.cmx +lib/coq-core/kernel/retroknowledge.ml +lib/coq-core/kernel/retroknowledge.mli +lib/coq-core/kernel/safe_typing.cmi +lib/coq-core/kernel/safe_typing.cmt +lib/coq-core/kernel/safe_typing.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/safe_typing.cmx +lib/coq-core/kernel/safe_typing.ml +lib/coq-core/kernel/safe_typing.mli +lib/coq-core/kernel/section.cmi +lib/coq-core/kernel/section.cmt +lib/coq-core/kernel/section.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/section.cmx +lib/coq-core/kernel/section.ml +lib/coq-core/kernel/section.mli +lib/coq-core/kernel/sorts.cmi +lib/coq-core/kernel/sorts.cmt +lib/coq-core/kernel/sorts.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/sorts.cmx +lib/coq-core/kernel/sorts.ml +lib/coq-core/kernel/sorts.mli +lib/coq-core/kernel/subtyping.cmi +lib/coq-core/kernel/subtyping.cmt +lib/coq-core/kernel/subtyping.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/subtyping.cmx +lib/coq-core/kernel/subtyping.ml +lib/coq-core/kernel/subtyping.mli +lib/coq-core/kernel/term.cmi +lib/coq-core/kernel/term.cmt +lib/coq-core/kernel/term.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/term.cmx +lib/coq-core/kernel/term.ml +lib/coq-core/kernel/term.mli +lib/coq-core/kernel/term_typing.cmi +lib/coq-core/kernel/term_typing.cmt +lib/coq-core/kernel/term_typing.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/term_typing.cmx +lib/coq-core/kernel/term_typing.ml +lib/coq-core/kernel/term_typing.mli +lib/coq-core/kernel/transparentState.cmi +lib/coq-core/kernel/transparentState.cmt +lib/coq-core/kernel/transparentState.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/transparentState.cmx +lib/coq-core/kernel/transparentState.ml +lib/coq-core/kernel/transparentState.mli +lib/coq-core/kernel/type_errors.cmi +lib/coq-core/kernel/type_errors.cmt +lib/coq-core/kernel/type_errors.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/type_errors.cmx +lib/coq-core/kernel/type_errors.ml +lib/coq-core/kernel/type_errors.mli +lib/coq-core/kernel/typeops.cmi +lib/coq-core/kernel/typeops.cmt +lib/coq-core/kernel/typeops.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/typeops.cmx +lib/coq-core/kernel/typeops.ml +lib/coq-core/kernel/typeops.mli +lib/coq-core/kernel/uGraph.cmi +lib/coq-core/kernel/uGraph.cmt +lib/coq-core/kernel/uGraph.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/uGraph.cmx +lib/coq-core/kernel/uGraph.ml +lib/coq-core/kernel/uGraph.mli +lib/coq-core/kernel/uint63.cmi +lib/coq-core/kernel/uint63.cmt +lib/coq-core/kernel/uint63.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/uint63.cmx +lib/coq-core/kernel/uint63.ml +lib/coq-core/kernel/uint63.mli +lib/coq-core/kernel/univ.cmi +lib/coq-core/kernel/univ.cmt +lib/coq-core/kernel/univ.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/univ.cmx +lib/coq-core/kernel/univ.ml +lib/coq-core/kernel/univ.mli +lib/coq-core/kernel/vars.cmi +lib/coq-core/kernel/vars.cmt +lib/coq-core/kernel/vars.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vars.cmx +lib/coq-core/kernel/vars.ml +lib/coq-core/kernel/vars.mli +lib/coq-core/kernel/vconv.cmi +lib/coq-core/kernel/vconv.cmt +lib/coq-core/kernel/vconv.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vconv.cmx +lib/coq-core/kernel/vconv.ml +lib/coq-core/kernel/vconv.mli +lib/coq-core/kernel/vm.cmi +lib/coq-core/kernel/vm.cmt +lib/coq-core/kernel/vm.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vm.cmx +lib/coq-core/kernel/vm.ml +lib/coq-core/kernel/vm.mli +lib/coq-core/kernel/vmbytecodes.cmi +lib/coq-core/kernel/vmbytecodes.cmt +lib/coq-core/kernel/vmbytecodes.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vmbytecodes.cmx +lib/coq-core/kernel/vmbytecodes.ml +lib/coq-core/kernel/vmbytecodes.mli +lib/coq-core/kernel/vmbytegen.cmi +lib/coq-core/kernel/vmbytegen.cmt +lib/coq-core/kernel/vmbytegen.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vmbytegen.cmx +lib/coq-core/kernel/vmbytegen.ml +lib/coq-core/kernel/vmbytegen.mli +lib/coq-core/kernel/vmemitcodes.cmi +lib/coq-core/kernel/vmemitcodes.cmt +lib/coq-core/kernel/vmemitcodes.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vmemitcodes.cmx +lib/coq-core/kernel/vmemitcodes.ml +lib/coq-core/kernel/vmemitcodes.mli +lib/coq-core/kernel/vmlambda.cmi +lib/coq-core/kernel/vmlambda.cmt +lib/coq-core/kernel/vmlambda.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vmlambda.cmx +lib/coq-core/kernel/vmlambda.ml +lib/coq-core/kernel/vmlambda.mli +lib/coq-core/kernel/vmopcodes.cmi +lib/coq-core/kernel/vmopcodes.cmt +${PLIST.ocaml-opt}lib/coq-core/kernel/vmopcodes.cmx +lib/coq-core/kernel/vmopcodes.ml +lib/coq-core/kernel/vmsymtable.cmi +lib/coq-core/kernel/vmsymtable.cmt +lib/coq-core/kernel/vmsymtable.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vmsymtable.cmx +lib/coq-core/kernel/vmsymtable.ml +lib/coq-core/kernel/vmsymtable.mli +lib/coq-core/kernel/vmvalues.cmi +lib/coq-core/kernel/vmvalues.cmt +lib/coq-core/kernel/vmvalues.cmti +${PLIST.ocaml-opt}lib/coq-core/kernel/vmvalues.cmx +lib/coq-core/kernel/vmvalues.ml +lib/coq-core/kernel/vmvalues.mli +lib/coq-core/lib/acyclicGraph.cmi +lib/coq-core/lib/acyclicGraph.cmt +lib/coq-core/lib/acyclicGraph.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/acyclicGraph.cmx +lib/coq-core/lib/acyclicGraph.ml +lib/coq-core/lib/acyclicGraph.mli +lib/coq-core/lib/aux_file.cmi +lib/coq-core/lib/aux_file.cmt +lib/coq-core/lib/aux_file.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/aux_file.cmx +lib/coq-core/lib/aux_file.ml +lib/coq-core/lib/aux_file.mli +lib/coq-core/lib/cAst.cmi +lib/coq-core/lib/cAst.cmt +lib/coq-core/lib/cAst.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/cAst.cmx +lib/coq-core/lib/cAst.ml +lib/coq-core/lib/cAst.mli +lib/coq-core/lib/cDebug.cmi +lib/coq-core/lib/cDebug.cmt +lib/coq-core/lib/cDebug.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/cDebug.cmx +lib/coq-core/lib/cDebug.ml +lib/coq-core/lib/cDebug.mli +lib/coq-core/lib/cErrors.cmi +lib/coq-core/lib/cErrors.cmt +lib/coq-core/lib/cErrors.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/cErrors.cmx +lib/coq-core/lib/cErrors.ml +lib/coq-core/lib/cErrors.mli +lib/coq-core/lib/cProfile.cmi +lib/coq-core/lib/cProfile.cmt +lib/coq-core/lib/cProfile.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/cProfile.cmx +lib/coq-core/lib/cProfile.ml +lib/coq-core/lib/cProfile.mli +lib/coq-core/lib/cWarnings.cmi +lib/coq-core/lib/cWarnings.cmt +lib/coq-core/lib/cWarnings.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/cWarnings.cmx +lib/coq-core/lib/cWarnings.ml +lib/coq-core/lib/cWarnings.mli +lib/coq-core/lib/control.cmi +lib/coq-core/lib/control.cmt +lib/coq-core/lib/control.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/control.cmx +lib/coq-core/lib/control.ml +lib/coq-core/lib/control.mli +lib/coq-core/lib/coqProject_file.cmi +lib/coq-core/lib/coqProject_file.cmt +lib/coq-core/lib/coqProject_file.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/coqProject_file.cmx +lib/coq-core/lib/coqProject_file.ml +lib/coq-core/lib/coqProject_file.mli +lib/coq-core/lib/dAst.cmi +lib/coq-core/lib/dAst.cmt +lib/coq-core/lib/dAst.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/dAst.cmx +lib/coq-core/lib/dAst.ml +lib/coq-core/lib/dAst.mli +lib/coq-core/lib/envars.cmi +lib/coq-core/lib/envars.cmt +lib/coq-core/lib/envars.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/envars.cmx +lib/coq-core/lib/envars.ml +lib/coq-core/lib/envars.mli +lib/coq-core/lib/explore.cmi +lib/coq-core/lib/explore.cmt +lib/coq-core/lib/explore.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/explore.cmx +lib/coq-core/lib/explore.ml +lib/coq-core/lib/explore.mli +lib/coq-core/lib/feedback.cmi +lib/coq-core/lib/feedback.cmt +lib/coq-core/lib/feedback.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/feedback.cmx +lib/coq-core/lib/feedback.ml +lib/coq-core/lib/feedback.mli +lib/coq-core/lib/flags.cmi +lib/coq-core/lib/flags.cmt +lib/coq-core/lib/flags.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/flags.cmx +lib/coq-core/lib/flags.ml +lib/coq-core/lib/flags.mli +lib/coq-core/lib/genarg.cmi +lib/coq-core/lib/genarg.cmt +lib/coq-core/lib/genarg.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/genarg.cmx +lib/coq-core/lib/genarg.ml +lib/coq-core/lib/genarg.mli +lib/coq-core/lib/hook.cmi +lib/coq-core/lib/hook.cmt +lib/coq-core/lib/hook.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/hook.cmx +lib/coq-core/lib/hook.ml +lib/coq-core/lib/hook.mli +lib/coq-core/lib/lStream.cmi +lib/coq-core/lib/lStream.cmt +lib/coq-core/lib/lStream.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/lStream.cmx +lib/coq-core/lib/lStream.ml +lib/coq-core/lib/lStream.mli +${PLIST.ocaml-opt}lib/coq-core/lib/lib.a +lib/coq-core/lib/lib.cma +${PLIST.ocaml-opt}lib/coq-core/lib/lib.cmxa +${PLIST.natdynlink}lib/coq-core/lib/lib.cmxs +lib/coq-core/lib/loc.cmi +lib/coq-core/lib/loc.cmt +lib/coq-core/lib/loc.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/loc.cmx +lib/coq-core/lib/loc.ml +lib/coq-core/lib/loc.mli +lib/coq-core/lib/objFile.cmi +lib/coq-core/lib/objFile.cmt +lib/coq-core/lib/objFile.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/objFile.cmx +lib/coq-core/lib/objFile.ml +lib/coq-core/lib/objFile.mli +lib/coq-core/lib/pp.cmi +lib/coq-core/lib/pp.cmt +lib/coq-core/lib/pp.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/pp.cmx +lib/coq-core/lib/pp.ml +lib/coq-core/lib/pp.mli +lib/coq-core/lib/pp_diff.cmi +lib/coq-core/lib/pp_diff.cmt +lib/coq-core/lib/pp_diff.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/pp_diff.cmx +lib/coq-core/lib/pp_diff.ml +lib/coq-core/lib/pp_diff.mli +lib/coq-core/lib/rtree.cmi +lib/coq-core/lib/rtree.cmt +lib/coq-core/lib/rtree.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/rtree.cmx +lib/coq-core/lib/rtree.ml +lib/coq-core/lib/rtree.mli +lib/coq-core/lib/spawn.cmi +lib/coq-core/lib/spawn.cmt +lib/coq-core/lib/spawn.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/spawn.cmx +lib/coq-core/lib/spawn.ml +lib/coq-core/lib/spawn.mli +lib/coq-core/lib/stateid.cmi +lib/coq-core/lib/stateid.cmt +lib/coq-core/lib/stateid.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/stateid.cmx +lib/coq-core/lib/stateid.ml +lib/coq-core/lib/stateid.mli +lib/coq-core/lib/system.cmi +lib/coq-core/lib/system.cmt +lib/coq-core/lib/system.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/system.cmx +lib/coq-core/lib/system.ml +lib/coq-core/lib/system.mli +lib/coq-core/lib/util.cmi +lib/coq-core/lib/util.cmt +lib/coq-core/lib/util.cmti +${PLIST.ocaml-opt}lib/coq-core/lib/util.cmx +lib/coq-core/lib/util.ml +lib/coq-core/lib/util.mli +lib/coq-core/lib/xml_datatype.cmi +lib/coq-core/lib/xml_datatype.cmti +lib/coq-core/lib/xml_datatype.mli +lib/coq-core/library/coqlib.cmi +lib/coq-core/library/coqlib.cmt +lib/coq-core/library/coqlib.cmti +${PLIST.ocaml-opt}lib/coq-core/library/coqlib.cmx +lib/coq-core/library/coqlib.ml +lib/coq-core/library/coqlib.mli +lib/coq-core/library/global.cmi +lib/coq-core/library/global.cmt +lib/coq-core/library/global.cmti +${PLIST.ocaml-opt}lib/coq-core/library/global.cmx +lib/coq-core/library/global.ml +lib/coq-core/library/global.mli +lib/coq-core/library/globnames.cmi +lib/coq-core/library/globnames.cmt +lib/coq-core/library/globnames.cmti +${PLIST.ocaml-opt}lib/coq-core/library/globnames.cmx +lib/coq-core/library/globnames.ml +lib/coq-core/library/globnames.mli +lib/coq-core/library/goptions.cmi +lib/coq-core/library/goptions.cmt +lib/coq-core/library/goptions.cmti +${PLIST.ocaml-opt}lib/coq-core/library/goptions.cmx +lib/coq-core/library/goptions.ml +lib/coq-core/library/goptions.mli +lib/coq-core/library/lib.cmi +lib/coq-core/library/lib.cmt +lib/coq-core/library/lib.cmti +${PLIST.ocaml-opt}lib/coq-core/library/lib.cmx +lib/coq-core/library/lib.ml +lib/coq-core/library/lib.mli +lib/coq-core/library/libnames.cmi +lib/coq-core/library/libnames.cmt +lib/coq-core/library/libnames.cmti +${PLIST.ocaml-opt}lib/coq-core/library/libnames.cmx +lib/coq-core/library/libnames.ml +lib/coq-core/library/libnames.mli +lib/coq-core/library/libobject.cmi +lib/coq-core/library/libobject.cmt +lib/coq-core/library/libobject.cmti +${PLIST.ocaml-opt}lib/coq-core/library/libobject.cmx +lib/coq-core/library/libobject.ml +lib/coq-core/library/libobject.mli +${PLIST.ocaml-opt}lib/coq-core/library/library.a +lib/coq-core/library/library.cma +${PLIST.ocaml-opt}lib/coq-core/library/library.cmxa +${PLIST.natdynlink}lib/coq-core/library/library.cmxs +lib/coq-core/library/nametab.cmi +lib/coq-core/library/nametab.cmt +lib/coq-core/library/nametab.cmti +${PLIST.ocaml-opt}lib/coq-core/library/nametab.cmx +lib/coq-core/library/nametab.ml +lib/coq-core/library/nametab.mli +lib/coq-core/library/summary.cmi +lib/coq-core/library/summary.cmt +lib/coq-core/library/summary.cmti +${PLIST.ocaml-opt}lib/coq-core/library/summary.cmx +lib/coq-core/library/summary.ml +lib/coq-core/library/summary.mli +lib/coq-core/opam +lib/coq-core/parsing/cLexer.cmi +lib/coq-core/parsing/cLexer.cmt +lib/coq-core/parsing/cLexer.cmti +${PLIST.ocaml-opt}lib/coq-core/parsing/cLexer.cmx +lib/coq-core/parsing/cLexer.ml +lib/coq-core/parsing/cLexer.mli +lib/coq-core/parsing/extend.cmi +lib/coq-core/parsing/extend.cmt +lib/coq-core/parsing/extend.cmti +${PLIST.ocaml-opt}lib/coq-core/parsing/extend.cmx +lib/coq-core/parsing/extend.ml +lib/coq-core/parsing/extend.mli +lib/coq-core/parsing/g_constr.cmi +lib/coq-core/parsing/g_constr.cmt +${PLIST.ocaml-opt}lib/coq-core/parsing/g_constr.cmx +lib/coq-core/parsing/g_constr.ml +lib/coq-core/parsing/g_prim.cmi +lib/coq-core/parsing/g_prim.cmt +${PLIST.ocaml-opt}lib/coq-core/parsing/g_prim.cmx +lib/coq-core/parsing/g_prim.ml +lib/coq-core/parsing/notation_gram.cmi +lib/coq-core/parsing/notation_gram.cmt +${PLIST.ocaml-opt}lib/coq-core/parsing/notation_gram.cmx +lib/coq-core/parsing/notation_gram.ml +lib/coq-core/parsing/notgram_ops.cmi +lib/coq-core/parsing/notgram_ops.cmt +lib/coq-core/parsing/notgram_ops.cmti +${PLIST.ocaml-opt}lib/coq-core/parsing/notgram_ops.cmx +lib/coq-core/parsing/notgram_ops.ml +lib/coq-core/parsing/notgram_ops.mli +${PLIST.ocaml-opt}lib/coq-core/parsing/parsing.a +lib/coq-core/parsing/parsing.cma +${PLIST.ocaml-opt}lib/coq-core/parsing/parsing.cmxa +${PLIST.natdynlink}lib/coq-core/parsing/parsing.cmxs +lib/coq-core/parsing/pcoq.cmi +lib/coq-core/parsing/pcoq.cmt +lib/coq-core/parsing/pcoq.cmti +${PLIST.ocaml-opt}lib/coq-core/parsing/pcoq.cmx +lib/coq-core/parsing/pcoq.ml +lib/coq-core/parsing/pcoq.mli +lib/coq-core/parsing/tok.cmi +lib/coq-core/parsing/tok.cmt +lib/coq-core/parsing/tok.cmti +${PLIST.ocaml-opt}lib/coq-core/parsing/tok.cmx +lib/coq-core/parsing/tok.ml +lib/coq-core/parsing/tok.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/btauto/btauto_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/btauto/btauto_plugin.a +lib/coq-core/plugins/btauto/btauto_plugin.cma +lib/coq-core/plugins/btauto/btauto_plugin.cmi +lib/coq-core/plugins/btauto/btauto_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/btauto/btauto_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/btauto/btauto_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/btauto/btauto_plugin.cmxs +lib/coq-core/plugins/btauto/btauto_plugin.ml +lib/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmi +lib/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/btauto/btauto_plugin__G_btauto.cmx +lib/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmi +lib/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmt +lib/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/btauto/btauto_plugin__Refl_btauto.cmx +lib/coq-core/plugins/btauto/g_btauto.ml +lib/coq-core/plugins/btauto/refl_btauto.ml +lib/coq-core/plugins/btauto/refl_btauto.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin.a +lib/coq-core/plugins/cc/cc_plugin.cma +lib/coq-core/plugins/cc/cc_plugin.cmi +lib/coq-core/plugins/cc/cc_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/cc/cc_plugin.cmxs +lib/coq-core/plugins/cc/cc_plugin.ml +lib/coq-core/plugins/cc/cc_plugin__Ccalgo.cmi +lib/coq-core/plugins/cc/cc_plugin__Ccalgo.cmt +lib/coq-core/plugins/cc/cc_plugin__Ccalgo.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin__Ccalgo.cmx +lib/coq-core/plugins/cc/cc_plugin__Ccproof.cmi +lib/coq-core/plugins/cc/cc_plugin__Ccproof.cmt +lib/coq-core/plugins/cc/cc_plugin__Ccproof.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin__Ccproof.cmx +lib/coq-core/plugins/cc/cc_plugin__Cctac.cmi +lib/coq-core/plugins/cc/cc_plugin__Cctac.cmt +lib/coq-core/plugins/cc/cc_plugin__Cctac.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin__Cctac.cmx +lib/coq-core/plugins/cc/cc_plugin__G_congruence.cmi +lib/coq-core/plugins/cc/cc_plugin__G_congruence.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/cc/cc_plugin__G_congruence.cmx +lib/coq-core/plugins/cc/ccalgo.ml +lib/coq-core/plugins/cc/ccalgo.mli +lib/coq-core/plugins/cc/ccproof.ml +lib/coq-core/plugins/cc/ccproof.mli +lib/coq-core/plugins/cc/cctac.ml +lib/coq-core/plugins/cc/cctac.mli +lib/coq-core/plugins/cc/g_congruence.ml +lib/coq-core/plugins/derive/derive.ml +lib/coq-core/plugins/derive/derive.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/derive/derive_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/derive/derive_plugin.a +lib/coq-core/plugins/derive/derive_plugin.cma +lib/coq-core/plugins/derive/derive_plugin.cmi +lib/coq-core/plugins/derive/derive_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/derive/derive_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/derive/derive_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/derive/derive_plugin.cmxs +lib/coq-core/plugins/derive/derive_plugin.ml +lib/coq-core/plugins/derive/derive_plugin__Derive.cmi +lib/coq-core/plugins/derive/derive_plugin__Derive.cmt +lib/coq-core/plugins/derive/derive_plugin__Derive.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/derive/derive_plugin__Derive.cmx +lib/coq-core/plugins/derive/derive_plugin__G_derive.cmi +lib/coq-core/plugins/derive/derive_plugin__G_derive.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/derive/derive_plugin__G_derive.cmx +lib/coq-core/plugins/derive/g_derive.ml +lib/coq-core/plugins/extraction/common.ml +lib/coq-core/plugins/extraction/common.mli +lib/coq-core/plugins/extraction/extract_env.ml +lib/coq-core/plugins/extraction/extract_env.mli +lib/coq-core/plugins/extraction/extraction.ml +lib/coq-core/plugins/extraction/extraction.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin.a +lib/coq-core/plugins/extraction/extraction_plugin.cma +lib/coq-core/plugins/extraction/extraction_plugin.cmi +lib/coq-core/plugins/extraction/extraction_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/extraction/extraction_plugin.cmxs +lib/coq-core/plugins/extraction/extraction_plugin.ml +lib/coq-core/plugins/extraction/extraction_plugin__Common.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Common.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Common.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Common.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Extract_env.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Extraction.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Extraction.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Extraction.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Extraction.cmx +lib/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmi +lib/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__G_extraction.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Haskell.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Haskell.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Haskell.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Haskell.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Json.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Json.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Json.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Json.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Miniml.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Miniml.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Miniml.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Miniml.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Mlutil.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Modutil.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Modutil.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Modutil.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Modutil.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Ocaml.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Scheme.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Scheme.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Scheme.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Scheme.cmx +lib/coq-core/plugins/extraction/extraction_plugin__Table.cmi +lib/coq-core/plugins/extraction/extraction_plugin__Table.cmt +lib/coq-core/plugins/extraction/extraction_plugin__Table.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/extraction/extraction_plugin__Table.cmx +lib/coq-core/plugins/extraction/g_extraction.ml +lib/coq-core/plugins/extraction/haskell.ml +lib/coq-core/plugins/extraction/haskell.mli +lib/coq-core/plugins/extraction/json.ml +lib/coq-core/plugins/extraction/json.mli +lib/coq-core/plugins/extraction/miniml.ml +lib/coq-core/plugins/extraction/miniml.mli +lib/coq-core/plugins/extraction/mlutil.ml +lib/coq-core/plugins/extraction/mlutil.mli +lib/coq-core/plugins/extraction/modutil.ml +lib/coq-core/plugins/extraction/modutil.mli +lib/coq-core/plugins/extraction/ocaml.ml +lib/coq-core/plugins/extraction/ocaml.mli +lib/coq-core/plugins/extraction/scheme.ml +lib/coq-core/plugins/extraction/scheme.mli +lib/coq-core/plugins/extraction/table.ml +lib/coq-core/plugins/extraction/table.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin.a +lib/coq-core/plugins/firstorder/firstorder_plugin.cma +lib/coq-core/plugins/firstorder/firstorder_plugin.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/firstorder/firstorder_plugin.cmxs +lib/coq-core/plugins/firstorder/firstorder_plugin.ml +lib/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmt +lib/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__Formula.cmx +lib/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__G_ground.cmx +lib/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmt +lib/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__Ground.cmx +lib/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmt +lib/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__Instances.cmx +lib/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmt +lib/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__Rules.cmx +lib/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmt +lib/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__Sequent.cmx +lib/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmi +lib/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmt +lib/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/firstorder/firstorder_plugin__Unify.cmx +lib/coq-core/plugins/firstorder/formula.ml +lib/coq-core/plugins/firstorder/formula.mli +lib/coq-core/plugins/firstorder/g_ground.ml +lib/coq-core/plugins/firstorder/ground.ml +lib/coq-core/plugins/firstorder/ground.mli +lib/coq-core/plugins/firstorder/instances.ml +lib/coq-core/plugins/firstorder/instances.mli +lib/coq-core/plugins/firstorder/rules.ml +lib/coq-core/plugins/firstorder/rules.mli +lib/coq-core/plugins/firstorder/sequent.ml +lib/coq-core/plugins/firstorder/sequent.mli +lib/coq-core/plugins/firstorder/unify.ml +lib/coq-core/plugins/firstorder/unify.mli +lib/coq-core/plugins/funind/functional_principles_proofs.ml +lib/coq-core/plugins/funind/functional_principles_proofs.mli +lib/coq-core/plugins/funind/functional_principles_types.ml +lib/coq-core/plugins/funind/functional_principles_types.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin.a +lib/coq-core/plugins/funind/funind_plugin.cma +lib/coq-core/plugins/funind/funind_plugin.cmi +lib/coq-core/plugins/funind/funind_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/funind/funind_plugin.cmxs +lib/coq-core/plugins/funind/funind_plugin.ml +lib/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmi +lib/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmt +lib/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Functional_principles_proofs.cmx +lib/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmi +lib/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmt +lib/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Functional_principles_types.cmx +lib/coq-core/plugins/funind/funind_plugin__G_indfun.cmi +lib/coq-core/plugins/funind/funind_plugin__G_indfun.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__G_indfun.cmx +lib/coq-core/plugins/funind/funind_plugin__Gen_principle.cmi +lib/coq-core/plugins/funind/funind_plugin__Gen_principle.cmt +lib/coq-core/plugins/funind/funind_plugin__Gen_principle.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Gen_principle.cmx +lib/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmi +lib/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmt +lib/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Glob_term_to_relation.cmx +lib/coq-core/plugins/funind/funind_plugin__Glob_termops.cmi +lib/coq-core/plugins/funind/funind_plugin__Glob_termops.cmt +lib/coq-core/plugins/funind/funind_plugin__Glob_termops.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Glob_termops.cmx +lib/coq-core/plugins/funind/funind_plugin__Indfun.cmi +lib/coq-core/plugins/funind/funind_plugin__Indfun.cmt +lib/coq-core/plugins/funind/funind_plugin__Indfun.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Indfun.cmx +lib/coq-core/plugins/funind/funind_plugin__Indfun_common.cmi +lib/coq-core/plugins/funind/funind_plugin__Indfun_common.cmt +lib/coq-core/plugins/funind/funind_plugin__Indfun_common.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Indfun_common.cmx +lib/coq-core/plugins/funind/funind_plugin__Invfun.cmi +lib/coq-core/plugins/funind/funind_plugin__Invfun.cmt +lib/coq-core/plugins/funind/funind_plugin__Invfun.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Invfun.cmx +lib/coq-core/plugins/funind/funind_plugin__Recdef.cmi +lib/coq-core/plugins/funind/funind_plugin__Recdef.cmt +lib/coq-core/plugins/funind/funind_plugin__Recdef.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/funind/funind_plugin__Recdef.cmx +lib/coq-core/plugins/funind/g_indfun.ml +lib/coq-core/plugins/funind/gen_principle.ml +lib/coq-core/plugins/funind/gen_principle.mli +lib/coq-core/plugins/funind/glob_term_to_relation.ml +lib/coq-core/plugins/funind/glob_term_to_relation.mli +lib/coq-core/plugins/funind/glob_termops.ml +lib/coq-core/plugins/funind/glob_termops.mli +lib/coq-core/plugins/funind/indfun.ml +lib/coq-core/plugins/funind/indfun.mli +lib/coq-core/plugins/funind/indfun_common.ml +lib/coq-core/plugins/funind/indfun_common.mli +lib/coq-core/plugins/funind/invfun.ml +lib/coq-core/plugins/funind/invfun.mli +lib/coq-core/plugins/funind/recdef.ml +lib/coq-core/plugins/funind/recdef.mli +lib/coq-core/plugins/ltac/coretactics.ml +lib/coq-core/plugins/ltac/evar_tactics.ml +lib/coq-core/plugins/ltac/evar_tactics.mli +lib/coq-core/plugins/ltac/extraargs.ml +lib/coq-core/plugins/ltac/extraargs.mli +lib/coq-core/plugins/ltac/extratactics.ml +lib/coq-core/plugins/ltac/extratactics.mli +lib/coq-core/plugins/ltac/g_auto.ml +lib/coq-core/plugins/ltac/g_class.ml +lib/coq-core/plugins/ltac/g_eqdecide.ml +lib/coq-core/plugins/ltac/g_ltac.ml +lib/coq-core/plugins/ltac/g_obligations.ml +lib/coq-core/plugins/ltac/g_rewrite.ml +lib/coq-core/plugins/ltac/g_tactic.ml +lib/coq-core/plugins/ltac/internals.ml +lib/coq-core/plugins/ltac/internals.mli +lib/coq-core/plugins/ltac/leminv.ml +lib/coq-core/plugins/ltac/leminv.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin.a +lib/coq-core/plugins/ltac/ltac_plugin.cma +lib/coq-core/plugins/ltac/ltac_plugin.cmi +lib/coq-core/plugins/ltac/ltac_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/ltac/ltac_plugin.cmxs +lib/coq-core/plugins/ltac/ltac_plugin.ml +lib/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Coretactics.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Evar_tactics.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Evar_tactics.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Evar_tactics.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Evar_tactics.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Extraargs.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Extratactics.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_auto.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_auto.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_auto.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_class.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_class.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_class.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_eqdecide.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_ltac.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_obligations.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_rewrite.cmx +lib/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmi +lib/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__G_tactic.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Internals.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Internals.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Internals.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Internals.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Leminv.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Leminv.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Leminv.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Leminv.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Pltac.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Pltac.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Pltac.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Pltac.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Pptactic.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Profile_ltac_tactics.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Rewrite.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Rewrite.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Rewrite.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Rewrite.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacarg.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Taccoerce.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacentries.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacenv.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacexpr.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacintern.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacinterp.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tacsubst.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tactic_debug.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tactic_matching.cmx +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmi +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmt +lib/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac/ltac_plugin__Tactic_option.cmx +lib/coq-core/plugins/ltac/pltac.ml +lib/coq-core/plugins/ltac/pltac.mli +lib/coq-core/plugins/ltac/pptactic.ml +lib/coq-core/plugins/ltac/pptactic.mli +lib/coq-core/plugins/ltac/profile_ltac.ml +lib/coq-core/plugins/ltac/profile_ltac.mli +lib/coq-core/plugins/ltac/profile_ltac_tactics.ml +lib/coq-core/plugins/ltac/rewrite.ml +lib/coq-core/plugins/ltac/rewrite.mli +lib/coq-core/plugins/ltac/tacarg.ml +lib/coq-core/plugins/ltac/tacarg.mli +lib/coq-core/plugins/ltac/taccoerce.ml +lib/coq-core/plugins/ltac/taccoerce.mli +lib/coq-core/plugins/ltac/tacentries.ml +lib/coq-core/plugins/ltac/tacentries.mli +lib/coq-core/plugins/ltac/tacenv.ml +lib/coq-core/plugins/ltac/tacenv.mli +lib/coq-core/plugins/ltac/tacexpr.ml +lib/coq-core/plugins/ltac/tacexpr.mli +lib/coq-core/plugins/ltac/tacintern.ml +lib/coq-core/plugins/ltac/tacintern.mli +lib/coq-core/plugins/ltac/tacinterp.ml +lib/coq-core/plugins/ltac/tacinterp.mli +lib/coq-core/plugins/ltac/tacsubst.ml +lib/coq-core/plugins/ltac/tacsubst.mli +lib/coq-core/plugins/ltac/tactic_debug.ml +lib/coq-core/plugins/ltac/tactic_debug.mli +lib/coq-core/plugins/ltac/tactic_matching.ml +lib/coq-core/plugins/ltac/tactic_matching.mli +lib/coq-core/plugins/ltac/tactic_option.ml +lib/coq-core/plugins/ltac/tactic_option.mli +lib/coq-core/plugins/ltac2/g_ltac2.ml +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin.a +lib/coq-core/plugins/ltac2/ltac2_plugin.cma +lib/coq-core/plugins/ltac2/ltac2_plugin.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/ltac2/ltac2_plugin.cmxs +lib/coq-core/plugins/ltac2/ltac2_plugin.ml +lib/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__G_ltac2.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2core.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2dyn.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2entries.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2env.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2expr.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2expr.cmti +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2extffi.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2ffi.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2intern.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2interp.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2match.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2print.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2qexpr.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2qexpr.cmti +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2quote.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2stdlib.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmt +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2tactics.cmx +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2types.cmi +lib/coq-core/plugins/ltac2/ltac2_plugin__Tac2types.cmti +lib/coq-core/plugins/ltac2/tac2core.ml +lib/coq-core/plugins/ltac2/tac2core.mli +lib/coq-core/plugins/ltac2/tac2dyn.ml +lib/coq-core/plugins/ltac2/tac2dyn.mli +lib/coq-core/plugins/ltac2/tac2entries.ml +lib/coq-core/plugins/ltac2/tac2entries.mli +lib/coq-core/plugins/ltac2/tac2env.ml +lib/coq-core/plugins/ltac2/tac2env.mli +lib/coq-core/plugins/ltac2/tac2expr.mli +lib/coq-core/plugins/ltac2/tac2extffi.ml +lib/coq-core/plugins/ltac2/tac2extffi.mli +lib/coq-core/plugins/ltac2/tac2ffi.ml +lib/coq-core/plugins/ltac2/tac2ffi.mli +lib/coq-core/plugins/ltac2/tac2intern.ml +lib/coq-core/plugins/ltac2/tac2intern.mli +lib/coq-core/plugins/ltac2/tac2interp.ml +lib/coq-core/plugins/ltac2/tac2interp.mli +lib/coq-core/plugins/ltac2/tac2match.ml +lib/coq-core/plugins/ltac2/tac2match.mli +lib/coq-core/plugins/ltac2/tac2print.ml +lib/coq-core/plugins/ltac2/tac2print.mli +lib/coq-core/plugins/ltac2/tac2qexpr.mli +lib/coq-core/plugins/ltac2/tac2quote.ml +lib/coq-core/plugins/ltac2/tac2quote.mli +lib/coq-core/plugins/ltac2/tac2stdlib.ml +lib/coq-core/plugins/ltac2/tac2stdlib.mli +lib/coq-core/plugins/ltac2/tac2tactics.ml +lib/coq-core/plugins/ltac2/tac2tactics.mli +lib/coq-core/plugins/ltac2/tac2types.mli +lib/coq-core/plugins/micromega/certificate.ml +lib/coq-core/plugins/micromega/certificate.mli +lib/coq-core/plugins/micromega/coq_micromega.ml +lib/coq-core/plugins/micromega/coq_micromega.mli +lib/coq-core/plugins/micromega/g_micromega.ml +lib/coq-core/plugins/micromega/g_micromega.mli +lib/coq-core/plugins/micromega/itv.ml +lib/coq-core/plugins/micromega/itv.mli +lib/coq-core/plugins/micromega/mfourier.ml +lib/coq-core/plugins/micromega/mfourier.mli +lib/coq-core/plugins/micromega/micromega.ml +lib/coq-core/plugins/micromega/micromega.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin.a +lib/coq-core/plugins/micromega/micromega_plugin.cma +lib/coq-core/plugins/micromega/micromega_plugin.cmi +lib/coq-core/plugins/micromega/micromega_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/micromega/micromega_plugin.cmxs +lib/coq-core/plugins/micromega/micromega_plugin.ml +lib/coq-core/plugins/micromega/micromega_plugin__Certificate.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Certificate.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Certificate.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Certificate.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Coq_micromega.cmx +lib/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmi +lib/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmt +lib/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__G_micromega.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Itv.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Itv.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Itv.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Itv.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Mfourier.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Mfourier.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Mfourier.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Mfourier.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Micromega.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Micromega.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Micromega.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Micromega.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Mutils.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Mutils.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Mutils.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Mutils.cmx +lib/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmi +lib/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmt +lib/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__NumCompat.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Persistent_cache.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Polynomial.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Simplex.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Simplex.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Simplex.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Simplex.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Sos.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Sos.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Sos.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Sos.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Sos_lib.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Sos_types.cmx +lib/coq-core/plugins/micromega/micromega_plugin__Vect.cmi +lib/coq-core/plugins/micromega/micromega_plugin__Vect.cmt +lib/coq-core/plugins/micromega/micromega_plugin__Vect.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/micromega/micromega_plugin__Vect.cmx +lib/coq-core/plugins/micromega/mutils.ml +lib/coq-core/plugins/micromega/mutils.mli +lib/coq-core/plugins/micromega/numCompat.ml +lib/coq-core/plugins/micromega/numCompat.mli +lib/coq-core/plugins/micromega/persistent_cache.ml +lib/coq-core/plugins/micromega/persistent_cache.mli +lib/coq-core/plugins/micromega/polynomial.ml +lib/coq-core/plugins/micromega/polynomial.mli +lib/coq-core/plugins/micromega/simplex.ml +lib/coq-core/plugins/micromega/simplex.mli +lib/coq-core/plugins/micromega/sos.ml +lib/coq-core/plugins/micromega/sos.mli +lib/coq-core/plugins/micromega/sos_lib.ml +lib/coq-core/plugins/micromega/sos_lib.mli +lib/coq-core/plugins/micromega/sos_types.ml +lib/coq-core/plugins/micromega/sos_types.mli +lib/coq-core/plugins/micromega/vect.ml +lib/coq-core/plugins/micromega/vect.mli +lib/coq-core/plugins/nsatz/g_nsatz.ml +lib/coq-core/plugins/nsatz/ideal.ml +lib/coq-core/plugins/nsatz/ideal.mli +lib/coq-core/plugins/nsatz/nsatz.ml +lib/coq-core/plugins/nsatz/nsatz.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin.a +lib/coq-core/plugins/nsatz/nsatz_plugin.cma +lib/coq-core/plugins/nsatz/nsatz_plugin.cmi +lib/coq-core/plugins/nsatz/nsatz_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/nsatz/nsatz_plugin.cmxs +lib/coq-core/plugins/nsatz/nsatz_plugin.ml +lib/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmi +lib/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin__G_nsatz.cmx +lib/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmi +lib/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmt +lib/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin__Ideal.cmx +lib/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmi +lib/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmt +lib/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin__Nsatz.cmx +lib/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmi +lib/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmt +lib/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin__Polynom.cmx +lib/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmi +lib/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmt +lib/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/nsatz/nsatz_plugin__Utile.cmx +lib/coq-core/plugins/nsatz/polynom.ml +lib/coq-core/plugins/nsatz/polynom.mli +lib/coq-core/plugins/nsatz/utile.ml +lib/coq-core/plugins/nsatz/utile.mli +lib/coq-core/plugins/number_string_notation/g_number_string.ml +lib/coq-core/plugins/number_string_notation/number.ml +lib/coq-core/plugins/number_string_notation/number.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.a +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.cma +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmi +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmxs +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin.ml +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmi +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__G_number_string.cmx +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmi +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmt +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__Number.cmx +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmi +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmt +lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/number_string_notation/number_string_notation_plugin__String_notation.cmx +lib/coq-core/plugins/number_string_notation/string_notation.ml +lib/coq-core/plugins/number_string_notation/string_notation.mli +lib/coq-core/plugins/ring/g_ring.ml +lib/coq-core/plugins/ring/ring.ml +lib/coq-core/plugins/ring/ring.mli +lib/coq-core/plugins/ring/ring_ast.ml +lib/coq-core/plugins/ring/ring_ast.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/ring/ring_plugin.a +lib/coq-core/plugins/ring/ring_plugin.cma +lib/coq-core/plugins/ring/ring_plugin.cmi +lib/coq-core/plugins/ring/ring_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ring/ring_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/ring/ring_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/ring/ring_plugin.cmxs +lib/coq-core/plugins/ring/ring_plugin.ml +lib/coq-core/plugins/ring/ring_plugin__G_ring.cmi +lib/coq-core/plugins/ring/ring_plugin__G_ring.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ring/ring_plugin__G_ring.cmx +lib/coq-core/plugins/ring/ring_plugin__Ring.cmi +lib/coq-core/plugins/ring/ring_plugin__Ring.cmt +lib/coq-core/plugins/ring/ring_plugin__Ring.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ring/ring_plugin__Ring.cmx +lib/coq-core/plugins/ring/ring_plugin__Ring_ast.cmi +lib/coq-core/plugins/ring/ring_plugin__Ring_ast.cmt +lib/coq-core/plugins/ring/ring_plugin__Ring_ast.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ring/ring_plugin__Ring_ast.cmx +lib/coq-core/plugins/rtauto/g_rtauto.ml +lib/coq-core/plugins/rtauto/proof_search.ml +lib/coq-core/plugins/rtauto/proof_search.mli +lib/coq-core/plugins/rtauto/refl_tauto.ml +lib/coq-core/plugins/rtauto/refl_tauto.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin.a +lib/coq-core/plugins/rtauto/rtauto_plugin.cma +lib/coq-core/plugins/rtauto/rtauto_plugin.cmi +lib/coq-core/plugins/rtauto/rtauto_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/rtauto/rtauto_plugin.cmxs +lib/coq-core/plugins/rtauto/rtauto_plugin.ml +lib/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmi +lib/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin__G_rtauto.cmx +lib/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmi +lib/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmt +lib/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin__Proof_search.cmx +lib/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmi +lib/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmt +lib/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/rtauto/rtauto_plugin__Refl_tauto.cmx +lib/coq-core/plugins/ssreflect/ssrast.mli +lib/coq-core/plugins/ssreflect/ssrbwd.ml +lib/coq-core/plugins/ssreflect/ssrbwd.mli +lib/coq-core/plugins/ssreflect/ssrcommon.ml +lib/coq-core/plugins/ssreflect/ssrcommon.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin.a +lib/coq-core/plugins/ssreflect/ssreflect_plugin.cma +lib/coq-core/plugins/ssreflect/ssreflect_plugin.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/ssreflect/ssreflect_plugin.cmxs +lib/coq-core/plugins/ssreflect/ssreflect_plugin.ml +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrast.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrast.cmti +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrbwd.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrcommon.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrelim.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrequality.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrfwd.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssripats.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrparser.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrprinters.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrtacticals.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrvernac.cmx +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmi +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmt +lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssreflect/ssreflect_plugin__Ssrview.cmx +lib/coq-core/plugins/ssreflect/ssrelim.ml +lib/coq-core/plugins/ssreflect/ssrelim.mli +lib/coq-core/plugins/ssreflect/ssrequality.ml +lib/coq-core/plugins/ssreflect/ssrequality.mli +lib/coq-core/plugins/ssreflect/ssrfwd.ml +lib/coq-core/plugins/ssreflect/ssrfwd.mli +lib/coq-core/plugins/ssreflect/ssripats.ml +lib/coq-core/plugins/ssreflect/ssripats.mli +lib/coq-core/plugins/ssreflect/ssrparser.ml +lib/coq-core/plugins/ssreflect/ssrparser.mli +lib/coq-core/plugins/ssreflect/ssrprinters.ml +lib/coq-core/plugins/ssreflect/ssrprinters.mli +lib/coq-core/plugins/ssreflect/ssrtacticals.ml +lib/coq-core/plugins/ssreflect/ssrtacticals.mli +lib/coq-core/plugins/ssreflect/ssrvernac.ml +lib/coq-core/plugins/ssreflect/ssrvernac.mli +lib/coq-core/plugins/ssreflect/ssrview.ml +lib/coq-core/plugins/ssreflect/ssrview.mli +lib/coq-core/plugins/ssrmatching/g_ssrmatching.ml +lib/coq-core/plugins/ssrmatching/g_ssrmatching.mli +lib/coq-core/plugins/ssrmatching/ssrmatching.ml +lib/coq-core/plugins/ssrmatching/ssrmatching.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.a +${PLIST.ocaml-opt}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.a +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.cma +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmi +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmxs +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin.ml +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmi +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmt +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__G_ssrmatching.cmx +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmi +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmt +lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/ssrmatching/ssrmatching_plugin__Ssrmatching.cmx +lib/coq-core/plugins/tauto/tauto.ml +lib/coq-core/plugins/tauto/tauto.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/tauto/tauto_plugin.a +lib/coq-core/plugins/tauto/tauto_plugin.cma +lib/coq-core/plugins/tauto/tauto_plugin.cmi +lib/coq-core/plugins/tauto/tauto_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tauto/tauto_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/tauto/tauto_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/tauto/tauto_plugin.cmxs +lib/coq-core/plugins/tauto/tauto_plugin.ml +lib/coq-core/plugins/tauto/tauto_plugin__Tauto.cmi +lib/coq-core/plugins/tauto/tauto_plugin__Tauto.cmt +lib/coq-core/plugins/tauto/tauto_plugin__Tauto.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tauto/tauto_plugin__Tauto.cmx +lib/coq-core/plugins/tutorial/p0/g_tuto0.ml +lib/coq-core/plugins/tutorial/p0/tuto0_main.ml +lib/coq-core/plugins/tutorial/p0/tuto0_main.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p0/tuto0_plugin.a +lib/coq-core/plugins/tutorial/p0/tuto0_plugin.cma +lib/coq-core/plugins/tutorial/p0/tuto0_plugin.cmi +lib/coq-core/plugins/tutorial/p0/tuto0_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p0/tuto0_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p0/tuto0_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/tutorial/p0/tuto0_plugin.cmxs +lib/coq-core/plugins/tutorial/p0/tuto0_plugin.ml +lib/coq-core/plugins/tutorial/p0/tuto0_plugin__G_tuto0.cmi +lib/coq-core/plugins/tutorial/p0/tuto0_plugin__G_tuto0.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p0/tuto0_plugin__G_tuto0.cmx +lib/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmi +lib/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmt +lib/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p0/tuto0_plugin__Tuto0_main.cmx +lib/coq-core/plugins/tutorial/p1/g_tuto1.ml +lib/coq-core/plugins/tutorial/p1/inspector.ml +lib/coq-core/plugins/tutorial/p1/inspector.mli +lib/coq-core/plugins/tutorial/p1/simple_check.ml +lib/coq-core/plugins/tutorial/p1/simple_check.mli +lib/coq-core/plugins/tutorial/p1/simple_declare.ml +lib/coq-core/plugins/tutorial/p1/simple_declare.mli +lib/coq-core/plugins/tutorial/p1/simple_print.ml +lib/coq-core/plugins/tutorial/p1/simple_print.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin.a +lib/coq-core/plugins/tutorial/p1/tuto1_plugin.cma +lib/coq-core/plugins/tutorial/p1/tuto1_plugin.cmi +lib/coq-core/plugins/tutorial/p1/tuto1_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/tutorial/p1/tuto1_plugin.cmxs +lib/coq-core/plugins/tutorial/p1/tuto1_plugin.ml +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__G_tuto1.cmi +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__G_tuto1.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin__G_tuto1.cmx +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmi +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmt +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Inspector.cmx +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmi +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmt +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_check.cmx +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmi +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmt +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_declare.cmx +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmi +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmt +lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p1/tuto1_plugin__Simple_print.cmx +lib/coq-core/plugins/tutorial/p2/counter.ml +lib/coq-core/plugins/tutorial/p2/counter.mli +lib/coq-core/plugins/tutorial/p2/custom.ml +lib/coq-core/plugins/tutorial/p2/custom.mli +lib/coq-core/plugins/tutorial/p2/g_tuto2.ml +lib/coq-core/plugins/tutorial/p2/persistent_counter.ml +lib/coq-core/plugins/tutorial/p2/persistent_counter.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin.a +lib/coq-core/plugins/tutorial/p2/tuto2_plugin.cma +lib/coq-core/plugins/tutorial/p2/tuto2_plugin.cmi +lib/coq-core/plugins/tutorial/p2/tuto2_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/tutorial/p2/tuto2_plugin.cmxs +lib/coq-core/plugins/tutorial/p2/tuto2_plugin.ml +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmi +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmt +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Counter.cmx +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmi +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmt +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Custom.cmx +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__G_tuto2.cmi +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__G_tuto2.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin__G_tuto2.cmx +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmi +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmt +lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p2/tuto2_plugin__Persistent_counter.cmx +lib/coq-core/plugins/tutorial/p3/construction_game.ml +lib/coq-core/plugins/tutorial/p3/construction_game.mli +lib/coq-core/plugins/tutorial/p3/g_tuto3.ml +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p3/tuto3_plugin.a +lib/coq-core/plugins/tutorial/p3/tuto3_plugin.cma +lib/coq-core/plugins/tutorial/p3/tuto3_plugin.cmi +lib/coq-core/plugins/tutorial/p3/tuto3_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p3/tuto3_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p3/tuto3_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/tutorial/p3/tuto3_plugin.cmxs +lib/coq-core/plugins/tutorial/p3/tuto3_plugin.ml +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmi +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmt +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Construction_game.cmx +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__G_tuto3.cmi +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__G_tuto3.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p3/tuto3_plugin__G_tuto3.cmx +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmi +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmt +lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/tutorial/p3/tuto3_plugin__Tuto_tactic.cmx +lib/coq-core/plugins/tutorial/p3/tuto_tactic.ml +lib/coq-core/plugins/tutorial/p3/tuto_tactic.mli +lib/coq-core/plugins/zify/g_zify.ml +lib/coq-core/plugins/zify/zify.ml +lib/coq-core/plugins/zify/zify.mli +${PLIST.ocaml-opt}lib/coq-core/plugins/zify/zify_plugin.a +lib/coq-core/plugins/zify/zify_plugin.cma +lib/coq-core/plugins/zify/zify_plugin.cmi +lib/coq-core/plugins/zify/zify_plugin.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/zify/zify_plugin.cmx +${PLIST.ocaml-opt}lib/coq-core/plugins/zify/zify_plugin.cmxa +${PLIST.natdynlink}lib/coq-core/plugins/zify/zify_plugin.cmxs +lib/coq-core/plugins/zify/zify_plugin.ml +lib/coq-core/plugins/zify/zify_plugin__G_zify.cmi +lib/coq-core/plugins/zify/zify_plugin__G_zify.cmt +${PLIST.ocaml-opt}lib/coq-core/plugins/zify/zify_plugin__G_zify.cmx +lib/coq-core/plugins/zify/zify_plugin__Zify.cmi +lib/coq-core/plugins/zify/zify_plugin__Zify.cmt +lib/coq-core/plugins/zify/zify_plugin__Zify.cmti +${PLIST.ocaml-opt}lib/coq-core/plugins/zify/zify_plugin__Zify.cmx +lib/coq-core/pretyping/arguments_renaming.cmi +lib/coq-core/pretyping/arguments_renaming.cmt +lib/coq-core/pretyping/arguments_renaming.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/arguments_renaming.cmx +lib/coq-core/pretyping/arguments_renaming.ml +lib/coq-core/pretyping/arguments_renaming.mli +lib/coq-core/pretyping/cases.cmi +lib/coq-core/pretyping/cases.cmt +lib/coq-core/pretyping/cases.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/cases.cmx +lib/coq-core/pretyping/cases.ml +lib/coq-core/pretyping/cases.mli +lib/coq-core/pretyping/cbv.cmi +lib/coq-core/pretyping/cbv.cmt +lib/coq-core/pretyping/cbv.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/cbv.cmx +lib/coq-core/pretyping/cbv.ml +lib/coq-core/pretyping/cbv.mli +lib/coq-core/pretyping/coercion.cmi +lib/coq-core/pretyping/coercion.cmt +lib/coq-core/pretyping/coercion.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/coercion.cmx +lib/coq-core/pretyping/coercion.ml +lib/coq-core/pretyping/coercion.mli +lib/coq-core/pretyping/coercionops.cmi +lib/coq-core/pretyping/coercionops.cmt +lib/coq-core/pretyping/coercionops.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/coercionops.cmx +lib/coq-core/pretyping/coercionops.ml +lib/coq-core/pretyping/coercionops.mli +lib/coq-core/pretyping/constr_matching.cmi +lib/coq-core/pretyping/constr_matching.cmt +lib/coq-core/pretyping/constr_matching.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/constr_matching.cmx +lib/coq-core/pretyping/constr_matching.ml +lib/coq-core/pretyping/constr_matching.mli +lib/coq-core/pretyping/detyping.cmi +lib/coq-core/pretyping/detyping.cmt +lib/coq-core/pretyping/detyping.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/detyping.cmx +lib/coq-core/pretyping/detyping.ml +lib/coq-core/pretyping/detyping.mli +lib/coq-core/pretyping/evarconv.cmi +lib/coq-core/pretyping/evarconv.cmt +lib/coq-core/pretyping/evarconv.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/evarconv.cmx +lib/coq-core/pretyping/evarconv.ml +lib/coq-core/pretyping/evarconv.mli +lib/coq-core/pretyping/evardefine.cmi +lib/coq-core/pretyping/evardefine.cmt +lib/coq-core/pretyping/evardefine.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/evardefine.cmx +lib/coq-core/pretyping/evardefine.ml +lib/coq-core/pretyping/evardefine.mli +lib/coq-core/pretyping/evarsolve.cmi +lib/coq-core/pretyping/evarsolve.cmt +lib/coq-core/pretyping/evarsolve.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/evarsolve.cmx +lib/coq-core/pretyping/evarsolve.ml +lib/coq-core/pretyping/evarsolve.mli +lib/coq-core/pretyping/find_subterm.cmi +lib/coq-core/pretyping/find_subterm.cmt +lib/coq-core/pretyping/find_subterm.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/find_subterm.cmx +lib/coq-core/pretyping/find_subterm.ml +lib/coq-core/pretyping/find_subterm.mli +lib/coq-core/pretyping/geninterp.cmi +lib/coq-core/pretyping/geninterp.cmt +lib/coq-core/pretyping/geninterp.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/geninterp.cmx +lib/coq-core/pretyping/geninterp.ml +lib/coq-core/pretyping/geninterp.mli +lib/coq-core/pretyping/globEnv.cmi +lib/coq-core/pretyping/globEnv.cmt +lib/coq-core/pretyping/globEnv.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/globEnv.cmx +lib/coq-core/pretyping/globEnv.ml +lib/coq-core/pretyping/globEnv.mli +lib/coq-core/pretyping/glob_ops.cmi +lib/coq-core/pretyping/glob_ops.cmt +lib/coq-core/pretyping/glob_ops.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/glob_ops.cmx +lib/coq-core/pretyping/glob_ops.ml +lib/coq-core/pretyping/glob_ops.mli +lib/coq-core/pretyping/glob_term.cmi +lib/coq-core/pretyping/glob_term.cmt +${PLIST.ocaml-opt}lib/coq-core/pretyping/glob_term.cmx +lib/coq-core/pretyping/glob_term.ml +lib/coq-core/pretyping/heads.cmi +lib/coq-core/pretyping/heads.cmt +lib/coq-core/pretyping/heads.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/heads.cmx +lib/coq-core/pretyping/heads.ml +lib/coq-core/pretyping/heads.mli +lib/coq-core/pretyping/indrec.cmi +lib/coq-core/pretyping/indrec.cmt +lib/coq-core/pretyping/indrec.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/indrec.cmx +lib/coq-core/pretyping/indrec.ml +lib/coq-core/pretyping/indrec.mli +lib/coq-core/pretyping/inductiveops.cmi +lib/coq-core/pretyping/inductiveops.cmt +lib/coq-core/pretyping/inductiveops.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/inductiveops.cmx +lib/coq-core/pretyping/inductiveops.ml +lib/coq-core/pretyping/inductiveops.mli +lib/coq-core/pretyping/keys.cmi +lib/coq-core/pretyping/keys.cmt +lib/coq-core/pretyping/keys.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/keys.cmx +lib/coq-core/pretyping/keys.ml +lib/coq-core/pretyping/keys.mli +lib/coq-core/pretyping/locus.cmi +lib/coq-core/pretyping/locus.cmt +${PLIST.ocaml-opt}lib/coq-core/pretyping/locus.cmx +lib/coq-core/pretyping/locus.ml +lib/coq-core/pretyping/locusops.cmi +lib/coq-core/pretyping/locusops.cmt +lib/coq-core/pretyping/locusops.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/locusops.cmx +lib/coq-core/pretyping/locusops.ml +lib/coq-core/pretyping/locusops.mli +lib/coq-core/pretyping/ltac_pretype.cmi +lib/coq-core/pretyping/ltac_pretype.cmt +${PLIST.ocaml-opt}lib/coq-core/pretyping/ltac_pretype.cmx +lib/coq-core/pretyping/ltac_pretype.ml +lib/coq-core/pretyping/nativenorm.cmi +lib/coq-core/pretyping/nativenorm.cmt +lib/coq-core/pretyping/nativenorm.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/nativenorm.cmx +lib/coq-core/pretyping/nativenorm.ml +lib/coq-core/pretyping/nativenorm.mli +lib/coq-core/pretyping/pattern.cmi +lib/coq-core/pretyping/pattern.cmt +${PLIST.ocaml-opt}lib/coq-core/pretyping/pattern.cmx +lib/coq-core/pretyping/pattern.ml +lib/coq-core/pretyping/patternops.cmi +lib/coq-core/pretyping/patternops.cmt +lib/coq-core/pretyping/patternops.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/patternops.cmx +lib/coq-core/pretyping/patternops.ml +lib/coq-core/pretyping/patternops.mli +lib/coq-core/pretyping/pretype_errors.cmi +lib/coq-core/pretyping/pretype_errors.cmt +lib/coq-core/pretyping/pretype_errors.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/pretype_errors.cmx +lib/coq-core/pretyping/pretype_errors.ml +lib/coq-core/pretyping/pretype_errors.mli +${PLIST.ocaml-opt}lib/coq-core/pretyping/pretyping.a +lib/coq-core/pretyping/pretyping.cma +lib/coq-core/pretyping/pretyping.cmi +lib/coq-core/pretyping/pretyping.cmt +lib/coq-core/pretyping/pretyping.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/pretyping.cmx +${PLIST.ocaml-opt}lib/coq-core/pretyping/pretyping.cmxa +${PLIST.natdynlink}lib/coq-core/pretyping/pretyping.cmxs +lib/coq-core/pretyping/pretyping.ml +lib/coq-core/pretyping/pretyping.mli +lib/coq-core/pretyping/program.cmi +lib/coq-core/pretyping/program.cmt +lib/coq-core/pretyping/program.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/program.cmx +lib/coq-core/pretyping/program.ml +lib/coq-core/pretyping/program.mli +lib/coq-core/pretyping/reductionops.cmi +lib/coq-core/pretyping/reductionops.cmt +lib/coq-core/pretyping/reductionops.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/reductionops.cmx +lib/coq-core/pretyping/reductionops.ml +lib/coq-core/pretyping/reductionops.mli +lib/coq-core/pretyping/retyping.cmi +lib/coq-core/pretyping/retyping.cmt +lib/coq-core/pretyping/retyping.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/retyping.cmx +lib/coq-core/pretyping/retyping.ml +lib/coq-core/pretyping/retyping.mli +lib/coq-core/pretyping/structures.cmi +lib/coq-core/pretyping/structures.cmt +lib/coq-core/pretyping/structures.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/structures.cmx +lib/coq-core/pretyping/structures.ml +lib/coq-core/pretyping/structures.mli +lib/coq-core/pretyping/tacred.cmi +lib/coq-core/pretyping/tacred.cmt +lib/coq-core/pretyping/tacred.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/tacred.cmx +lib/coq-core/pretyping/tacred.ml +lib/coq-core/pretyping/tacred.mli +lib/coq-core/pretyping/typeclasses.cmi +lib/coq-core/pretyping/typeclasses.cmt +lib/coq-core/pretyping/typeclasses.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/typeclasses.cmx +lib/coq-core/pretyping/typeclasses.ml +lib/coq-core/pretyping/typeclasses.mli +lib/coq-core/pretyping/typeclasses_errors.cmi +lib/coq-core/pretyping/typeclasses_errors.cmt +lib/coq-core/pretyping/typeclasses_errors.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/typeclasses_errors.cmx +lib/coq-core/pretyping/typeclasses_errors.ml +lib/coq-core/pretyping/typeclasses_errors.mli +lib/coq-core/pretyping/typing.cmi +lib/coq-core/pretyping/typing.cmt +lib/coq-core/pretyping/typing.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/typing.cmx +lib/coq-core/pretyping/typing.ml +lib/coq-core/pretyping/typing.mli +lib/coq-core/pretyping/unification.cmi +lib/coq-core/pretyping/unification.cmt +lib/coq-core/pretyping/unification.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/unification.cmx +lib/coq-core/pretyping/unification.ml +lib/coq-core/pretyping/unification.mli +lib/coq-core/pretyping/vnorm.cmi +lib/coq-core/pretyping/vnorm.cmt +lib/coq-core/pretyping/vnorm.cmti +${PLIST.ocaml-opt}lib/coq-core/pretyping/vnorm.cmx +lib/coq-core/pretyping/vnorm.ml +lib/coq-core/pretyping/vnorm.mli +lib/coq-core/printing/genprint.cmi +lib/coq-core/printing/genprint.cmt +lib/coq-core/printing/genprint.cmti +${PLIST.ocaml-opt}lib/coq-core/printing/genprint.cmx +lib/coq-core/printing/genprint.ml +lib/coq-core/printing/genprint.mli +lib/coq-core/printing/ppconstr.cmi +lib/coq-core/printing/ppconstr.cmt +lib/coq-core/printing/ppconstr.cmti +${PLIST.ocaml-opt}lib/coq-core/printing/ppconstr.cmx +lib/coq-core/printing/ppconstr.ml +lib/coq-core/printing/ppconstr.mli +lib/coq-core/printing/ppextend.cmi +lib/coq-core/printing/ppextend.cmt +lib/coq-core/printing/ppextend.cmti +${PLIST.ocaml-opt}lib/coq-core/printing/ppextend.cmx +lib/coq-core/printing/ppextend.ml +lib/coq-core/printing/ppextend.mli +lib/coq-core/printing/pputils.cmi +lib/coq-core/printing/pputils.cmt +lib/coq-core/printing/pputils.cmti +${PLIST.ocaml-opt}lib/coq-core/printing/pputils.cmx +lib/coq-core/printing/pputils.ml +lib/coq-core/printing/pputils.mli +lib/coq-core/printing/printer.cmi +lib/coq-core/printing/printer.cmt +lib/coq-core/printing/printer.cmti +${PLIST.ocaml-opt}lib/coq-core/printing/printer.cmx +lib/coq-core/printing/printer.ml +lib/coq-core/printing/printer.mli +${PLIST.ocaml-opt}lib/coq-core/printing/printing.a +lib/coq-core/printing/printing.cma +${PLIST.ocaml-opt}lib/coq-core/printing/printing.cmxa +${PLIST.natdynlink}lib/coq-core/printing/printing.cmxs +lib/coq-core/printing/proof_diffs.cmi +lib/coq-core/printing/proof_diffs.cmt +lib/coq-core/printing/proof_diffs.cmti +${PLIST.ocaml-opt}lib/coq-core/printing/proof_diffs.cmx +lib/coq-core/printing/proof_diffs.ml +lib/coq-core/printing/proof_diffs.mli +lib/coq-core/proofs/clenv.cmi +lib/coq-core/proofs/clenv.cmt +lib/coq-core/proofs/clenv.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/clenv.cmx +lib/coq-core/proofs/clenv.ml +lib/coq-core/proofs/clenv.mli +lib/coq-core/proofs/evar_refiner.cmi +lib/coq-core/proofs/evar_refiner.cmt +lib/coq-core/proofs/evar_refiner.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/evar_refiner.cmx +lib/coq-core/proofs/evar_refiner.ml +lib/coq-core/proofs/evar_refiner.mli +lib/coq-core/proofs/goal.cmi +lib/coq-core/proofs/goal.cmt +lib/coq-core/proofs/goal.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/goal.cmx +lib/coq-core/proofs/goal.ml +lib/coq-core/proofs/goal.mli +lib/coq-core/proofs/goal_select.cmi +lib/coq-core/proofs/goal_select.cmt +lib/coq-core/proofs/goal_select.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/goal_select.cmx +lib/coq-core/proofs/goal_select.ml +lib/coq-core/proofs/goal_select.mli +lib/coq-core/proofs/logic.cmi +lib/coq-core/proofs/logic.cmt +lib/coq-core/proofs/logic.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/logic.cmx +lib/coq-core/proofs/logic.ml +lib/coq-core/proofs/logic.mli +lib/coq-core/proofs/miscprint.cmi +lib/coq-core/proofs/miscprint.cmt +lib/coq-core/proofs/miscprint.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/miscprint.cmx +lib/coq-core/proofs/miscprint.ml +lib/coq-core/proofs/miscprint.mli +lib/coq-core/proofs/proof.cmi +lib/coq-core/proofs/proof.cmt +lib/coq-core/proofs/proof.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/proof.cmx +lib/coq-core/proofs/proof.ml +lib/coq-core/proofs/proof.mli +lib/coq-core/proofs/proof_bullet.cmi +lib/coq-core/proofs/proof_bullet.cmt +lib/coq-core/proofs/proof_bullet.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/proof_bullet.cmx +lib/coq-core/proofs/proof_bullet.ml +lib/coq-core/proofs/proof_bullet.mli +${PLIST.ocaml-opt}lib/coq-core/proofs/proofs.a +lib/coq-core/proofs/proofs.cma +${PLIST.ocaml-opt}lib/coq-core/proofs/proofs.cmxa +${PLIST.natdynlink}lib/coq-core/proofs/proofs.cmxs +lib/coq-core/proofs/refine.cmi +lib/coq-core/proofs/refine.cmt +lib/coq-core/proofs/refine.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/refine.cmx +lib/coq-core/proofs/refine.ml +lib/coq-core/proofs/refine.mli +lib/coq-core/proofs/tacmach.cmi +lib/coq-core/proofs/tacmach.cmt +lib/coq-core/proofs/tacmach.cmti +${PLIST.ocaml-opt}lib/coq-core/proofs/tacmach.cmx +lib/coq-core/proofs/tacmach.ml +lib/coq-core/proofs/tacmach.mli +lib/coq-core/proofs/tactypes.cmi +lib/coq-core/proofs/tactypes.cmt +${PLIST.ocaml-opt}lib/coq-core/proofs/tactypes.cmx +lib/coq-core/proofs/tactypes.ml +lib/coq-core/revision +lib/coq-core/stm/asyncTaskQueue.cmi +lib/coq-core/stm/asyncTaskQueue.cmt +lib/coq-core/stm/asyncTaskQueue.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/asyncTaskQueue.cmx +lib/coq-core/stm/asyncTaskQueue.ml +lib/coq-core/stm/asyncTaskQueue.mli +lib/coq-core/stm/coqworkmgrApi.cmi +lib/coq-core/stm/coqworkmgrApi.cmt +lib/coq-core/stm/coqworkmgrApi.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/coqworkmgrApi.cmx +lib/coq-core/stm/coqworkmgrApi.ml +lib/coq-core/stm/coqworkmgrApi.mli +lib/coq-core/stm/dag.cmi +lib/coq-core/stm/dag.cmt +lib/coq-core/stm/dag.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/dag.cmx +lib/coq-core/stm/dag.ml +lib/coq-core/stm/dag.mli +lib/coq-core/stm/partac.cmi +lib/coq-core/stm/partac.cmt +lib/coq-core/stm/partac.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/partac.cmx +lib/coq-core/stm/partac.ml +lib/coq-core/stm/partac.mli +lib/coq-core/stm/proofBlockDelimiter.cmi +lib/coq-core/stm/proofBlockDelimiter.cmt +lib/coq-core/stm/proofBlockDelimiter.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/proofBlockDelimiter.cmx +lib/coq-core/stm/proofBlockDelimiter.ml +lib/coq-core/stm/proofBlockDelimiter.mli +lib/coq-core/stm/spawned.cmi +lib/coq-core/stm/spawned.cmt +lib/coq-core/stm/spawned.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/spawned.cmx +lib/coq-core/stm/spawned.ml +lib/coq-core/stm/spawned.mli +${PLIST.ocaml-opt}lib/coq-core/stm/stm.a +lib/coq-core/stm/stm.cma +lib/coq-core/stm/stm.cmi +lib/coq-core/stm/stm.cmt +lib/coq-core/stm/stm.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/stm.cmx +${PLIST.ocaml-opt}lib/coq-core/stm/stm.cmxa +${PLIST.natdynlink}lib/coq-core/stm/stm.cmxs +lib/coq-core/stm/stm.ml +lib/coq-core/stm/stm.mli +lib/coq-core/stm/stmargs.cmi +lib/coq-core/stm/stmargs.cmt +lib/coq-core/stm/stmargs.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/stmargs.cmx +lib/coq-core/stm/stmargs.ml +lib/coq-core/stm/stmargs.mli +lib/coq-core/stm/tQueue.cmi +lib/coq-core/stm/tQueue.cmt +lib/coq-core/stm/tQueue.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/tQueue.cmx +lib/coq-core/stm/tQueue.ml +lib/coq-core/stm/tQueue.mli +lib/coq-core/stm/vcs.cmi +lib/coq-core/stm/vcs.cmt +lib/coq-core/stm/vcs.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/vcs.cmx +lib/coq-core/stm/vcs.ml +lib/coq-core/stm/vcs.mli +lib/coq-core/stm/vio_checking.cmi +lib/coq-core/stm/vio_checking.cmt +lib/coq-core/stm/vio_checking.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/vio_checking.cmx +lib/coq-core/stm/vio_checking.ml +lib/coq-core/stm/vio_checking.mli +lib/coq-core/stm/workerPool.cmi +lib/coq-core/stm/workerPool.cmt +lib/coq-core/stm/workerPool.cmti +${PLIST.ocaml-opt}lib/coq-core/stm/workerPool.cmx +lib/coq-core/stm/workerPool.ml +lib/coq-core/stm/workerPool.mli +lib/coq-core/sysinit/coqargs.cmi +lib/coq-core/sysinit/coqargs.cmt +lib/coq-core/sysinit/coqargs.cmti +${PLIST.ocaml-opt}lib/coq-core/sysinit/coqargs.cmx +lib/coq-core/sysinit/coqargs.ml +lib/coq-core/sysinit/coqargs.mli +lib/coq-core/sysinit/coqinit.cmi +lib/coq-core/sysinit/coqinit.cmt +lib/coq-core/sysinit/coqinit.cmti +${PLIST.ocaml-opt}lib/coq-core/sysinit/coqinit.cmx +lib/coq-core/sysinit/coqinit.ml +lib/coq-core/sysinit/coqinit.mli +lib/coq-core/sysinit/coqloadpath.cmi +lib/coq-core/sysinit/coqloadpath.cmt +lib/coq-core/sysinit/coqloadpath.cmti +${PLIST.ocaml-opt}lib/coq-core/sysinit/coqloadpath.cmx +lib/coq-core/sysinit/coqloadpath.ml +lib/coq-core/sysinit/coqloadpath.mli +${PLIST.ocaml-opt}lib/coq-core/sysinit/sysinit.a +lib/coq-core/sysinit/sysinit.cma +${PLIST.ocaml-opt}lib/coq-core/sysinit/sysinit.cmxa +${PLIST.natdynlink}lib/coq-core/sysinit/sysinit.cmxs +lib/coq-core/sysinit/usage.cmi +lib/coq-core/sysinit/usage.cmt +lib/coq-core/sysinit/usage.cmti +${PLIST.ocaml-opt}lib/coq-core/sysinit/usage.cmx +lib/coq-core/sysinit/usage.ml +lib/coq-core/sysinit/usage.mli +lib/coq-core/tactics/abstract.cmi +lib/coq-core/tactics/abstract.cmt +lib/coq-core/tactics/abstract.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/abstract.cmx +lib/coq-core/tactics/abstract.ml +lib/coq-core/tactics/abstract.mli +lib/coq-core/tactics/auto.cmi +lib/coq-core/tactics/auto.cmt +lib/coq-core/tactics/auto.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/auto.cmx +lib/coq-core/tactics/auto.ml +lib/coq-core/tactics/auto.mli +lib/coq-core/tactics/autorewrite.cmi +lib/coq-core/tactics/autorewrite.cmt +lib/coq-core/tactics/autorewrite.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/autorewrite.cmx +lib/coq-core/tactics/autorewrite.ml +lib/coq-core/tactics/autorewrite.mli +lib/coq-core/tactics/btermdn.cmi +lib/coq-core/tactics/btermdn.cmt +lib/coq-core/tactics/btermdn.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/btermdn.cmx +lib/coq-core/tactics/btermdn.ml +lib/coq-core/tactics/btermdn.mli +lib/coq-core/tactics/cbn.cmi +lib/coq-core/tactics/cbn.cmt +lib/coq-core/tactics/cbn.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/cbn.cmx +lib/coq-core/tactics/cbn.ml +lib/coq-core/tactics/cbn.mli +lib/coq-core/tactics/class_tactics.cmi +lib/coq-core/tactics/class_tactics.cmt +lib/coq-core/tactics/class_tactics.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/class_tactics.cmx +lib/coq-core/tactics/class_tactics.ml +lib/coq-core/tactics/class_tactics.mli +lib/coq-core/tactics/contradiction.cmi +lib/coq-core/tactics/contradiction.cmt +lib/coq-core/tactics/contradiction.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/contradiction.cmx +lib/coq-core/tactics/contradiction.ml +lib/coq-core/tactics/contradiction.mli +lib/coq-core/tactics/declareScheme.cmi +lib/coq-core/tactics/declareScheme.cmt +lib/coq-core/tactics/declareScheme.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/declareScheme.cmx +lib/coq-core/tactics/declareScheme.ml +lib/coq-core/tactics/declareScheme.mli +lib/coq-core/tactics/dn.cmi +lib/coq-core/tactics/dn.cmt +lib/coq-core/tactics/dn.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/dn.cmx +lib/coq-core/tactics/dn.ml +lib/coq-core/tactics/dn.mli +lib/coq-core/tactics/dnet.cmi +lib/coq-core/tactics/dnet.cmt +lib/coq-core/tactics/dnet.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/dnet.cmx +lib/coq-core/tactics/dnet.ml +lib/coq-core/tactics/dnet.mli +lib/coq-core/tactics/eauto.cmi +lib/coq-core/tactics/eauto.cmt +lib/coq-core/tactics/eauto.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/eauto.cmx +lib/coq-core/tactics/eauto.ml +lib/coq-core/tactics/eauto.mli +lib/coq-core/tactics/elim.cmi +lib/coq-core/tactics/elim.cmt +lib/coq-core/tactics/elim.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/elim.cmx +lib/coq-core/tactics/elim.ml +lib/coq-core/tactics/elim.mli +lib/coq-core/tactics/elimschemes.cmi +lib/coq-core/tactics/elimschemes.cmt +lib/coq-core/tactics/elimschemes.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/elimschemes.cmx +lib/coq-core/tactics/elimschemes.ml +lib/coq-core/tactics/elimschemes.mli +lib/coq-core/tactics/eqdecide.cmi +lib/coq-core/tactics/eqdecide.cmt +lib/coq-core/tactics/eqdecide.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/eqdecide.cmx +lib/coq-core/tactics/eqdecide.ml +lib/coq-core/tactics/eqdecide.mli +lib/coq-core/tactics/eqschemes.cmi +lib/coq-core/tactics/eqschemes.cmt +lib/coq-core/tactics/eqschemes.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/eqschemes.cmx +lib/coq-core/tactics/eqschemes.ml +lib/coq-core/tactics/eqschemes.mli +lib/coq-core/tactics/equality.cmi +lib/coq-core/tactics/equality.cmt +lib/coq-core/tactics/equality.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/equality.cmx +lib/coq-core/tactics/equality.ml +lib/coq-core/tactics/equality.mli +lib/coq-core/tactics/genredexpr.cmi +lib/coq-core/tactics/genredexpr.cmt +${PLIST.ocaml-opt}lib/coq-core/tactics/genredexpr.cmx +lib/coq-core/tactics/genredexpr.ml +lib/coq-core/tactics/hints.cmi +lib/coq-core/tactics/hints.cmt +lib/coq-core/tactics/hints.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/hints.cmx +lib/coq-core/tactics/hints.ml +lib/coq-core/tactics/hints.mli +lib/coq-core/tactics/hipattern.cmi +lib/coq-core/tactics/hipattern.cmt +lib/coq-core/tactics/hipattern.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/hipattern.cmx +lib/coq-core/tactics/hipattern.ml +lib/coq-core/tactics/hipattern.mli +lib/coq-core/tactics/ind_tables.cmi +lib/coq-core/tactics/ind_tables.cmt +lib/coq-core/tactics/ind_tables.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/ind_tables.cmx +lib/coq-core/tactics/ind_tables.ml +lib/coq-core/tactics/ind_tables.mli +lib/coq-core/tactics/inv.cmi +lib/coq-core/tactics/inv.cmt +lib/coq-core/tactics/inv.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/inv.cmx +lib/coq-core/tactics/inv.ml +lib/coq-core/tactics/inv.mli +lib/coq-core/tactics/ppred.cmi +lib/coq-core/tactics/ppred.cmt +lib/coq-core/tactics/ppred.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/ppred.cmx +lib/coq-core/tactics/ppred.ml +lib/coq-core/tactics/ppred.mli +lib/coq-core/tactics/redexpr.cmi +lib/coq-core/tactics/redexpr.cmt +lib/coq-core/tactics/redexpr.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/redexpr.cmx +lib/coq-core/tactics/redexpr.ml +lib/coq-core/tactics/redexpr.mli +lib/coq-core/tactics/redops.cmi +lib/coq-core/tactics/redops.cmt +lib/coq-core/tactics/redops.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/redops.cmx +lib/coq-core/tactics/redops.ml +lib/coq-core/tactics/redops.mli +lib/coq-core/tactics/tacticals.cmi +lib/coq-core/tactics/tacticals.cmt +lib/coq-core/tactics/tacticals.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/tacticals.cmx +lib/coq-core/tactics/tacticals.ml +lib/coq-core/tactics/tacticals.mli +${PLIST.ocaml-opt}lib/coq-core/tactics/tactics.a +lib/coq-core/tactics/tactics.cma +lib/coq-core/tactics/tactics.cmi +lib/coq-core/tactics/tactics.cmt +lib/coq-core/tactics/tactics.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/tactics.cmx +${PLIST.ocaml-opt}lib/coq-core/tactics/tactics.cmxa +${PLIST.natdynlink}lib/coq-core/tactics/tactics.cmxs +lib/coq-core/tactics/tactics.ml +lib/coq-core/tactics/tactics.mli +lib/coq-core/tactics/term_dnet.cmi +lib/coq-core/tactics/term_dnet.cmt +lib/coq-core/tactics/term_dnet.cmti +${PLIST.ocaml-opt}lib/coq-core/tactics/term_dnet.cmx +lib/coq-core/tactics/term_dnet.ml +lib/coq-core/tactics/term_dnet.mli +lib/coq-core/tools/CoqMakefile.in +lib/coq-core/tools/TimeFileMaker.py +lib/coq-core/tools/coqdoc/coqdoc.css +lib/coq-core/tools/coqdoc/coqdoc.sty +lib/coq-core/tools/make-both-single-timing-files.py +lib/coq-core/tools/make-both-time-files.py +lib/coq-core/tools/make-one-time-file.py +${PLIST.ocaml-opt}lib/coq-core/top_printers/top_printers.a +lib/coq-core/top_printers/top_printers.cma +lib/coq-core/top_printers/top_printers.cmi +lib/coq-core/top_printers/top_printers.cmt +lib/coq-core/top_printers/top_printers.cmti +${PLIST.ocaml-opt}lib/coq-core/top_printers/top_printers.cmx +${PLIST.ocaml-opt}lib/coq-core/top_printers/top_printers.cmxa +${PLIST.natdynlink}lib/coq-core/top_printers/top_printers.cmxs +lib/coq-core/top_printers/top_printers.ml +lib/coq-core/top_printers/top_printers.mli +lib/coq-core/toplevel/ccompile.cmi +lib/coq-core/toplevel/ccompile.cmt +lib/coq-core/toplevel/ccompile.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/ccompile.cmx +lib/coq-core/toplevel/ccompile.ml +lib/coq-core/toplevel/ccompile.mli +lib/coq-core/toplevel/coqc.cmi +lib/coq-core/toplevel/coqc.cmt +lib/coq-core/toplevel/coqc.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/coqc.cmx +lib/coq-core/toplevel/coqc.ml +lib/coq-core/toplevel/coqc.mli +lib/coq-core/toplevel/coqcargs.cmi +lib/coq-core/toplevel/coqcargs.cmt +lib/coq-core/toplevel/coqcargs.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/coqcargs.cmx +lib/coq-core/toplevel/coqcargs.ml +lib/coq-core/toplevel/coqcargs.mli +lib/coq-core/toplevel/coqloop.cmi +lib/coq-core/toplevel/coqloop.cmt +lib/coq-core/toplevel/coqloop.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/coqloop.cmx +lib/coq-core/toplevel/coqloop.ml +lib/coq-core/toplevel/coqloop.mli +lib/coq-core/toplevel/coqrc.cmi +lib/coq-core/toplevel/coqrc.cmt +lib/coq-core/toplevel/coqrc.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/coqrc.cmx +lib/coq-core/toplevel/coqrc.ml +lib/coq-core/toplevel/coqrc.mli +lib/coq-core/toplevel/coqtop.cmi +lib/coq-core/toplevel/coqtop.cmt +lib/coq-core/toplevel/coqtop.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/coqtop.cmx +lib/coq-core/toplevel/coqtop.ml +lib/coq-core/toplevel/coqtop.mli +lib/coq-core/toplevel/g_toplevel.cmi +lib/coq-core/toplevel/g_toplevel.cmt +${PLIST.ocaml-opt}lib/coq-core/toplevel/g_toplevel.cmx +lib/coq-core/toplevel/g_toplevel.ml +${PLIST.ocaml-opt}lib/coq-core/toplevel/toplevel.a +lib/coq-core/toplevel/toplevel.cma +${PLIST.ocaml-opt}lib/coq-core/toplevel/toplevel.cmxa +${PLIST.natdynlink}lib/coq-core/toplevel/toplevel.cmxs +lib/coq-core/toplevel/vernac.cmi +lib/coq-core/toplevel/vernac.cmt +lib/coq-core/toplevel/vernac.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/vernac.cmx +lib/coq-core/toplevel/vernac.ml +lib/coq-core/toplevel/vernac.mli +lib/coq-core/toplevel/workerLoop.cmi +lib/coq-core/toplevel/workerLoop.cmt +lib/coq-core/toplevel/workerLoop.cmti +${PLIST.ocaml-opt}lib/coq-core/toplevel/workerLoop.cmx +lib/coq-core/toplevel/workerLoop.ml +lib/coq-core/toplevel/workerLoop.mli +lib/coq-core/vernac/assumptions.cmi +lib/coq-core/vernac/assumptions.cmt +lib/coq-core/vernac/assumptions.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/assumptions.cmx +lib/coq-core/vernac/assumptions.ml +lib/coq-core/vernac/assumptions.mli +lib/coq-core/vernac/attributes.cmi +lib/coq-core/vernac/attributes.cmt +lib/coq-core/vernac/attributes.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/attributes.cmx +lib/coq-core/vernac/attributes.ml +lib/coq-core/vernac/attributes.mli +lib/coq-core/vernac/auto_ind_decl.cmi +lib/coq-core/vernac/auto_ind_decl.cmt +lib/coq-core/vernac/auto_ind_decl.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/auto_ind_decl.cmx +lib/coq-core/vernac/auto_ind_decl.ml +lib/coq-core/vernac/auto_ind_decl.mli +lib/coq-core/vernac/canonical.cmi +lib/coq-core/vernac/canonical.cmt +lib/coq-core/vernac/canonical.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/canonical.cmx +lib/coq-core/vernac/canonical.ml +lib/coq-core/vernac/canonical.mli +lib/coq-core/vernac/classes.cmi +lib/coq-core/vernac/classes.cmt +lib/coq-core/vernac/classes.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/classes.cmx +lib/coq-core/vernac/classes.ml +lib/coq-core/vernac/classes.mli +lib/coq-core/vernac/comArguments.cmi +lib/coq-core/vernac/comArguments.cmt +lib/coq-core/vernac/comArguments.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comArguments.cmx +lib/coq-core/vernac/comArguments.ml +lib/coq-core/vernac/comArguments.mli +lib/coq-core/vernac/comAssumption.cmi +lib/coq-core/vernac/comAssumption.cmt +lib/coq-core/vernac/comAssumption.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comAssumption.cmx +lib/coq-core/vernac/comAssumption.ml +lib/coq-core/vernac/comAssumption.mli +lib/coq-core/vernac/comCoercion.cmi +lib/coq-core/vernac/comCoercion.cmt +lib/coq-core/vernac/comCoercion.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comCoercion.cmx +lib/coq-core/vernac/comCoercion.ml +lib/coq-core/vernac/comCoercion.mli +lib/coq-core/vernac/comDefinition.cmi +lib/coq-core/vernac/comDefinition.cmt +lib/coq-core/vernac/comDefinition.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comDefinition.cmx +lib/coq-core/vernac/comDefinition.ml +lib/coq-core/vernac/comDefinition.mli +lib/coq-core/vernac/comFixpoint.cmi +lib/coq-core/vernac/comFixpoint.cmt +lib/coq-core/vernac/comFixpoint.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comFixpoint.cmx +lib/coq-core/vernac/comFixpoint.ml +lib/coq-core/vernac/comFixpoint.mli +lib/coq-core/vernac/comHints.cmi +lib/coq-core/vernac/comHints.cmt +lib/coq-core/vernac/comHints.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comHints.cmx +lib/coq-core/vernac/comHints.ml +lib/coq-core/vernac/comHints.mli +lib/coq-core/vernac/comInductive.cmi +lib/coq-core/vernac/comInductive.cmt +lib/coq-core/vernac/comInductive.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comInductive.cmx +lib/coq-core/vernac/comInductive.ml +lib/coq-core/vernac/comInductive.mli +lib/coq-core/vernac/comPrimitive.cmi +lib/coq-core/vernac/comPrimitive.cmt +lib/coq-core/vernac/comPrimitive.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comPrimitive.cmx +lib/coq-core/vernac/comPrimitive.ml +lib/coq-core/vernac/comPrimitive.mli +lib/coq-core/vernac/comProgramFixpoint.cmi +lib/coq-core/vernac/comProgramFixpoint.cmt +lib/coq-core/vernac/comProgramFixpoint.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comProgramFixpoint.cmx +lib/coq-core/vernac/comProgramFixpoint.ml +lib/coq-core/vernac/comProgramFixpoint.mli +lib/coq-core/vernac/comSearch.cmi +lib/coq-core/vernac/comSearch.cmt +lib/coq-core/vernac/comSearch.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comSearch.cmx +lib/coq-core/vernac/comSearch.ml +lib/coq-core/vernac/comSearch.mli +lib/coq-core/vernac/comTactic.cmi +lib/coq-core/vernac/comTactic.cmt +lib/coq-core/vernac/comTactic.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/comTactic.cmx +lib/coq-core/vernac/comTactic.ml +lib/coq-core/vernac/comTactic.mli +lib/coq-core/vernac/debugHook.cmi +lib/coq-core/vernac/debugHook.cmt +lib/coq-core/vernac/debugHook.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/debugHook.cmx +lib/coq-core/vernac/debugHook.ml +lib/coq-core/vernac/debugHook.mli +lib/coq-core/vernac/declare.cmi +lib/coq-core/vernac/declare.cmt +lib/coq-core/vernac/declare.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/declare.cmx +lib/coq-core/vernac/declare.ml +lib/coq-core/vernac/declare.mli +lib/coq-core/vernac/declareInd.cmi +lib/coq-core/vernac/declareInd.cmt +lib/coq-core/vernac/declareInd.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/declareInd.cmx +lib/coq-core/vernac/declareInd.ml +lib/coq-core/vernac/declareInd.mli +lib/coq-core/vernac/declareUctx.cmi +lib/coq-core/vernac/declareUctx.cmt +lib/coq-core/vernac/declareUctx.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/declareUctx.cmx +lib/coq-core/vernac/declareUctx.ml +lib/coq-core/vernac/declareUctx.mli +lib/coq-core/vernac/declareUniv.cmi +lib/coq-core/vernac/declareUniv.cmt +lib/coq-core/vernac/declareUniv.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/declareUniv.cmx +lib/coq-core/vernac/declareUniv.ml +lib/coq-core/vernac/declareUniv.mli +lib/coq-core/vernac/declaremods.cmi +lib/coq-core/vernac/declaremods.cmt +lib/coq-core/vernac/declaremods.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/declaremods.cmx +lib/coq-core/vernac/declaremods.ml +lib/coq-core/vernac/declaremods.mli +lib/coq-core/vernac/egramcoq.cmi +lib/coq-core/vernac/egramcoq.cmt +lib/coq-core/vernac/egramcoq.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/egramcoq.cmx +lib/coq-core/vernac/egramcoq.ml +lib/coq-core/vernac/egramcoq.mli +lib/coq-core/vernac/egramml.cmi +lib/coq-core/vernac/egramml.cmt +lib/coq-core/vernac/egramml.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/egramml.cmx +lib/coq-core/vernac/egramml.ml +lib/coq-core/vernac/egramml.mli +lib/coq-core/vernac/future.cmi +lib/coq-core/vernac/future.cmt +lib/coq-core/vernac/future.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/future.cmx +lib/coq-core/vernac/future.ml +lib/coq-core/vernac/future.mli +lib/coq-core/vernac/g_proofs.cmi +lib/coq-core/vernac/g_proofs.cmt +${PLIST.ocaml-opt}lib/coq-core/vernac/g_proofs.cmx +lib/coq-core/vernac/g_proofs.ml +lib/coq-core/vernac/g_vernac.cmi +lib/coq-core/vernac/g_vernac.cmt +${PLIST.ocaml-opt}lib/coq-core/vernac/g_vernac.cmx +lib/coq-core/vernac/g_vernac.ml +lib/coq-core/vernac/himsg.cmi +lib/coq-core/vernac/himsg.cmt +lib/coq-core/vernac/himsg.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/himsg.cmx +lib/coq-core/vernac/himsg.ml +lib/coq-core/vernac/himsg.mli +lib/coq-core/vernac/indschemes.cmi +lib/coq-core/vernac/indschemes.cmt +lib/coq-core/vernac/indschemes.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/indschemes.cmx +lib/coq-core/vernac/indschemes.ml +lib/coq-core/vernac/indschemes.mli +lib/coq-core/vernac/library.cmi +lib/coq-core/vernac/library.cmt +lib/coq-core/vernac/library.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/library.cmx +lib/coq-core/vernac/library.ml +lib/coq-core/vernac/library.mli +lib/coq-core/vernac/loadpath.cmi +lib/coq-core/vernac/loadpath.cmt +lib/coq-core/vernac/loadpath.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/loadpath.cmx +lib/coq-core/vernac/loadpath.ml +lib/coq-core/vernac/loadpath.mli +lib/coq-core/vernac/locality.cmi +lib/coq-core/vernac/locality.cmt +lib/coq-core/vernac/locality.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/locality.cmx +lib/coq-core/vernac/locality.ml +lib/coq-core/vernac/locality.mli +lib/coq-core/vernac/metasyntax.cmi +lib/coq-core/vernac/metasyntax.cmt +lib/coq-core/vernac/metasyntax.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/metasyntax.cmx +lib/coq-core/vernac/metasyntax.ml +lib/coq-core/vernac/metasyntax.mli +lib/coq-core/vernac/mltop.cmi +lib/coq-core/vernac/mltop.cmt +lib/coq-core/vernac/mltop.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/mltop.cmx +lib/coq-core/vernac/mltop.ml +lib/coq-core/vernac/mltop.mli +lib/coq-core/vernac/opaques.cmi +lib/coq-core/vernac/opaques.cmt +lib/coq-core/vernac/opaques.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/opaques.cmx +lib/coq-core/vernac/opaques.ml +lib/coq-core/vernac/opaques.mli +lib/coq-core/vernac/ppvernac.cmi +lib/coq-core/vernac/ppvernac.cmt +lib/coq-core/vernac/ppvernac.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/ppvernac.cmx +lib/coq-core/vernac/ppvernac.ml +lib/coq-core/vernac/ppvernac.mli +lib/coq-core/vernac/prettyp.cmi +lib/coq-core/vernac/prettyp.cmt +lib/coq-core/vernac/prettyp.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/prettyp.cmx +lib/coq-core/vernac/prettyp.ml +lib/coq-core/vernac/prettyp.mli +lib/coq-core/vernac/printmod.cmi +lib/coq-core/vernac/printmod.cmt +lib/coq-core/vernac/printmod.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/printmod.cmx +lib/coq-core/vernac/printmod.ml +lib/coq-core/vernac/printmod.mli +lib/coq-core/vernac/proof_using.cmi +lib/coq-core/vernac/proof_using.cmt +lib/coq-core/vernac/proof_using.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/proof_using.cmx +lib/coq-core/vernac/proof_using.ml +lib/coq-core/vernac/proof_using.mli +lib/coq-core/vernac/pvernac.cmi +lib/coq-core/vernac/pvernac.cmt +lib/coq-core/vernac/pvernac.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/pvernac.cmx +lib/coq-core/vernac/pvernac.ml +lib/coq-core/vernac/pvernac.mli +lib/coq-core/vernac/recLemmas.cmi +lib/coq-core/vernac/recLemmas.cmt +lib/coq-core/vernac/recLemmas.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/recLemmas.cmx +lib/coq-core/vernac/recLemmas.ml +lib/coq-core/vernac/recLemmas.mli +lib/coq-core/vernac/record.cmi +lib/coq-core/vernac/record.cmt +lib/coq-core/vernac/record.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/record.cmx +lib/coq-core/vernac/record.ml +lib/coq-core/vernac/record.mli +lib/coq-core/vernac/retrieveObl.cmi +lib/coq-core/vernac/retrieveObl.cmt +lib/coq-core/vernac/retrieveObl.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/retrieveObl.cmx +lib/coq-core/vernac/retrieveObl.ml +lib/coq-core/vernac/retrieveObl.mli +lib/coq-core/vernac/search.cmi +lib/coq-core/vernac/search.cmt +lib/coq-core/vernac/search.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/search.cmx +lib/coq-core/vernac/search.ml +lib/coq-core/vernac/search.mli +lib/coq-core/vernac/topfmt.cmi +lib/coq-core/vernac/topfmt.cmt +lib/coq-core/vernac/topfmt.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/topfmt.cmx +lib/coq-core/vernac/topfmt.ml +lib/coq-core/vernac/topfmt.mli +${PLIST.ocaml-opt}lib/coq-core/vernac/vernac.a +lib/coq-core/vernac/vernac.cma +${PLIST.ocaml-opt}lib/coq-core/vernac/vernac.cmxa +${PLIST.natdynlink}lib/coq-core/vernac/vernac.cmxs +lib/coq-core/vernac/vernac_classifier.cmi +lib/coq-core/vernac/vernac_classifier.cmt +lib/coq-core/vernac/vernac_classifier.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/vernac_classifier.cmx +lib/coq-core/vernac/vernac_classifier.ml +lib/coq-core/vernac/vernac_classifier.mli +lib/coq-core/vernac/vernacentries.cmi +lib/coq-core/vernac/vernacentries.cmt +lib/coq-core/vernac/vernacentries.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/vernacentries.cmx +lib/coq-core/vernac/vernacentries.ml +lib/coq-core/vernac/vernacentries.mli +lib/coq-core/vernac/vernacexpr.cmi +lib/coq-core/vernac/vernacexpr.cmt +${PLIST.ocaml-opt}lib/coq-core/vernac/vernacexpr.cmx +lib/coq-core/vernac/vernacexpr.ml +lib/coq-core/vernac/vernacextend.cmi +lib/coq-core/vernac/vernacextend.cmt +lib/coq-core/vernac/vernacextend.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/vernacextend.cmx +lib/coq-core/vernac/vernacextend.ml +lib/coq-core/vernac/vernacextend.mli +lib/coq-core/vernac/vernacinterp.cmi +lib/coq-core/vernac/vernacinterp.cmt +lib/coq-core/vernac/vernacinterp.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/vernacinterp.cmx +lib/coq-core/vernac/vernacinterp.ml +lib/coq-core/vernac/vernacinterp.mli +lib/coq-core/vernac/vernacprop.cmi +lib/coq-core/vernac/vernacprop.cmt +lib/coq-core/vernac/vernacprop.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/vernacprop.cmx +lib/coq-core/vernac/vernacprop.ml +lib/coq-core/vernac/vernacprop.mli +lib/coq-core/vernac/vernacstate.cmi +lib/coq-core/vernac/vernacstate.cmt +lib/coq-core/vernac/vernacstate.cmti +${PLIST.ocaml-opt}lib/coq-core/vernac/vernacstate.cmx +lib/coq-core/vernac/vernacstate.ml +lib/coq-core/vernac/vernacstate.mli +${PLIST.ocaml-opt}lib/coq-core/vm/coqrun.a +lib/coq-core/vm/coqrun.cma +lib/coq-core/vm/coqrun.cmi +lib/coq-core/vm/coqrun.cmt +${PLIST.ocaml-opt}lib/coq-core/vm/coqrun.cmx +${PLIST.ocaml-opt}lib/coq-core/vm/coqrun.cmxa +${PLIST.natdynlink}lib/coq-core/vm/coqrun.cmxs +lib/coq-core/vm/coqrun.ml +${PLIST.ocaml-opt}lib/coq-core/vm/libcoqrun_stubs.a lib/coq/theories/Arith/Arith.glob lib/coq/theories/Arith/Arith.v lib/coq/theories/Arith/Arith.vo @@ -1031,6 +3075,10 @@ lib/coq/theories/Arith/Bool_nat.glob lib/coq/theories/Arith/Bool_nat.v lib/coq/theories/Arith/Bool_nat.vo lib/coq/theories/Arith/Bool_nat.vos +lib/coq/theories/Arith/Cantor.glob +lib/coq/theories/Arith/Cantor.v +lib/coq/theories/Arith/Cantor.vo +lib/coq/theories/Arith/Cantor.vos lib/coq/theories/Arith/Compare.glob lib/coq/theories/Arith/Compare.v lib/coq/theories/Arith/Compare.vo @@ -1103,38 +3151,10 @@ lib/coq/theories/Arith/Wf_nat.glob lib/coq/theories/Arith/Wf_nat.v lib/coq/theories/Arith/Wf_nat.vo lib/coq/theories/Arith/Wf_nat.vos -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.o -lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmi -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmx -${PLIST.natdynlink}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.o +lib/coq/theories/Array/PArray.glob +lib/coq/theories/Array/PArray.v +lib/coq/theories/Array/PArray.vo +lib/coq/theories/Array/PArray.vos lib/coq/theories/Bool/Bool.glob lib/coq/theories/Bool/Bool.v lib/coq/theories/Bool/Bool.vo @@ -1167,66 +3187,6 @@ lib/coq/theories/Bool/Zerob.glob lib/coq/theories/Bool/Zerob.v lib/coq/theories/Bool/Zerob.vo lib/coq/theories/Bool/Zerob.vos -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Init.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.o -lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmi -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmx -${PLIST.natdynlink}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.o lib/coq/theories/Classes/CEquivalence.glob lib/coq/theories/Classes/CEquivalence.v lib/coq/theories/Classes/CEquivalence.vo @@ -1287,122 +3247,22 @@ lib/coq/theories/Classes/SetoidTactics.g lib/coq/theories/Classes/SetoidTactics.v lib/coq/theories/Classes/SetoidTactics.vo lib/coq/theories/Classes/SetoidTactics.vos -lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmi -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmx -${PLIST.natdynlink}lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.o -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq810.cmi -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq810.cmx -${PLIST.natdynlink}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq810.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq810.o -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq811.cmi -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq811.cmx -${PLIST.natdynlink}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq811.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq811.o -lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq812.cmi -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq812.cmx -${PLIST.natdynlink}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq812.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Compat/.coq-native/NCoq_Compat_Coq812.o lib/coq/theories/Compat/AdmitAxiom.glob lib/coq/theories/Compat/AdmitAxiom.v lib/coq/theories/Compat/AdmitAxiom.vo lib/coq/theories/Compat/AdmitAxiom.vos -lib/coq/theories/Compat/Coq810.glob -lib/coq/theories/Compat/Coq810.v -lib/coq/theories/Compat/Coq810.vo -lib/coq/theories/Compat/Coq810.vos -lib/coq/theories/Compat/Coq811.glob -lib/coq/theories/Compat/Coq811.v -lib/coq/theories/Compat/Coq811.vo -lib/coq/theories/Compat/Coq811.vos -lib/coq/theories/Compat/Coq812.glob -lib/coq/theories/Compat/Coq812.v -lib/coq/theories/Compat/Coq812.vo -lib/coq/theories/Compat/Coq812.vos -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.o -lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmi -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmx -${PLIST.natdynlink}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmxs -${PLIST.ocaml-opt}lib/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.o +lib/coq/theories/Compat/Coq813.glob +lib/coq/theories/Compat/Coq813.v +lib/coq/theories/Compat/Coq813.vo +lib/coq/theories/Compat/Coq813.vos +lib/coq/theories/Compat/Coq814.glob +lib/coq/theories/Compat/Coq814.v +lib/coq/theories/Compat/Coq814.vo +lib/coq/theories/Compat/Coq814.vos +lib/coq/theories/Compat/Coq815.glob +lib/coq/theories/Compat/Coq815.v +lib/coq/theories/Compat/Coq815.vo +lib/coq/theories/Compat/Coq815.vos lib/coq/theories/FSets/FMapAVL.glob lib/coq/theories/FSets/FMapAVL.v lib/coq/theories/FSets/FMapAVL.vo @@ -1487,34 +3347,6 @@ lib/coq/theories/FSets/FSets.glob lib/coq/theories/FSets/FSets.v lib/coq/theories/FSets/FSets.vo lib/coq/theories/FSets/FSets.vos -lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.o -lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.o -lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.o -lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.o -lib/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.o -lib/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.o -lib/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.cmx -${PLIST.natdynlink}lib/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.o lib/coq/theories/Floats/FloatAxioms.glob lib/coq/theories/Floats/FloatAxioms.v lib/coq/theories/Floats/FloatAxioms.vo @@ -1543,70 +3375,6 @@ lib/coq/theories/Floats/SpecFloat.glob lib/coq/theories/Floats/SpecFloat.v lib/coq/theories/Floats/SpecFloat.vo lib/coq/theories/Floats/SpecFloat.vos -lib/coq/theories/Init/.coq-native/NCoq_Init_Byte.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Byte.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Byte.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Byte.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Decimal.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Decimal.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Decimal.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Decimal.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Logic.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Logic_Type.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Ltac.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Ltac.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Ltac.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Ltac.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Nat.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Notations.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Numeral.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Numeral.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Numeral.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Numeral.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Peano.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Prelude.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Specif.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Tactics.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Tauto.o -lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmi -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmx -${PLIST.natdynlink}lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Init/.coq-native/NCoq_Init_Wf.o lib/coq/theories/Init/Byte.glob lib/coq/theories/Init/Byte.v lib/coq/theories/Init/Byte.vo @@ -1643,10 +3411,10 @@ lib/coq/theories/Init/Notations.glob lib/coq/theories/Init/Notations.v lib/coq/theories/Init/Notations.vo lib/coq/theories/Init/Notations.vos -lib/coq/theories/Init/Numeral.glob -lib/coq/theories/Init/Numeral.v -lib/coq/theories/Init/Numeral.vo -lib/coq/theories/Init/Numeral.vos +lib/coq/theories/Init/Number.glob +lib/coq/theories/Init/Number.v +lib/coq/theories/Init/Number.vo +lib/coq/theories/Init/Number.vos lib/coq/theories/Init/Peano.glob lib/coq/theories/Init/Peano.v lib/coq/theories/Init/Peano.vo @@ -1671,38 +3439,6 @@ lib/coq/theories/Init/Wf.glob lib/coq/theories/Init/Wf.v lib/coq/theories/Init/Wf.vo lib/coq/theories/Init/Wf.vos -lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_List.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.o -lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmi -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmx -${PLIST.natdynlink}lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.o lib/coq/theories/Lists/List.glob lib/coq/theories/Lists/List.v lib/coq/theories/Lists/List.vo @@ -1735,154 +3471,10 @@ lib/coq/theories/Lists/Streams.glob lib/coq/theories/Lists/Streams.v lib/coq/theories/Lists/Streams.vo lib/coq/theories/Lists/Streams.vos -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Description.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.o -lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmi -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmx -${PLIST.natdynlink}lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.o +lib/coq/theories/Logic/Adjointification.glob +lib/coq/theories/Logic/Adjointification.v +lib/coq/theories/Logic/Adjointification.vo +lib/coq/theories/Logic/Adjointification.vos lib/coq/theories/Logic/Berardi.glob lib/coq/theories/Logic/Berardi.v lib/coq/theories/Logic/Berardi.vo @@ -2031,58 +3623,6 @@ lib/coq/theories/Logic/WeakFan.glob lib/coq/theories/Logic/WeakFan.v lib/coq/theories/Logic/WeakFan.vo lib/coq/theories/Logic/WeakFan.vos -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.o -lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmi -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmx -${PLIST.natdynlink}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmxs -${PLIST.ocaml-opt}lib/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.o lib/coq/theories/MSets/MSetAVL.glob lib/coq/theories/MSets/MSetAVL.v lib/coq/theories/MSets/MSetAVL.vo @@ -2135,46 +3675,6 @@ lib/coq/theories/MSets/MSets.glob lib/coq/theories/MSets/MSets.v lib/coq/theories/MSets/MSets.vo lib/coq/theories/MSets/MSets.vos -lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndigits.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndist.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.o -lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmx -${PLIST.natdynlink}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.o lib/coq/theories/NArith/BinNat.glob lib/coq/theories/NArith/BinNat.v lib/coq/theories/NArith/BinNat.vo @@ -2215,78 +3715,6 @@ lib/coq/theories/NArith/Nsqrt_def.glob lib/coq/theories/NArith/Nsqrt_def.v lib/coq/theories/NArith/Nsqrt_def.vo lib/coq/theories/NArith/Nsqrt_def.vos -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.o -lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.o lib/coq/theories/Numbers/AltBinNotations.glob lib/coq/theories/Numbers/AltBinNotations.v lib/coq/theories/Numbers/AltBinNotations.vo @@ -2295,18 +3723,10 @@ lib/coq/theories/Numbers/BinNums.glob lib/coq/theories/Numbers/BinNums.v lib/coq/theories/Numbers/BinNums.vo lib/coq/theories/Numbers/BinNums.vos -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.o -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.o -lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.o +lib/coq/theories/Numbers/Cyclic/Abstract/CarryType.glob +lib/coq/theories/Numbers/Cyclic/Abstract/CarryType.v +lib/coq/theories/Numbers/Cyclic/Abstract/CarryType.vo +lib/coq/theories/Numbers/Cyclic/Abstract/CarryType.vos lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.glob lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.v lib/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vo @@ -2319,18 +3739,6 @@ lib/coq/theories/Numbers/Cyclic/Abstract lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.v lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vo lib/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vos -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Cyclic31.o -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Int31.o -lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int31/.coq-native/NCoq_Numbers_Cyclic_Int31_Ring31.o lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.glob lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.v lib/coq/theories/Numbers/Cyclic/Int31/Cyclic31.vo @@ -2343,18 +3751,6 @@ lib/coq/theories/Numbers/Cyclic/Int31/Ri lib/coq/theories/Numbers/Cyclic/Int31/Ring31.v lib/coq/theories/Numbers/Cyclic/Int31/Ring31.vo lib/coq/theories/Numbers/Cyclic/Int31/Ring31.vos -lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.o -lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Int63.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Int63.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Int63.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Int63.o -lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.o lib/coq/theories/Numbers/Cyclic/Int63/Cyclic63.glob lib/coq/theories/Numbers/Cyclic/Int63/Cyclic63.v lib/coq/theories/Numbers/Cyclic/Int63/Cyclic63.vo @@ -2363,14 +3759,22 @@ lib/coq/theories/Numbers/Cyclic/Int63/In lib/coq/theories/Numbers/Cyclic/Int63/Int63.v lib/coq/theories/Numbers/Cyclic/Int63/Int63.vo lib/coq/theories/Numbers/Cyclic/Int63/Int63.vos +lib/coq/theories/Numbers/Cyclic/Int63/PrimInt63.glob +lib/coq/theories/Numbers/Cyclic/Int63/PrimInt63.v +lib/coq/theories/Numbers/Cyclic/Int63/PrimInt63.vo +lib/coq/theories/Numbers/Cyclic/Int63/PrimInt63.vos lib/coq/theories/Numbers/Cyclic/Int63/Ring63.glob lib/coq/theories/Numbers/Cyclic/Int63/Ring63.v lib/coq/theories/Numbers/Cyclic/Int63/Ring63.vo lib/coq/theories/Numbers/Cyclic/Int63/Ring63.vos -lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Cyclic/ZModulo/.coq-native/NCoq_Numbers_Cyclic_ZModulo_ZModulo.o +lib/coq/theories/Numbers/Cyclic/Int63/Sint63.glob +lib/coq/theories/Numbers/Cyclic/Int63/Sint63.v +lib/coq/theories/Numbers/Cyclic/Int63/Sint63.vo +lib/coq/theories/Numbers/Cyclic/Int63/Sint63.vos +lib/coq/theories/Numbers/Cyclic/Int63/Uint63.glob +lib/coq/theories/Numbers/Cyclic/Int63/Uint63.v +lib/coq/theories/Numbers/Cyclic/Int63/Uint63.vo +lib/coq/theories/Numbers/Cyclic/Int63/Uint63.vos lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.glob lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.v lib/coq/theories/Numbers/Cyclic/ZModulo/ZModulo.vo @@ -2395,6 +3799,10 @@ lib/coq/theories/Numbers/DecimalQ.glob lib/coq/theories/Numbers/DecimalQ.v lib/coq/theories/Numbers/DecimalQ.vo lib/coq/theories/Numbers/DecimalQ.vos +lib/coq/theories/Numbers/DecimalR.glob +lib/coq/theories/Numbers/DecimalR.v +lib/coq/theories/Numbers/DecimalR.vo +lib/coq/theories/Numbers/DecimalR.vos lib/coq/theories/Numbers/DecimalString.glob lib/coq/theories/Numbers/DecimalString.v lib/coq/theories/Numbers/DecimalString.vo @@ -2423,6 +3831,10 @@ lib/coq/theories/Numbers/HexadecimalQ.gl lib/coq/theories/Numbers/HexadecimalQ.v lib/coq/theories/Numbers/HexadecimalQ.vo lib/coq/theories/Numbers/HexadecimalQ.vos +lib/coq/theories/Numbers/HexadecimalR.glob +lib/coq/theories/Numbers/HexadecimalR.v +lib/coq/theories/Numbers/HexadecimalR.vo +lib/coq/theories/Numbers/HexadecimalR.vos lib/coq/theories/Numbers/HexadecimalString.glob lib/coq/theories/Numbers/HexadecimalString.v lib/coq/theories/Numbers/HexadecimalString.vo @@ -2431,78 +3843,6 @@ lib/coq/theories/Numbers/HexadecimalZ.gl lib/coq/theories/Numbers/HexadecimalZ.v lib/coq/theories/Numbers/HexadecimalZ.vo lib/coq/theories/Numbers/HexadecimalZ.vos -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.o -lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.o lib/coq/theories/Numbers/Integer/Abstract/ZAdd.glob lib/coq/theories/Numbers/Integer/Abstract/ZAdd.v lib/coq/theories/Numbers/Integer/Abstract/ZAdd.vo @@ -2575,18 +3915,10 @@ lib/coq/theories/Numbers/Integer/Abstrac lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.v lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vo lib/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vos -lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.o lib/coq/theories/Numbers/Integer/Binary/ZBinary.glob lib/coq/theories/Numbers/Integer/Binary/ZBinary.v lib/coq/theories/Numbers/Integer/Binary/ZBinary.vo lib/coq/theories/Numbers/Integer/Binary/ZBinary.vos -lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.o lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.glob lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.v lib/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vo @@ -2595,70 +3927,6 @@ lib/coq/theories/Numbers/NaryFunctions.g lib/coq/theories/Numbers/NaryFunctions.v lib/coq/theories/Numbers/NaryFunctions.vo lib/coq/theories/Numbers/NaryFunctions.vos -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.o -lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.o lib/coq/theories/Numbers/NatInt/NZAdd.glob lib/coq/theories/Numbers/NatInt/NZAdd.v lib/coq/theories/Numbers/NatInt/NZAdd.vo @@ -2723,86 +3991,6 @@ lib/coq/theories/Numbers/NatInt/NZSqrt.g lib/coq/theories/Numbers/NatInt/NZSqrt.v lib/coq/theories/Numbers/NatInt/NZSqrt.vo lib/coq/theories/Numbers/NatInt/NZSqrt.vos -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.o -lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.o lib/coq/theories/Numbers/Natural/Abstract/NAdd.glob lib/coq/theories/Numbers/Natural/Abstract/NAdd.v lib/coq/theories/Numbers/Natural/Abstract/NAdd.vo @@ -2883,18 +4071,10 @@ lib/coq/theories/Numbers/Natural/Abstrac lib/coq/theories/Numbers/Natural/Abstract/NSub.v lib/coq/theories/Numbers/Natural/Abstract/NSub.vo lib/coq/theories/Numbers/Natural/Abstract/NSub.vos -lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.o lib/coq/theories/Numbers/Natural/Binary/NBinary.glob lib/coq/theories/Numbers/Natural/Binary/NBinary.v lib/coq/theories/Numbers/Natural/Binary/NBinary.vo lib/coq/theories/Numbers/Natural/Binary/NBinary.vos -lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmi -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmx -${PLIST.natdynlink}lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Numbers/Natural/Peano/.coq-native/NCoq_Numbers_Natural_Peano_NPeano.o lib/coq/theories/Numbers/Natural/Peano/NPeano.glob lib/coq/theories/Numbers/Natural/Peano/NPeano.v lib/coq/theories/Numbers/Natural/Peano/NPeano.vo @@ -2903,26 +4083,6 @@ lib/coq/theories/Numbers/NumPrelude.glob lib/coq/theories/Numbers/NumPrelude.v lib/coq/theories/Numbers/NumPrelude.vo lib/coq/theories/Numbers/NumPrelude.vos -lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmi -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmx -${PLIST.natdynlink}lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmxs -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.o -lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmi -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmx -${PLIST.natdynlink}lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmxs -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.o -lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmi -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmx -${PLIST.natdynlink}lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmxs -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.o -lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmi -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmx -${PLIST.natdynlink}lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.o -lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmi -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmx -${PLIST.natdynlink}lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.o lib/coq/theories/PArith/BinPos.glob lib/coq/theories/PArith/BinPos.v lib/coq/theories/PArith/BinPos.vo @@ -2943,42 +4103,6 @@ lib/coq/theories/PArith/Pnat.glob lib/coq/theories/PArith/Pnat.v lib/coq/theories/PArith/Pnat.vo lib/coq/theories/PArith/Pnat.vos -lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Basics.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Combinators.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Equality.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Program.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Program.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Subset.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Syntax.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Tactics.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Utils.o -lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmi -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmx -${PLIST.natdynlink}lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Program/.coq-native/NCoq_Program_Wf.o lib/coq/theories/Program/Basics.glob lib/coq/theories/Program/Basics.v lib/coq/theories/Program/Basics.vo @@ -3015,58 +4139,6 @@ lib/coq/theories/Program/Wf.glob lib/coq/theories/Program/Wf.v lib/coq/theories/Program/Wf.vo lib/coq/theories/Program/Wf.vos -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.o -lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmi -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmx -${PLIST.natdynlink}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmxs -${PLIST.ocaml-opt}lib/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.o lib/coq/theories/QArith/QArith.glob lib/coq/theories/QArith/QArith.v lib/coq/theories/QArith/QArith.vo @@ -3119,306 +4191,6 @@ lib/coq/theories/QArith/Qround.glob lib/coq/theories/QArith/Qround.v lib/coq/theories/QArith/Qround.vo lib/coq/theories/QArith/Qround.vos -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RList.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.o -lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.o -lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.o lib/coq/theories/Reals/Abstract/ConstructiveAbs.glob lib/coq/theories/Reals/Abstract/ConstructiveAbs.v lib/coq/theories/Reals/Abstract/ConstructiveAbs.vo @@ -3467,22 +4239,6 @@ lib/coq/theories/Reals/Binomial.glob lib/coq/theories/Reals/Binomial.v lib/coq/theories/Reals/Binomial.vo lib/coq/theories/Reals/Binomial.vos -lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.o -lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.o -lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.o -lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.cmi -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.cmx -${PLIST.natdynlink}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.o lib/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.glob lib/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.v lib/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.vo @@ -3495,10 +4251,22 @@ lib/coq/theories/Reals/Cauchy/Constructi lib/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.v lib/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.vo lib/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.vos +lib/coq/theories/Reals/Cauchy/ConstructiveExtra.glob +lib/coq/theories/Reals/Cauchy/ConstructiveExtra.v +lib/coq/theories/Reals/Cauchy/ConstructiveExtra.vo +lib/coq/theories/Reals/Cauchy/ConstructiveExtra.vos lib/coq/theories/Reals/Cauchy/ConstructiveRcomplete.glob lib/coq/theories/Reals/Cauchy/ConstructiveRcomplete.v lib/coq/theories/Reals/Cauchy/ConstructiveRcomplete.vo lib/coq/theories/Reals/Cauchy/ConstructiveRcomplete.vos +lib/coq/theories/Reals/Cauchy/PosExtra.glob +lib/coq/theories/Reals/Cauchy/PosExtra.v +lib/coq/theories/Reals/Cauchy/PosExtra.vo +lib/coq/theories/Reals/Cauchy/PosExtra.vos +lib/coq/theories/Reals/Cauchy/QExtra.glob +lib/coq/theories/Reals/Cauchy/QExtra.v +lib/coq/theories/Reals/Cauchy/QExtra.vo +lib/coq/theories/Reals/Cauchy/QExtra.vos lib/coq/theories/Reals/Cauchy_prod.glob lib/coq/theories/Reals/Cauchy_prod.v lib/coq/theories/Reals/Cauchy_prod.vo @@ -3751,22 +4519,6 @@ lib/coq/theories/Reals/Sqrt_reg.glob lib/coq/theories/Reals/Sqrt_reg.v lib/coq/theories/Reals/Sqrt_reg.vo lib/coq/theories/Reals/Sqrt_reg.vos -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmi -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmx -${PLIST.natdynlink}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.o -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmi -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmx -${PLIST.natdynlink}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.o -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmi -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmx -${PLIST.natdynlink}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.o -lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmi -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmx -${PLIST.natdynlink}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.o lib/coq/theories/Relations/Operators_Properties.glob lib/coq/theories/Relations/Operators_Properties.v lib/coq/theories/Relations/Operators_Properties.vo @@ -3783,102 +4535,10 @@ lib/coq/theories/Relations/Relations.glo lib/coq/theories/Relations/Relations.v lib/coq/theories/Relations/Relations.vo lib/coq/theories/Relations/Relations.vos -lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmi -${PLIST.ocaml-opt}lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmx -${PLIST.natdynlink}lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.o lib/coq/theories/Setoids/Setoid.glob lib/coq/theories/Setoids/Setoid.v lib/coq/theories/Setoids/Setoid.vo lib/coq/theories/Setoids/Setoid.vos -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Image.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.o -lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmx -${PLIST.natdynlink}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.o lib/coq/theories/Sets/Classical_sets.glob lib/coq/theories/Sets/Classical_sets.v lib/coq/theories/Sets/Classical_sets.vo @@ -3967,38 +4627,6 @@ lib/coq/theories/Sets/Uniset.glob lib/coq/theories/Sets/Uniset.v lib/coq/theories/Sets/Uniset.vo lib/coq/theories/Sets/Uniset.vos -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.o -lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmi -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmx -${PLIST.natdynlink}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.o lib/coq/theories/Sorting/CPermutation.glob lib/coq/theories/Sorting/CPermutation.v lib/coq/theories/Sorting/CPermutation.vo @@ -4031,34 +4659,6 @@ lib/coq/theories/Sorting/Sorting.glob lib/coq/theories/Sorting/Sorting.v lib/coq/theories/Sorting/Sorting.vo lib/coq/theories/Sorting/Sorting.vos -lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.o -lib/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.o -lib/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.o -lib/coq/theories/Strings/.coq-native/NCoq_Strings_ByteVector.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_ByteVector.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_ByteVector.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_ByteVector.o -lib/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.o -lib/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.o -lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmi -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmx -${PLIST.natdynlink}lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Strings/.coq-native/NCoq_Strings_String.o lib/coq/theories/Strings/Ascii.glob lib/coq/theories/Strings/Ascii.v lib/coq/theories/Strings/Ascii.vo @@ -4087,62 +4687,6 @@ lib/coq/theories/Strings/String.glob lib/coq/theories/Strings/String.v lib/coq/theories/Strings/String.vo lib/coq/theories/Strings/String.vos -lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.o -lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmi -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmx -${PLIST.natdynlink}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.o lib/coq/theories/Structures/DecidableType.glob lib/coq/theories/Structures/DecidableType.v lib/coq/theories/Structures/DecidableType.vo @@ -4199,14 +4743,6 @@ lib/coq/theories/Structures/OrdersTac.gl lib/coq/theories/Structures/OrdersTac.v lib/coq/theories/Structures/OrdersTac.vo lib/coq/theories/Structures/OrdersTac.vos -lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmi -${PLIST.ocaml-opt}lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmx -${PLIST.natdynlink}lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.o -lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmi -${PLIST.ocaml-opt}lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmx -${PLIST.natdynlink}lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.o lib/coq/theories/Unicode/Utf8.glob lib/coq/theories/Unicode/Utf8.v lib/coq/theories/Unicode/Utf8.vo @@ -4215,26 +4751,6 @@ lib/coq/theories/Unicode/Utf8_core.glob lib/coq/theories/Unicode/Utf8_core.v lib/coq/theories/Unicode/Utf8_core.vo lib/coq/theories/Unicode/Utf8_core.vos -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmi -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmx -${PLIST.natdynlink}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.o -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmi -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmx -${PLIST.natdynlink}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.o -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmi -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmx -${PLIST.natdynlink}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.o -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmi -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmx -${PLIST.natdynlink}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.o -lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmi -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmx -${PLIST.natdynlink}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.o lib/coq/theories/Vectors/Fin.glob lib/coq/theories/Vectors/Fin.v lib/coq/theories/Vectors/Fin.vo @@ -4255,42 +4771,6 @@ lib/coq/theories/Vectors/VectorSpec.glob lib/coq/theories/Vectors/VectorSpec.v lib/coq/theories/Vectors/VectorSpec.vo lib/coq/theories/Vectors/VectorSpec.vos -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.o -lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmi -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmx -${PLIST.natdynlink}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmxs -${PLIST.ocaml-opt}lib/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.o lib/coq/theories/Wellfounded/Disjoint_Union.glob lib/coq/theories/Wellfounded/Disjoint_Union.v lib/coq/theories/Wellfounded/Disjoint_Union.vo @@ -4327,130 +4807,6 @@ lib/coq/theories/Wellfounded/Wellfounded lib/coq/theories/Wellfounded/Wellfounded.v lib/coq/theories/Wellfounded/Wellfounded.vo lib/coq/theories/Wellfounded/Wellfounded.vos -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdigits.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.o -lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmi -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmx -${PLIST.natdynlink}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.o lib/coq/theories/ZArith/BinInt.glob lib/coq/theories/ZArith/BinInt.v lib/coq/theories/ZArith/BinInt.vo @@ -4575,18 +4931,6 @@ lib/coq/theories/ZArith/auxiliary.glob lib/coq/theories/ZArith/auxiliary.v lib/coq/theories/ZArith/auxiliary.vo lib/coq/theories/ZArith/auxiliary.vos -lib/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.cmi -${PLIST.ocaml-opt}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.cmx -${PLIST.natdynlink}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.cmxs -${PLIST.ocaml-opt}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.o -lib/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.cmi -${PLIST.ocaml-opt}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.cmx -${PLIST.natdynlink}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.cmxs -${PLIST.ocaml-opt}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.o -lib/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.cmi -${PLIST.ocaml-opt}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.cmx -${PLIST.natdynlink}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.cmxs -${PLIST.ocaml-opt}lib/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.o lib/coq/theories/btauto/Algebra.glob lib/coq/theories/btauto/Algebra.v lib/coq/theories/btauto/Algebra.vo @@ -4599,98 +4943,10 @@ lib/coq/theories/btauto/Reflect.glob lib/coq/theories/btauto/Reflect.v lib/coq/theories/btauto/Reflect.vo lib/coq/theories/btauto/Reflect.vos -lib/coq/theories/derive/.coq-native/NCoq_derive_Derive.cmi -${PLIST.ocaml-opt}lib/coq/theories/derive/.coq-native/NCoq_derive_Derive.cmx -${PLIST.natdynlink}lib/coq/theories/derive/.coq-native/NCoq_derive_Derive.cmxs -${PLIST.ocaml-opt}lib/coq/theories/derive/.coq-native/NCoq_derive_Derive.o lib/coq/theories/derive/Derive.glob lib/coq/theories/derive/Derive.v lib/coq/theories/derive/Derive.vo lib/coq/theories/derive/Derive.vos -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBigIntConv.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.o -lib/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.cmi -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.cmx -${PLIST.natdynlink}lib/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.cmxs -${PLIST.ocaml-opt}lib/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.o lib/coq/theories/extraction/ExtrHaskellBasic.glob lib/coq/theories/extraction/ExtrHaskellBasic.v lib/coq/theories/extraction/ExtrHaskellBasic.vo @@ -4731,14 +4987,14 @@ lib/coq/theories/extraction/ExtrOCamlInt lib/coq/theories/extraction/ExtrOCamlInt63.v lib/coq/theories/extraction/ExtrOCamlInt63.vo lib/coq/theories/extraction/ExtrOCamlInt63.vos +lib/coq/theories/extraction/ExtrOCamlPArray.glob +lib/coq/theories/extraction/ExtrOCamlPArray.v +lib/coq/theories/extraction/ExtrOCamlPArray.vo +lib/coq/theories/extraction/ExtrOCamlPArray.vos lib/coq/theories/extraction/ExtrOcamlBasic.glob lib/coq/theories/extraction/ExtrOcamlBasic.v lib/coq/theories/extraction/ExtrOcamlBasic.vo lib/coq/theories/extraction/ExtrOcamlBasic.vos -lib/coq/theories/extraction/ExtrOcamlBigIntConv.glob -lib/coq/theories/extraction/ExtrOcamlBigIntConv.v -lib/coq/theories/extraction/ExtrOcamlBigIntConv.vo -lib/coq/theories/extraction/ExtrOcamlBigIntConv.vos lib/coq/theories/extraction/ExtrOcamlChar.glob lib/coq/theories/extraction/ExtrOcamlChar.v lib/coq/theories/extraction/ExtrOcamlChar.vo @@ -4775,14 +5031,6 @@ lib/coq/theories/extraction/Extraction.g lib/coq/theories/extraction/Extraction.v lib/coq/theories/extraction/Extraction.vo lib/coq/theories/extraction/Extraction.vos -lib/coq/theories/funind/.coq-native/NCoq_funind_FunInd.cmi -${PLIST.ocaml-opt}lib/coq/theories/funind/.coq-native/NCoq_funind_FunInd.cmx -${PLIST.natdynlink}lib/coq/theories/funind/.coq-native/NCoq_funind_FunInd.cmxs -${PLIST.ocaml-opt}lib/coq/theories/funind/.coq-native/NCoq_funind_FunInd.o -lib/coq/theories/funind/.coq-native/NCoq_funind_Recdef.cmi -${PLIST.ocaml-opt}lib/coq/theories/funind/.coq-native/NCoq_funind_Recdef.cmx -${PLIST.natdynlink}lib/coq/theories/funind/.coq-native/NCoq_funind_Recdef.cmxs -${PLIST.ocaml-opt}lib/coq/theories/funind/.coq-native/NCoq_funind_Recdef.o lib/coq/theories/funind/FunInd.glob lib/coq/theories/funind/FunInd.v lib/coq/theories/funind/FunInd.vo @@ -4791,114 +5039,6 @@ lib/coq/theories/funind/Recdef.glob lib/coq/theories/funind/Recdef.v lib/coq/theories/funind/Recdef.vo lib/coq/theories/funind/Recdef.vos -lib/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Env.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Env.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Env.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Env.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.o -lib/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.cmi -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.cmx -${PLIST.natdynlink}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.cmxs -${PLIST.ocaml-opt}lib/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.o lib/coq/theories/micromega/DeclConstant.glob lib/coq/theories/micromega/DeclConstant.v lib/coq/theories/micromega/DeclConstant.vo @@ -4999,22 +5139,34 @@ lib/coq/theories/micromega/ZifyInst.glob lib/coq/theories/micromega/ZifyInst.v lib/coq/theories/micromega/ZifyInst.vo lib/coq/theories/micromega/ZifyInst.vos +lib/coq/theories/micromega/ZifyInt63.glob +lib/coq/theories/micromega/ZifyInt63.v +lib/coq/theories/micromega/ZifyInt63.vo +lib/coq/theories/micromega/ZifyInt63.vos +lib/coq/theories/micromega/ZifyN.glob +lib/coq/theories/micromega/ZifyN.v +lib/coq/theories/micromega/ZifyN.vo +lib/coq/theories/micromega/ZifyN.vos +lib/coq/theories/micromega/ZifyNat.glob +lib/coq/theories/micromega/ZifyNat.v +lib/coq/theories/micromega/ZifyNat.vo +lib/coq/theories/micromega/ZifyNat.vos lib/coq/theories/micromega/ZifyPow.glob lib/coq/theories/micromega/ZifyPow.v lib/coq/theories/micromega/ZifyPow.vo lib/coq/theories/micromega/ZifyPow.vos +lib/coq/theories/micromega/ZifySint63.glob +lib/coq/theories/micromega/ZifySint63.v +lib/coq/theories/micromega/ZifySint63.vo +lib/coq/theories/micromega/ZifySint63.vos +lib/coq/theories/micromega/ZifyUint63.glob +lib/coq/theories/micromega/ZifyUint63.v +lib/coq/theories/micromega/ZifyUint63.vo +lib/coq/theories/micromega/ZifyUint63.vos lib/coq/theories/micromega/Ztac.glob lib/coq/theories/micromega/Ztac.v lib/coq/theories/micromega/Ztac.vo lib/coq/theories/micromega/Ztac.vos -lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmi -${PLIST.ocaml-opt}lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmx -${PLIST.natdynlink}lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmxs -${PLIST.ocaml-opt}lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.o -lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.cmi -${PLIST.ocaml-opt}lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.cmx -${PLIST.natdynlink}lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.o lib/coq/theories/nsatz/Nsatz.glob lib/coq/theories/nsatz/Nsatz.v lib/coq/theories/nsatz/Nsatz.vo @@ -5023,54 +5175,14 @@ lib/coq/theories/nsatz/NsatzTactic.glob lib/coq/theories/nsatz/NsatzTactic.v lib/coq/theories/nsatz/NsatzTactic.vo lib/coq/theories/nsatz/NsatzTactic.vos -lib/coq/theories/omega/.coq-native/NCoq_omega_Omega.cmi -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_Omega.cmx -${PLIST.natdynlink}lib/coq/theories/omega/.coq-native/NCoq_omega_Omega.cmxs -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_Omega.o -lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.cmi -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.cmx -${PLIST.natdynlink}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.cmxs -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.o -lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaPlugin.cmi -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaPlugin.cmx -${PLIST.natdynlink}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaPlugin.cmxs -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaPlugin.o -lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaTactic.cmi -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaTactic.cmx -${PLIST.natdynlink}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaTactic.cmxs -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_OmegaTactic.o -lib/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.cmi -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.cmx -${PLIST.natdynlink}lib/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.cmxs -${PLIST.ocaml-opt}lib/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.o -lib/coq/theories/omega/Omega.glob -lib/coq/theories/omega/Omega.v -lib/coq/theories/omega/Omega.vo -lib/coq/theories/omega/Omega.vos lib/coq/theories/omega/OmegaLemmas.glob lib/coq/theories/omega/OmegaLemmas.v lib/coq/theories/omega/OmegaLemmas.vo lib/coq/theories/omega/OmegaLemmas.vos -lib/coq/theories/omega/OmegaPlugin.glob -lib/coq/theories/omega/OmegaPlugin.v -lib/coq/theories/omega/OmegaPlugin.vo -lib/coq/theories/omega/OmegaPlugin.vos -lib/coq/theories/omega/OmegaTactic.glob -lib/coq/theories/omega/OmegaTactic.v -lib/coq/theories/omega/OmegaTactic.vo -lib/coq/theories/omega/OmegaTactic.vos lib/coq/theories/omega/PreOmega.glob lib/coq/theories/omega/PreOmega.v lib/coq/theories/omega/PreOmega.vo lib/coq/theories/omega/PreOmega.vos -lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.cmi -${PLIST.ocaml-opt}lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.cmx -${PLIST.natdynlink}lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.cmxs -${PLIST.ocaml-opt}lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.o -lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmi -${PLIST.ocaml-opt}lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmx -${PLIST.natdynlink}lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmxs -${PLIST.ocaml-opt}lib/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.o lib/coq/theories/rtauto/Bintree.glob lib/coq/theories/rtauto/Bintree.v lib/coq/theories/rtauto/Bintree.vo @@ -5079,102 +5191,6 @@ lib/coq/theories/rtauto/Rtauto.glob lib/coq/theories/rtauto/Rtauto.v lib/coq/theories/rtauto/Rtauto.vo lib/coq/theories/rtauto/Rtauto.vos -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.o -lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmi -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmx -${PLIST.natdynlink}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmxs -${PLIST.ocaml-opt}lib/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.o lib/coq/theories/setoid_ring/Algebra_syntax.glob lib/coq/theories/setoid_ring/Algebra_syntax.v lib/coq/theories/setoid_ring/Algebra_syntax.vo @@ -5271,30 +5287,6 @@ lib/coq/theories/setoid_ring/ZArithRing. lib/coq/theories/setoid_ring/ZArithRing.v lib/coq/theories/setoid_ring/ZArithRing.vo lib/coq/theories/setoid_ring/ZArithRing.vos -lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.cmx -${PLIST.natdynlink}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.o -lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.cmx -${PLIST.natdynlink}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.o -lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.cmx -${PLIST.natdynlink}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.o -lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.cmx -${PLIST.natdynlink}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.o -lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.cmx -${PLIST.natdynlink}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.o -lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.cmx -${PLIST.natdynlink}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.o lib/coq/theories/ssr/ssrbool.glob lib/coq/theories/ssr/ssrbool.v lib/coq/theories/ssr/ssrbool.vo @@ -5319,134 +5311,10 @@ lib/coq/theories/ssr/ssrunder.glob lib/coq/theories/ssr/ssrunder.v lib/coq/theories/ssr/ssrunder.vo lib/coq/theories/ssr/ssrunder.vos -lib/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmx -${PLIST.natdynlink}lib/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.o lib/coq/theories/ssrmatching/ssrmatching.glob lib/coq/theories/ssrmatching/ssrmatching.v lib/coq/theories/ssrmatching/ssrmatching.vo lib/coq/theories/ssrmatching/ssrmatching.vos -lib/coq/theories/ssrsearch/.coq-native/NCoq_ssrsearch_ssrsearch.cmi -${PLIST.ocaml-opt}lib/coq/theories/ssrsearch/.coq-native/NCoq_ssrsearch_ssrsearch.cmx -${PLIST.natdynlink}lib/coq/theories/ssrsearch/.coq-native/NCoq_ssrsearch_ssrsearch.cmxs -${PLIST.ocaml-opt}lib/coq/theories/ssrsearch/.coq-native/NCoq_ssrsearch_ssrsearch.o -lib/coq/theories/ssrsearch/ssrsearch.glob -lib/coq/theories/ssrsearch/ssrsearch.v -lib/coq/theories/ssrsearch/ssrsearch.vo -lib/coq/theories/ssrsearch/ssrsearch.vos -lib/coq/tools/CoqMakefile.in -lib/coq/tools/TimeFileMaker.py -lib/coq/tools/coqdoc/coqdoc.css -lib/coq/tools/coqdoc/coqdoc.sty -lib/coq/tools/make-both-single-timing-files.py -lib/coq/tools/make-both-time-files.py -lib/coq/tools/make-one-time-file.py -${PLIST.ocaml-opt}lib/coq/topbin/coqc_bin.cmx -${PLIST.ocaml-opt}lib/coq/topbin/coqproofworker_bin.cmx -${PLIST.ocaml-opt}lib/coq/topbin/coqqueryworker_bin.cmx -${PLIST.ocaml-opt}lib/coq/topbin/coqtacticworker_bin.cmx -${PLIST.ocaml-opt}lib/coq/topbin/coqtop_bin.cmx -lib/coq/toplevel/ccompile.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/ccompile.cmx -lib/coq/toplevel/coqargs.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/coqargs.cmx -lib/coq/toplevel/coqc.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/coqc.cmx -lib/coq/toplevel/coqcargs.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/coqcargs.cmx -lib/coq/toplevel/coqinit.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/coqinit.cmx -lib/coq/toplevel/coqloop.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/coqloop.cmx -lib/coq/toplevel/coqtop.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/coqtop.cmx -lib/coq/toplevel/g_toplevel.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/g_toplevel.cmx -${PLIST.ocaml-opt}lib/coq/toplevel/toplevel.a -${PLIST.ocaml-opt}lib/coq/toplevel/toplevel.cmxa -lib/coq/toplevel/usage.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/usage.cmx -lib/coq/toplevel/vernac.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/vernac.cmx -lib/coq/toplevel/workerLoop.cmi -${PLIST.ocaml-opt}lib/coq/toplevel/workerLoop.cmx -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.o -lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.o lib/coq/user-contrib/Ltac2/Array.glob lib/coq/user-contrib/Ltac2/Array.v lib/coq/user-contrib/Ltac2/Array.vo @@ -5479,6 +5347,10 @@ lib/coq/user-contrib/Ltac2/Ident.glob lib/coq/user-contrib/Ltac2/Ident.v lib/coq/user-contrib/Ltac2/Ident.vo lib/coq/user-contrib/Ltac2/Ident.vos +lib/coq/user-contrib/Ltac2/Ind.glob +lib/coq/user-contrib/Ltac2/Ind.v +lib/coq/user-contrib/Ltac2/Ind.vo +lib/coq/user-contrib/Ltac2/Ind.vos lib/coq/user-contrib/Ltac2/Init.glob lib/coq/user-contrib/Ltac2/Init.v lib/coq/user-contrib/Ltac2/Init.vo @@ -5515,6 +5387,10 @@ lib/coq/user-contrib/Ltac2/Pattern.glob lib/coq/user-contrib/Ltac2/Pattern.v lib/coq/user-contrib/Ltac2/Pattern.vo lib/coq/user-contrib/Ltac2/Pattern.vos +lib/coq/user-contrib/Ltac2/Printf.glob +lib/coq/user-contrib/Ltac2/Printf.v +lib/coq/user-contrib/Ltac2/Printf.vo +lib/coq/user-contrib/Ltac2/Printf.vos lib/coq/user-contrib/Ltac2/Std.glob lib/coq/user-contrib/Ltac2/Std.v lib/coq/user-contrib/Ltac2/Std.vo @@ -5523,144 +5399,67 @@ lib/coq/user-contrib/Ltac2/String.glob lib/coq/user-contrib/Ltac2/String.v lib/coq/user-contrib/Ltac2/String.vo lib/coq/user-contrib/Ltac2/String.vos -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/g_ltac2.cmx -lib/coq/user-contrib/Ltac2/ltac2_plugin.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/ltac2_plugin.cmx -${PLIST.natdynlink}lib/coq/user-contrib/Ltac2/ltac2_plugin.cmxs -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/ltac2_plugin.o -lib/coq/user-contrib/Ltac2/tac2core.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2core.cmx -lib/coq/user-contrib/Ltac2/tac2dyn.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2dyn.cmx -lib/coq/user-contrib/Ltac2/tac2entries.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2entries.cmx -lib/coq/user-contrib/Ltac2/tac2env.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2env.cmx -lib/coq/user-contrib/Ltac2/tac2expr.cmi -lib/coq/user-contrib/Ltac2/tac2extffi.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2extffi.cmx -lib/coq/user-contrib/Ltac2/tac2ffi.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2ffi.cmx -lib/coq/user-contrib/Ltac2/tac2intern.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2intern.cmx -lib/coq/user-contrib/Ltac2/tac2interp.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2interp.cmx -lib/coq/user-contrib/Ltac2/tac2match.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2match.cmx -lib/coq/user-contrib/Ltac2/tac2print.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2print.cmx -lib/coq/user-contrib/Ltac2/tac2qexpr.cmi -lib/coq/user-contrib/Ltac2/tac2quote.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2quote.cmx -lib/coq/user-contrib/Ltac2/tac2stdlib.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2stdlib.cmx -lib/coq/user-contrib/Ltac2/tac2tactics.cmi -${PLIST.ocaml-opt}lib/coq/user-contrib/Ltac2/tac2tactics.cmx -lib/coq/user-contrib/Ltac2/tac2types.cmi -lib/coq/vernac/assumptions.cmi -${PLIST.ocaml-opt}lib/coq/vernac/assumptions.cmx -lib/coq/vernac/attributes.cmi -${PLIST.ocaml-opt}lib/coq/vernac/attributes.cmx -lib/coq/vernac/auto_ind_decl.cmi -${PLIST.ocaml-opt}lib/coq/vernac/auto_ind_decl.cmx -lib/coq/vernac/canonical.cmi -${PLIST.ocaml-opt}lib/coq/vernac/canonical.cmx -lib/coq/vernac/classes.cmi -${PLIST.ocaml-opt}lib/coq/vernac/classes.cmx -lib/coq/vernac/comArguments.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comArguments.cmx -lib/coq/vernac/comAssumption.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comAssumption.cmx -lib/coq/vernac/comCoercion.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comCoercion.cmx -lib/coq/vernac/comDefinition.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comDefinition.cmx -lib/coq/vernac/comFixpoint.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comFixpoint.cmx -lib/coq/vernac/comHints.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comHints.cmx -lib/coq/vernac/comInductive.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comInductive.cmx -lib/coq/vernac/comPrimitive.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comPrimitive.cmx -lib/coq/vernac/comProgramFixpoint.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comProgramFixpoint.cmx -lib/coq/vernac/comSearch.cmi -${PLIST.ocaml-opt}lib/coq/vernac/comSearch.cmx -lib/coq/vernac/declare.cmi -${PLIST.ocaml-opt}lib/coq/vernac/declare.cmx -lib/coq/vernac/declareDef.cmi -${PLIST.ocaml-opt}lib/coq/vernac/declareDef.cmx -lib/coq/vernac/declareInd.cmi -${PLIST.ocaml-opt}lib/coq/vernac/declareInd.cmx -lib/coq/vernac/declareObl.cmi -${PLIST.ocaml-opt}lib/coq/vernac/declareObl.cmx -lib/coq/vernac/declareUniv.cmi -${PLIST.ocaml-opt}lib/coq/vernac/declareUniv.cmx -lib/coq/vernac/declaremods.cmi -${PLIST.ocaml-opt}lib/coq/vernac/declaremods.cmx -lib/coq/vernac/egramcoq.cmi -${PLIST.ocaml-opt}lib/coq/vernac/egramcoq.cmx -lib/coq/vernac/egramml.cmi -${PLIST.ocaml-opt}lib/coq/vernac/egramml.cmx -lib/coq/vernac/g_proofs.cmi -${PLIST.ocaml-opt}lib/coq/vernac/g_proofs.cmx -lib/coq/vernac/g_vernac.cmi -${PLIST.ocaml-opt}lib/coq/vernac/g_vernac.cmx -lib/coq/vernac/himsg.cmi -${PLIST.ocaml-opt}lib/coq/vernac/himsg.cmx -lib/coq/vernac/indschemes.cmi -${PLIST.ocaml-opt}lib/coq/vernac/indschemes.cmx -lib/coq/vernac/lemmas.cmi -${PLIST.ocaml-opt}lib/coq/vernac/lemmas.cmx -lib/coq/vernac/library.cmi -${PLIST.ocaml-opt}lib/coq/vernac/library.cmx -lib/coq/vernac/loadpath.cmi -${PLIST.ocaml-opt}lib/coq/vernac/loadpath.cmx -lib/coq/vernac/locality.cmi -${PLIST.ocaml-opt}lib/coq/vernac/locality.cmx -lib/coq/vernac/metasyntax.cmi -${PLIST.ocaml-opt}lib/coq/vernac/metasyntax.cmx -lib/coq/vernac/mltop.cmi -${PLIST.ocaml-opt}lib/coq/vernac/mltop.cmx -lib/coq/vernac/obligations.cmi -${PLIST.ocaml-opt}lib/coq/vernac/obligations.cmx -lib/coq/vernac/pfedit.cmi -${PLIST.ocaml-opt}lib/coq/vernac/pfedit.cmx -lib/coq/vernac/ppvernac.cmi -${PLIST.ocaml-opt}lib/coq/vernac/ppvernac.cmx -lib/coq/vernac/prettyp.cmi -${PLIST.ocaml-opt}lib/coq/vernac/prettyp.cmx -lib/coq/vernac/proof_global.cmi -${PLIST.ocaml-opt}lib/coq/vernac/proof_global.cmx -lib/coq/vernac/proof_using.cmi -${PLIST.ocaml-opt}lib/coq/vernac/proof_using.cmx -lib/coq/vernac/pvernac.cmi -${PLIST.ocaml-opt}lib/coq/vernac/pvernac.cmx -lib/coq/vernac/recLemmas.cmi -${PLIST.ocaml-opt}lib/coq/vernac/recLemmas.cmx -lib/coq/vernac/record.cmi -${PLIST.ocaml-opt}lib/coq/vernac/record.cmx -lib/coq/vernac/retrieveObl.cmi -${PLIST.ocaml-opt}lib/coq/vernac/retrieveObl.cmx -lib/coq/vernac/search.cmi -${PLIST.ocaml-opt}lib/coq/vernac/search.cmx -lib/coq/vernac/topfmt.cmi -${PLIST.ocaml-opt}lib/coq/vernac/topfmt.cmx -${PLIST.ocaml-opt}lib/coq/vernac/vernac.a -${PLIST.ocaml-opt}lib/coq/vernac/vernac.cmxa -lib/coq/vernac/vernacentries.cmi -${PLIST.ocaml-opt}lib/coq/vernac/vernacentries.cmx -lib/coq/vernac/vernacexpr.cmi -${PLIST.ocaml-opt}lib/coq/vernac/vernacexpr.cmx -lib/coq/vernac/vernacextend.cmi -${PLIST.ocaml-opt}lib/coq/vernac/vernacextend.cmx -lib/coq/vernac/vernacinterp.cmi -${PLIST.ocaml-opt}lib/coq/vernac/vernacinterp.cmx -lib/coq/vernac/vernacprop.cmi -${PLIST.ocaml-opt}lib/coq/vernac/vernacprop.cmx -lib/coq/vernac/vernacstate.cmi -${PLIST.ocaml-opt}lib/coq/vernac/vernacstate.cmx +lib/coqide-server/META +${PLIST.ocaml-opt}lib/coqide-server/core/core.a +lib/coqide-server/core/core.cma +${PLIST.ocaml-opt}lib/coqide-server/core/core.cmxa +${PLIST.natdynlink}lib/coqide-server/core/core.cmxs +lib/coqide-server/core/document.cmi +lib/coqide-server/core/document.cmt +lib/coqide-server/core/document.cmti +${PLIST.ocaml-opt}lib/coqide-server/core/document.cmx +lib/coqide-server/core/document.ml +lib/coqide-server/core/document.mli +lib/coqide-server/dune-package +lib/coqide-server/opam +lib/coqide-server/protocol/interface.cmi +lib/coqide-server/protocol/interface.cmt +${PLIST.ocaml-opt}lib/coqide-server/protocol/interface.cmx +lib/coqide-server/protocol/interface.ml +${PLIST.ocaml-opt}lib/coqide-server/protocol/protocol.a +lib/coqide-server/protocol/protocol.cma +${PLIST.ocaml-opt}lib/coqide-server/protocol/protocol.cmxa +${PLIST.natdynlink}lib/coqide-server/protocol/protocol.cmxs +lib/coqide-server/protocol/richpp.cmi +lib/coqide-server/protocol/richpp.cmt +lib/coqide-server/protocol/richpp.cmti +${PLIST.ocaml-opt}lib/coqide-server/protocol/richpp.cmx +lib/coqide-server/protocol/richpp.ml +lib/coqide-server/protocol/richpp.mli +lib/coqide-server/protocol/serialize.cmi +lib/coqide-server/protocol/serialize.cmt +lib/coqide-server/protocol/serialize.cmti +${PLIST.ocaml-opt}lib/coqide-server/protocol/serialize.cmx +lib/coqide-server/protocol/serialize.ml +lib/coqide-server/protocol/serialize.mli +lib/coqide-server/protocol/xml_lexer.cmi +lib/coqide-server/protocol/xml_lexer.cmt +lib/coqide-server/protocol/xml_lexer.cmti +${PLIST.ocaml-opt}lib/coqide-server/protocol/xml_lexer.cmx +lib/coqide-server/protocol/xml_lexer.ml +lib/coqide-server/protocol/xml_lexer.mli +lib/coqide-server/protocol/xml_parser.cmi +lib/coqide-server/protocol/xml_parser.cmt +lib/coqide-server/protocol/xml_parser.cmti +${PLIST.ocaml-opt}lib/coqide-server/protocol/xml_parser.cmx +lib/coqide-server/protocol/xml_parser.ml +lib/coqide-server/protocol/xml_parser.mli +lib/coqide-server/protocol/xml_printer.cmi +lib/coqide-server/protocol/xml_printer.cmt +lib/coqide-server/protocol/xml_printer.cmti +${PLIST.ocaml-opt}lib/coqide-server/protocol/xml_printer.cmx +lib/coqide-server/protocol/xml_printer.ml +lib/coqide-server/protocol/xml_printer.mli +lib/coqide-server/protocol/xmlprotocol.cmi +lib/coqide-server/protocol/xmlprotocol.cmt +lib/coqide-server/protocol/xmlprotocol.cmti +${PLIST.ocaml-opt}lib/coqide-server/protocol/xmlprotocol.cmx +lib/coqide-server/protocol/xmlprotocol.ml +lib/coqide-server/protocol/xmlprotocol.mli +lib/coqide/META +lib/coqide/dune-package +lib/coqide/opam +lib/stublibs/dllcoqrun_stubs.so man/man1/coq-tex.1 man/man1/coq_makefile.1 man/man1/coqc.1 @@ -5668,6 +5467,7 @@ man/man1/coqchk.1 man/man1/coqdep.1 man/man1/coqdoc.1 man/man1/coqide.1 +man/man1/coqnative.1 man/man1/coqtop.1 man/man1/coqtop.byte.1 man/man1/coqtop.opt.1 @@ -5677,8 +5477,15 @@ share/coq/coq.lang share/coq/coq.png share/coq/coq_style.xml share/coq/default.bindings -${PLIST.coqide}share/doc/coq/FAQ-CoqIde ${PLIST.doc}share/doc/coq/LICENSE.doc +share/doc/coq/coq-core/LICENSE +share/doc/coq/coq-core/README.md +${PLIST.coqide}share/doc/coq/coqide-server/LICENSE +${PLIST.coqide}share/doc/coq/coqide-server/README.md +${PLIST.coqide}share/doc/coq/coqide/FAQ +${PLIST.coqide}share/doc/coq/coqide/LICENSE +${PLIST.coqide}share/doc/coq/coqide/README.md +${PLIST.coqide}share/doc/coq/coqide/odoc-pages/index.mld ${PLIST.doc}share/doc/coq/html/stdlib/Coq.Arith.Arith.html ${PLIST.doc}share/doc/coq/html/stdlib/Coq.Arith.Arith_base.html ${PLIST.doc}share/doc/coq/html/stdlib/Coq.Arith.Between.html Index: pkgsrc/lang/coq/distinfo diff -u pkgsrc/lang/coq/distinfo:1.38 pkgsrc/lang/coq/distinfo:1.39 --- pkgsrc/lang/coq/distinfo:1.38 Tue Oct 26 10:51:32 2021 +++ pkgsrc/lang/coq/distinfo Tue Jun 21 02:21:22 2022 @@ -1,7 +1,9 @@ -$NetBSD: distinfo,v 1.38 2021/10/26 10:51:32 nia Exp $ +$NetBSD: distinfo,v 1.39 2022/06/21 02:21:22 dholland Exp $ -BLAKE2s (coq-8.12.2.tar.gz) = 08bb88e3614ded682df5638971af67b3d957a86ab7ac0269bcbf6a7d8c116acd -SHA512 (coq-8.12.2.tar.gz) = 6b524edbceb5795f04bbd2b52f191bfcf10b611f7a2fa0450c30b72c944f88418d261729476b64603faacfe2be5f7992a2997541e54e6f8691d4dc8b4969198d -Size (coq-8.12.2.tar.gz) = 6855860 bytes -SHA1 (patch-Makefile.common) = f53c41884e12bfafa825a8f27c940ab40bd9b9fe -SHA1 (patch-Makefile.make) = d12827bb28e0f993908d202bfd06497cc3033699 +BLAKE2s (coq-8.15.2.tar.gz) = 5caaf97e57ce5085e965dc6e98a5e2fd5373ce3c99cbfb605a5635e8ba2f987a +SHA512 (coq-8.15.2.tar.gz) = 6a5487912dedb6e54145bf3f177a091cffe13429ba2f73db7c1cc241fe10e86340c968e19cefba7d680facce55f4e914cbd16a317264b109a6f9a01ec822a8c5 +Size (coq-8.15.2.tar.gz) = 7222794 bytes +SHA1 (patch-Makefile.install) = ea229046833121d72db20c5b308a2e9051a68f22 +SHA1 (patch-Makefile.make) = 97e809e8db8e95090b570751be92829257160b82 +SHA1 (patch-tools_configure_coqide.ml) = 58956509df6ff56cbecc9c0215f6aae2b2eb3462 +SHA1 (patch-tools_coqdoc_dune) = b2a1fdc3fd0bebc18754de5a0d7778e73a47c25d Index: pkgsrc/lang/coq/options.mk diff -u pkgsrc/lang/coq/options.mk:1.12 pkgsrc/lang/coq/options.mk:1.13 --- pkgsrc/lang/coq/options.mk:1.12 Sun May 1 09:45:42 2022 +++ pkgsrc/lang/coq/options.mk Tue Jun 21 02:21:22 2022 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.12 2022/05/01 09:45:42 wiz Exp $ +# $NetBSD: options.mk,v 1.13 2022/06/21 02:21:22 dholland Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.coq PKG_SUPPORTED_OPTIONS= doc coqide @@ -70,6 +70,7 @@ CONFIGURE_ARGS+= -with-doc no .endif .if !empty(PKG_OPTIONS:Mcoqide) +BUILDLINK_API_DEPENDS.ocaml-lablgtk3+= ocaml-lablgtk3>=3.1.0 .include "../../x11/ocaml-lablgtk3/buildlink3.mk" .include "../../x11/gtk3/buildlink3.mk" DEPENDS+= adwaita-icon-theme-[0-9]*:../../graphics/adwaita-icon-theme Index: pkgsrc/lang/coq/patches/patch-Makefile.make diff -u pkgsrc/lang/coq/patches/patch-Makefile.make:1.1 pkgsrc/lang/coq/patches/patch-Makefile.make:1.2 --- pkgsrc/lang/coq/patches/patch-Makefile.make:1.1 Tue Feb 9 22:37:43 2021 +++ pkgsrc/lang/coq/patches/patch-Makefile.make Tue Jun 21 02:21:22 2022 @@ -1,8 +1,8 @@ -$NetBSD: patch-Makefile.make,v 1.1 2021/02/09 22:37:43 dholland Exp $ +$NetBSD: patch-Makefile.make,v 1.2 2022/06/21 02:21:22 dholland Exp $ Use correct find(1) syntax. ---- Makefile.make~ 2020-12-11 08:46:08.000000000 +0000 +--- Makefile.make.orig 2022-05-31 08:36:38.000000000 +0000 +++ Makefile.make @@ -48,7 +48,7 @@ # !! FIND_SKIP_DIRS section of dev/doc/build-system.dev.txt !! @@ -10,6 +10,6 @@ Use correct find(1) syntax. # "-type d" to be able to find .merlin.in files -FIND_SKIP_DIRS:=-not -name . '(' \ +FIND_SKIP_DIRS:=! -name . '(' \ - -name '{arch}' -o \ -name '.*' -type d -o \ - -name '_darcs' -o \ + -name 'debian' -o \ + -name "$${GIT_DIR}" -o \ Added files: Index: pkgsrc/lang/coq/patches/patch-Makefile.install diff -u /dev/null pkgsrc/lang/coq/patches/patch-Makefile.install:1.1 --- /dev/null Tue Jun 21 02:21:22 2022 +++ pkgsrc/lang/coq/patches/patch-Makefile.install Tue Jun 21 02:21:22 2022 @@ -0,0 +1,15 @@ +$NetBSD: patch-Makefile.install,v 1.1 2022/06/21 02:21:22 dholland Exp $ + +Use BSD_INSTALL_* + +--- Makefile.install~ 2022-05-31 08:36:38.000000000 +0000 ++++ Makefile.install +@@ -31,7 +31,7 @@ install-byte: + + .PHONY: install install-byte install-coqide install-doc-all install-doc-no + +-INSTALLLIB:=install -m 644 ++INSTALLLIB:=${BSD_INSTALL_LIB} + + .PHONY: install-coq install-dune install-library + Index: pkgsrc/lang/coq/patches/patch-tools_configure_coqide.ml diff -u /dev/null pkgsrc/lang/coq/patches/patch-tools_configure_coqide.ml:1.1 --- /dev/null Tue Jun 21 02:21:22 2022 +++ pkgsrc/lang/coq/patches/patch-tools_configure_coqide.ml Tue Jun 21 02:21:22 2022 @@ -0,0 +1,17 @@ +$NetBSD: patch-tools_configure_coqide.ml,v 1.1 2022/06/21 02:21:22 dholland Exp $ + +For some reason the installed library metadata for lablgtk3 is lacking +the version number. Until this gets sorted out, accept the +[unspecified] version string that ocamlfind prints; pkgsrc does the +necessary version checks. + +--- tools/configure/coqide.ml~ 2022-05-31 08:36:38.000000000 +0000 ++++ tools/configure/coqide.ml +@@ -25,6 +25,7 @@ let get_lablgtkdir ocamlfind = + + let check_lablgtk_version ocamlfind = + let v, _ = tryrun ocamlfind ["query"; "-format"; "%v"; "lablgtk3"] in ++ if v = "[unspecified]" then (true, v) else + try + let vn = generic_version_nums ~name:"lablgtk3" v in + if vn < [3; 1; 0] then Index: pkgsrc/lang/coq/patches/patch-tools_coqdoc_dune diff -u /dev/null pkgsrc/lang/coq/patches/patch-tools_coqdoc_dune:1.1 --- /dev/null Tue Jun 21 02:21:22 2022 +++ pkgsrc/lang/coq/patches/patch-tools_coqdoc_dune Tue Jun 21 02:21:22 2022 @@ -0,0 +1,16 @@ +$NetBSD: patch-tools_coqdoc_dune,v 1.1 2022/06/21 02:21:22 dholland Exp $ + +Install the latex style file in the right place for us. +(This used to be settable via configure, but no longer is) + +--- tools/coqdoc/dune~ 2022-05-31 08:36:38.000000000 +0000 ++++ tools/coqdoc/dune +@@ -10,7 +10,7 @@ + (section share_root) + (package coq-core) + (files +- (coqdoc.sty as texmf/tex/latex/misc/coqdoc.sty))) ++ (coqdoc.sty as texmf-dist/tex/latex/coq/coqdoc.sty))) + + (executable + (name main) --_----------=_1655778082146200--