Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: coq | Distribution: openSUSE Tumbleweed |
Version: 8.20.0 | Vendor: openSUSE |
Release: 1.2 | Build date: Thu Sep 5 22:49:31 2024 |
Group: Productivity/Scientific/Math | Build host: reproducible |
Size: 333439952 | Source RPM: coq-8.20.0-1.2.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://coq.inria.fr/ | |
Summary: Proof Assistant based on the Calculus of Inductive Constructions |
Proof assistant which allows to handle calculus assertions, check mechanically proofs of these assertions, helps to find formal proofs and extracts a certified program from the constructive proof of its formal specification. This package contains shared files and the command line interface. For a graphical interface install coq-ide.
LGPL-2.1-only
* Thu Sep 05 2024 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.20.0. The most impactful changes are: * A mechanism to add user-defined rewrite rules to Coq's reduction mechanisms; see chapter "User-defined rewrite rules". * Support for primitive strings in terms. * Reduction of the bytecode segment size, which in turn means that `.vo` files might now be considerably smaller. - Notable breaking changes: * Syntactic global references passed through the `using` clauses of `auto`-like tactics are now handled as plain references rather than interpreted terms. In particular, their typeclass arguments will not be inferred. In general, the previous behaviour can be emulated by replacing `auto using foo` with `pose proof foo; auto`. * Argument order for the Ltac2 combinators `List.fold_left2` and `List.fold_right2` changed to be the same as in OCaml. * Importing a module containing a mutable Ltac2 definition does not undo its mutations. Replace `Ltac2 mutable foo := some_expr.` with `Ltac2 mutable foo := some_expr. Ltac2 Set foo := some_expr.` to recover the previous behaviour. * Some renaming in the standard library. Deprecations are provided for a smooth transition. - For more details, see the change log in coq-doc. * Sun Jun 30 2024 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.19.2. * Fixed a regression from Coq 8.18 in the presence of a defined field in a primitive `Record`. * Fixed an issue where the printer was sometimes failing to use a prefix or infix custom notation whose right-hand side refers to a different custom entry. * Fixed `abstract` failure in the presence of admitted goals in the surrounding proof. * Fixed issues when using Ltac2 in VsCoq due to incorrect state handling of Ltac2 notations. * Fixed `Include` on a module containing a record declared with `Primitive Projections`. * Fixed an issue in `Fixpoint` with no arguments. * Position error/warning tooltips correctly when multibyte UTF-8 characters are present. * Thu Mar 07 2024 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.19.1. * Fixed incorrect abstraction of sort variables for opaque constants leading to an inconsistency. * Fixed memory corruption with `vm_compute` (rare but more likely with OCaml 5.1). * "Found no matching notation to enable or disable" is now a warning instead of an error. * Fixed undeclared universe with multiple uses of `abstract`. * Fixed incorrect printing of constructor values with multiple arguments, and over-parenthesizing of constructor printing. * Fixed incorrect declared type for Ltac2.FMap.fold. * Sun Jan 28 2024 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.19.0. The most impactful changes: * Sort polymorphism makes it possible to share common constructs over `Type`, `Prop` and `SProp`. * The notation `term%_scope` to set a scope only temporarily (in addition to `term%scope` for opening a scope applying to all subterms). * `lazy`, `simpl`, `cbn` and `cbv` and the associated `Eval` and `eval` reductions learned to do head reduction when given flag `head`. * New Ltac2 APIs, improved Ltac2 `exact` and dynamic building of Ltac2 term patterns. * New performance evaluation facilities: `Instructions` to count CPU instructions used by a command and Profiling system to produce trace files. * New command `Attributes` to assign attributes such as `deprecated` to a library file. - Notable breaking changes: * `replace` with `by tac` does not automatically attempt to solve the generated equality subgoal using the hypotheses. Use `by first [assumption | symmetry;assumption | tac]` if you need the previous behaviour. * Removed old deprecated files from the standard library. - Use %fdupes in the documentation package. * Sun Nov 12 2023 Aaron Puchert <aaronpuchert@alice-dsl.net> - Revert last change: this is now set in ocaml-rpm-macros. - Increase stack size limit in QEMU user space builds. Here ulimit has no effect, so we add a wrapper around ocamlopt.opt to PATH that adds "-s ..." to the qemu-<arch> command line. * Mon Oct 30 2023 Aaron Puchert <aaronpuchert@alice-dsl.net> - Increase stack size limit to fix build on riscv64. * Sat Sep 16 2023 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.18.0. * The default locality of `Hint` and `Instance` commands was switched to `export`. * The universe unification algorithm can now delay the commitment to a sort (the algorithm used to pick `Type`). Thanks to this feature many `Prop` and `SProp` annotations can be now omitted. * Ltac2 supports array literals, maps and sets of primitive datatypes such as names (of constants, inductive types, etc) and fine-grained control over profiling. * The warning system offers new categories, enabling finer (de)activation of specific warnings. This should be particularly useful to handle deprecations. * Many new lemmas useful for teaching analysis with Coq are now part of the standard library about real numbers. * The `#[deprecated]` attribute can now be applied to definitions. * Wed Jun 28 2023 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.17.1. * Fixed incorrect paths emitted by coqdep in some cases for META files which prevented dune builds for plugins from working correctly. * Fixed shadowing of record fields in extraction to OCaml. * Fixed an impossible-to-turn-off debug message "backtracking and redoing byextend on ...". * Fixed a major memory regression affecting MathComp 2. - Classify desktop entry under Science instead of Education. - Add screenshot URL to AppStream metadata. * Tue Mar 28 2023 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.17.0. * Fixed a logical inconsistency due to `vm_compute` in presence of side-effects in the enviroment (e.g. using Back or Fail). * It is now possible to dynamically enable or disable notations. * Support multiple scopes in `Arguments` and `Bind Scope`. * The tactics chapter of the manual has many improvements in presentation and wording. The documented grammar is semi- automatically checked for consistency with the implementation. * Fixes to the `auto` and `eauto` tactics, to respect hint priorities and the documented use of simple apply. This is a potentially breaking change. * New Ltac2 APIs, deep pattern-matching with `as` clauses and handling of literals, support for record types and preterms. * Move from :> to :: syntax for declaring typeclass fields as instances, fixing a confusion with declaration of coercions. * Standard library improvements. * Thu Jan 26 2023 Aaron Puchert <aaronpuchert@alice-dsl.net> - Build with ocaml-rpm-macros to get proper Requires and Provides for coq-devel. This should prevent incompatibilities with other Ocaml libraries when building native objects against coq-devel. * Sat Nov 26 2022 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.16.1. * Fixed the conversion of `Prod` values in the native compiler. * Added `SProp` check for opaque names in conversion. * Pass the correct environment to compute η-expansion of cofixpoints in VM and native compilation. * Fixed an inconsistency with conversion of primitive arrays, and associated incomplete strong normalization of primitive arrays with `lazy`. * `Print Assumptions` treats opaque definitions with missing proofs (as found in .vos files, produced using -vos) as axioms instead of ignoring them. * Thu Sep 08 2022 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.16.0. * The guard checker (see `Guarded`) now ensures strong normalization under any reduction strategy. * Irrelevant terms (in the `SProp` sort) are now squashed to a dummy value during conversion, fixing a subject reduction issue and making proof conversion faster. * Introduction of reversible coercions, which allow coercions relying on meta-level resolution such as type-classes or canonical structures. Also allow coercions that do not fullfill the uniform inheritance condition. * Generalized rewriting support for rewriting with `Type`-valued relations and in `Type` contexts, using the `Classes.CMorphisms` library. * Added the boolean equality scheme command for decidable inductive types. * Added a `Print Notation` command. * Incompatibilities in name generation for Program obligations, `eauto` treatment of tactic failure levels, use of `ident` in notations, parsing of module expressions. * Standard library reorganization and deprecations. * Improve the treatment of standard library numbers by `Extraction`. - Coq requires ocamlfind at runtime now. * Wed Jun 01 2022 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.15.2. * Tactics `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 ::= ...`. * Fixed an uncaught exception `UnableToUnify` with bidirectionality hints. * Fixed multiple CoqIDE bugs. * Fixed an incorrect implementation of `SFClassify`, allowing for a proof of `False` since 8.11.0, due to Axioms present in `Float.Axioms`. - Rename coq.desktop to fr.inria.coq.coqide.desktop as the documentation suggests, add an accompanying metainfo file. - Declare documentation as noarch. * Thu Mar 24 2022 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.15.1. * Fixes an inconsistency when using module subtyping with inductive types. * Speeds up CoqIDE on large files. * Fixes a bug where `coqc -vok` was not creating a .vok file. * Fixes a regression in `cbn`. * Improves usability of schemes with `elim foo using scheme with (P0 := ...)` (the `P0` name was not accessible in 8.15.0). * Sat Jan 15 2022 Aaron Puchert <aaronpuchert@alice-dsl.net> - Update to version 8.15.0. * The `apply with` tactic no longer renames arguments unless the compatibility flag `Apply With Renaming` is set. * Improvements to the `auto` tactic family, fixing `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. * For more details, see refman/changes.html in coq-doc.
/usr/bin/coq-tex /usr/bin/coq_makefile /usr/bin/coqc /usr/bin/coqc.byte /usr/bin/coqchk /usr/bin/coqdep /usr/bin/coqdoc /usr/bin/coqnative /usr/bin/coqpp /usr/bin/coqtimelog2html /usr/bin/coqtop /usr/bin/coqtop.byte /usr/bin/coqwc /usr/bin/coqworker.opt /usr/bin/coqworkmgr /usr/bin/csdpcert /usr/bin/ocamllibdep /usr/bin/votour /usr/lib64/coq /usr/lib64/coq-core /usr/lib64/coq-core/boot /usr/lib64/coq-core/boot/boot.cmxs /usr/lib64/coq-core/checklib /usr/lib64/coq-core/checklib/coq_checklib.cmxs /usr/lib64/coq-core/clib /usr/lib64/coq-core/clib/clib.cmxs /usr/lib64/coq-core/config /usr/lib64/coq-core/config/byte /usr/lib64/coq-core/config/config.cmxs /usr/lib64/coq-core/coqworkmgrapi /usr/lib64/coq-core/coqworkmgrapi/coqworkmgrlib.cmxs /usr/lib64/coq-core/debugger_support /usr/lib64/coq-core/debugger_support/debugger_support.cmxs /usr/lib64/coq-core/dev /usr/lib64/coq-core/dev/dev.cmxs /usr/lib64/coq-core/dev/ml_toplevel /usr/lib64/coq-core/engine /usr/lib64/coq-core/engine/engine.cmxs /usr/lib64/coq-core/gramlib /usr/lib64/coq-core/gramlib/gramlib.cmxs /usr/lib64/coq-core/interp /usr/lib64/coq-core/interp/interp.cmxs /usr/lib64/coq-core/kernel /usr/lib64/coq-core/kernel/kernel.cmxs /usr/lib64/coq-core/lib /usr/lib64/coq-core/lib/lib.cmxs /usr/lib64/coq-core/library /usr/lib64/coq-core/library/library.cmxs /usr/lib64/coq-core/parsing /usr/lib64/coq-core/parsing/parsing.cmxs /usr/lib64/coq-core/perf /usr/lib64/coq-core/perf/coqperf.cmxs /usr/lib64/coq-core/plugins /usr/lib64/coq-core/plugins/btauto /usr/lib64/coq-core/plugins/btauto/btauto_plugin.cmxs /usr/lib64/coq-core/plugins/cc /usr/lib64/coq-core/plugins/cc/cc_plugin.cmxs /usr/lib64/coq-core/plugins/derive /usr/lib64/coq-core/plugins/derive/derive_plugin.cmxs /usr/lib64/coq-core/plugins/extraction /usr/lib64/coq-core/plugins/extraction/extraction_plugin.cmxs /usr/lib64/coq-core/plugins/firstorder /usr/lib64/coq-core/plugins/firstorder/firstorder_plugin.cmxs /usr/lib64/coq-core/plugins/funind /usr/lib64/coq-core/plugins/funind/funind_plugin.cmxs /usr/lib64/coq-core/plugins/ltac /usr/lib64/coq-core/plugins/ltac/ltac_plugin.cmxs /usr/lib64/coq-core/plugins/ltac2 /usr/lib64/coq-core/plugins/ltac2/ltac2_plugin.cmxs /usr/lib64/coq-core/plugins/ltac2_ltac1 /usr/lib64/coq-core/plugins/ltac2_ltac1/ltac2_ltac1_plugin.cmxs /usr/lib64/coq-core/plugins/micromega /usr/lib64/coq-core/plugins/micromega/micromega_plugin.cmxs /usr/lib64/coq-core/plugins/micromega_core /usr/lib64/coq-core/plugins/micromega_core/micromega_core_plugin.cmxs /usr/lib64/coq-core/plugins/nsatz /usr/lib64/coq-core/plugins/nsatz/nsatz_plugin.cmxs /usr/lib64/coq-core/plugins/number_string_notation /usr/lib64/coq-core/plugins/number_string_notation/number_string_notation_plugin.cmxs /usr/lib64/coq-core/plugins/ring /usr/lib64/coq-core/plugins/ring/ring_plugin.cmxs /usr/lib64/coq-core/plugins/rtauto /usr/lib64/coq-core/plugins/rtauto/rtauto_plugin.cmxs /usr/lib64/coq-core/plugins/ssreflect /usr/lib64/coq-core/plugins/ssreflect/ssreflect_plugin.cmxs /usr/lib64/coq-core/plugins/ssrmatching /usr/lib64/coq-core/plugins/ssrmatching/ssrmatching_plugin.cmxs /usr/lib64/coq-core/plugins/tauto /usr/lib64/coq-core/plugins/tauto/tauto_plugin.cmxs /usr/lib64/coq-core/plugins/tutorial /usr/lib64/coq-core/plugins/tutorial/p0 /usr/lib64/coq-core/plugins/tutorial/p0/tuto0_plugin.cmxs /usr/lib64/coq-core/plugins/tutorial/p1 /usr/lib64/coq-core/plugins/tutorial/p1/tuto1_plugin.cmxs /usr/lib64/coq-core/plugins/tutorial/p2 /usr/lib64/coq-core/plugins/tutorial/p2/tuto2_plugin.cmxs /usr/lib64/coq-core/plugins/tutorial/p3 /usr/lib64/coq-core/plugins/tutorial/p3/tuto3_plugin.cmxs /usr/lib64/coq-core/plugins/zify /usr/lib64/coq-core/plugins/zify/zify_plugin.cmxs /usr/lib64/coq-core/pretyping /usr/lib64/coq-core/pretyping/pretyping.cmxs /usr/lib64/coq-core/printing /usr/lib64/coq-core/printing/printing.cmxs /usr/lib64/coq-core/proofs /usr/lib64/coq-core/proofs/proofs.cmxs /usr/lib64/coq-core/stm /usr/lib64/coq-core/stm/stm.cmxs /usr/lib64/coq-core/sysinit /usr/lib64/coq-core/sysinit/sysinit.cmxs /usr/lib64/coq-core/tactics /usr/lib64/coq-core/tactics/tactics.cmxs /usr/lib64/coq-core/tools /usr/lib64/coq-core/tools/TimeFileMaker.py /usr/lib64/coq-core/tools/coqdoc /usr/lib64/coq-core/tools/coqdoc/coqdoc.css /usr/lib64/coq-core/tools/coqdoc/coqdoc.sty /usr/lib64/coq-core/tools/make-both-single-timing-files.py /usr/lib64/coq-core/tools/make-both-time-files.py /usr/lib64/coq-core/tools/make-one-time-file.py /usr/lib64/coq-core/toplevel /usr/lib64/coq-core/toplevel/toplevel.cmxs /usr/lib64/coq-core/vernac /usr/lib64/coq-core/vernac/vernac.cmxs /usr/lib64/coq-core/vm /usr/lib64/coq-core/vm/coqrun.cmxs /usr/lib64/coq-stdlib /usr/lib64/coq/theories /usr/lib64/coq/theories/Arith /usr/lib64/coq/theories/Arith/.coq-native /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Arith.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Arith_base.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Between.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Bool_nat.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Cantor.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Compare.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Compare_dec.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_EqNat.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Euclid.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Factorial.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_PeanoNat.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Peano_dec.cmxs /usr/lib64/coq/theories/Arith/.coq-native/NCoq_Arith_Wf_nat.cmxs /usr/lib64/coq/theories/Arith/Arith.vo /usr/lib64/coq/theories/Arith/Arith_base.vo /usr/lib64/coq/theories/Arith/Between.vo /usr/lib64/coq/theories/Arith/Bool_nat.vo /usr/lib64/coq/theories/Arith/Cantor.vo /usr/lib64/coq/theories/Arith/Compare.vo /usr/lib64/coq/theories/Arith/Compare_dec.vo /usr/lib64/coq/theories/Arith/EqNat.vo /usr/lib64/coq/theories/Arith/Euclid.vo /usr/lib64/coq/theories/Arith/Factorial.vo /usr/lib64/coq/theories/Arith/PeanoNat.vo /usr/lib64/coq/theories/Arith/Peano_dec.vo /usr/lib64/coq/theories/Arith/Wf_nat.vo /usr/lib64/coq/theories/Array /usr/lib64/coq/theories/Array/.coq-native /usr/lib64/coq/theories/Array/.coq-native/NCoq_Array_PArray.cmxs /usr/lib64/coq/theories/Array/PArray.vo /usr/lib64/coq/theories/Bool /usr/lib64/coq/theories/Bool/.coq-native /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_Bool.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_BoolEq.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_BoolOrder.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_Bvector.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_DecBool.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_IfProp.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_Sumbool.cmxs /usr/lib64/coq/theories/Bool/.coq-native/NCoq_Bool_Zerob.cmxs /usr/lib64/coq/theories/Bool/Bool.vo /usr/lib64/coq/theories/Bool/BoolEq.vo /usr/lib64/coq/theories/Bool/BoolOrder.vo /usr/lib64/coq/theories/Bool/Bvector.vo /usr/lib64/coq/theories/Bool/DecBool.vo /usr/lib64/coq/theories/Bool/IfProp.vo /usr/lib64/coq/theories/Bool/Sumbool.vo /usr/lib64/coq/theories/Bool/Zerob.vo /usr/lib64/coq/theories/Classes /usr/lib64/coq/theories/Classes/.coq-native /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_CEquivalence.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_CMorphisms.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_CRelationClasses.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_DecidableClass.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_EquivDec.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_Equivalence.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_Init.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Prop.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_Morphisms_Relations.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_RelationClasses.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_RelationPairs.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidClass.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidDec.cmxs /usr/lib64/coq/theories/Classes/.coq-native/NCoq_Classes_SetoidTactics.cmxs /usr/lib64/coq/theories/Classes/CEquivalence.vo /usr/lib64/coq/theories/Classes/CMorphisms.vo /usr/lib64/coq/theories/Classes/CRelationClasses.vo /usr/lib64/coq/theories/Classes/DecidableClass.vo /usr/lib64/coq/theories/Classes/EquivDec.vo /usr/lib64/coq/theories/Classes/Equivalence.vo /usr/lib64/coq/theories/Classes/Init.vo /usr/lib64/coq/theories/Classes/Morphisms.vo /usr/lib64/coq/theories/Classes/Morphisms_Prop.vo /usr/lib64/coq/theories/Classes/Morphisms_Relations.vo /usr/lib64/coq/theories/Classes/RelationClasses.vo /usr/lib64/coq/theories/Classes/RelationPairs.vo /usr/lib64/coq/theories/Classes/SetoidClass.vo /usr/lib64/coq/theories/Classes/SetoidDec.vo /usr/lib64/coq/theories/Classes/SetoidTactics.vo /usr/lib64/coq/theories/Compat /usr/lib64/coq/theories/Compat/.coq-native /usr/lib64/coq/theories/Compat/.coq-native/NCoq_Compat_AdmitAxiom.cmxs /usr/lib64/coq/theories/Compat/.coq-native/NCoq_Compat_Coq818.cmxs /usr/lib64/coq/theories/Compat/.coq-native/NCoq_Compat_Coq819.cmxs /usr/lib64/coq/theories/Compat/.coq-native/NCoq_Compat_Coq820.cmxs /usr/lib64/coq/theories/Compat/AdmitAxiom.vo /usr/lib64/coq/theories/Compat/Coq818.vo /usr/lib64/coq/theories/Compat/Coq819.vo /usr/lib64/coq/theories/Compat/Coq820.vo /usr/lib64/coq/theories/FSets /usr/lib64/coq/theories/FSets/.coq-native /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapAVL.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFacts.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapFullAVL.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapInterface.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapList.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapPositive.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMapWeakList.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FMaps.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetAVL.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetBridge.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetCompat.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetDecide.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetEqProperties.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetFacts.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetInterface.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetList.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetPositive.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetProperties.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetToFiniteSet.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSetWeakList.cmxs /usr/lib64/coq/theories/FSets/.coq-native/NCoq_FSets_FSets.cmxs /usr/lib64/coq/theories/FSets/FMapAVL.vo /usr/lib64/coq/theories/FSets/FMapFacts.vo /usr/lib64/coq/theories/FSets/FMapFullAVL.vo /usr/lib64/coq/theories/FSets/FMapInterface.vo /usr/lib64/coq/theories/FSets/FMapList.vo /usr/lib64/coq/theories/FSets/FMapPositive.vo /usr/lib64/coq/theories/FSets/FMapWeakList.vo /usr/lib64/coq/theories/FSets/FMaps.vo /usr/lib64/coq/theories/FSets/FSetAVL.vo /usr/lib64/coq/theories/FSets/FSetBridge.vo /usr/lib64/coq/theories/FSets/FSetCompat.vo /usr/lib64/coq/theories/FSets/FSetDecide.vo /usr/lib64/coq/theories/FSets/FSetEqProperties.vo /usr/lib64/coq/theories/FSets/FSetFacts.vo /usr/lib64/coq/theories/FSets/FSetInterface.vo /usr/lib64/coq/theories/FSets/FSetList.vo /usr/lib64/coq/theories/FSets/FSetPositive.vo /usr/lib64/coq/theories/FSets/FSetProperties.vo /usr/lib64/coq/theories/FSets/FSetToFiniteSet.vo /usr/lib64/coq/theories/FSets/FSetWeakList.vo /usr/lib64/coq/theories/FSets/FSets.vo /usr/lib64/coq/theories/Floats /usr/lib64/coq/theories/Floats/.coq-native /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_FloatAxioms.cmxs /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_FloatClass.cmxs /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_FloatLemmas.cmxs /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_FloatOps.cmxs /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_Floats.cmxs /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_PrimFloat.cmxs /usr/lib64/coq/theories/Floats/.coq-native/NCoq_Floats_SpecFloat.cmxs /usr/lib64/coq/theories/Floats/FloatAxioms.vo /usr/lib64/coq/theories/Floats/FloatClass.vo /usr/lib64/coq/theories/Floats/FloatLemmas.vo /usr/lib64/coq/theories/Floats/FloatOps.vo /usr/lib64/coq/theories/Floats/Floats.vo /usr/lib64/coq/theories/Floats/PrimFloat.vo /usr/lib64/coq/theories/Floats/SpecFloat.vo /usr/lib64/coq/theories/Init /usr/lib64/coq/theories/Init/.coq-native /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Byte.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Datatypes.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Decimal.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Hexadecimal.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Logic.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Ltac.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Nat.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Notations.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Number.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Peano.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Prelude.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Specif.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Tactics.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Tauto.cmxs /usr/lib64/coq/theories/Init/.coq-native/NCoq_Init_Wf.cmxs /usr/lib64/coq/theories/Init/Byte.vo /usr/lib64/coq/theories/Init/Datatypes.vo /usr/lib64/coq/theories/Init/Decimal.vo /usr/lib64/coq/theories/Init/Hexadecimal.vo /usr/lib64/coq/theories/Init/Logic.vo /usr/lib64/coq/theories/Init/Ltac.vo /usr/lib64/coq/theories/Init/Nat.vo /usr/lib64/coq/theories/Init/Notations.vo /usr/lib64/coq/theories/Init/Number.vo /usr/lib64/coq/theories/Init/Peano.vo /usr/lib64/coq/theories/Init/Prelude.vo /usr/lib64/coq/theories/Init/Specif.vo /usr/lib64/coq/theories/Init/Tactics.vo /usr/lib64/coq/theories/Init/Tauto.vo /usr/lib64/coq/theories/Init/Wf.vo /usr/lib64/coq/theories/Lists /usr/lib64/coq/theories/Lists/.coq-native /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_List.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_ListDec.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_ListSet.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_ListTactics.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidList.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_SetoidPermutation.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_StreamMemo.cmxs /usr/lib64/coq/theories/Lists/.coq-native/NCoq_Lists_Streams.cmxs /usr/lib64/coq/theories/Lists/List.vo /usr/lib64/coq/theories/Lists/ListDec.vo /usr/lib64/coq/theories/Lists/ListSet.vo /usr/lib64/coq/theories/Lists/ListTactics.vo /usr/lib64/coq/theories/Lists/SetoidList.vo /usr/lib64/coq/theories/Lists/SetoidPermutation.vo /usr/lib64/coq/theories/Lists/StreamMemo.vo /usr/lib64/coq/theories/Lists/Streams.vo /usr/lib64/coq/theories/Logic /usr/lib64/coq/theories/Logic/.coq-native /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Adjointification.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Berardi.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ChoiceFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Classical.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalChoice.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalDescription.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalEpsilon.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ClassicalUniqueChoice.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Pred_Type.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Classical_Prop.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ConstructiveEpsilon.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Decidable.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Description.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Diaconescu.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Epsilon.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_EqdepFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Eqdep_dec.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalFunctionRepresentative.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ExtensionalityFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_FinFun.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_FunctionalExtensionality.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_HLevels.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_Hurkens.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_IndefiniteDescription.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_JMeq.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevance.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_ProofIrrelevanceFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionality.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_PropExtensionalityFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_PropFacts.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_RelationalChoice.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_SetIsType.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_SetoidChoice.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_StrictProp.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_WKL.cmxs /usr/lib64/coq/theories/Logic/.coq-native/NCoq_Logic_WeakFan.cmxs /usr/lib64/coq/theories/Logic/Adjointification.vo /usr/lib64/coq/theories/Logic/Berardi.vo /usr/lib64/coq/theories/Logic/ChoiceFacts.vo /usr/lib64/coq/theories/Logic/Classical.vo /usr/lib64/coq/theories/Logic/ClassicalChoice.vo /usr/lib64/coq/theories/Logic/ClassicalDescription.vo /usr/lib64/coq/theories/Logic/ClassicalEpsilon.vo /usr/lib64/coq/theories/Logic/ClassicalFacts.vo /usr/lib64/coq/theories/Logic/ClassicalUniqueChoice.vo /usr/lib64/coq/theories/Logic/Classical_Pred_Type.vo /usr/lib64/coq/theories/Logic/Classical_Prop.vo /usr/lib64/coq/theories/Logic/ConstructiveEpsilon.vo /usr/lib64/coq/theories/Logic/Decidable.vo /usr/lib64/coq/theories/Logic/Description.vo /usr/lib64/coq/theories/Logic/Diaconescu.vo /usr/lib64/coq/theories/Logic/Epsilon.vo /usr/lib64/coq/theories/Logic/Eqdep.vo /usr/lib64/coq/theories/Logic/EqdepFacts.vo /usr/lib64/coq/theories/Logic/Eqdep_dec.vo /usr/lib64/coq/theories/Logic/ExtensionalFunctionRepresentative.vo /usr/lib64/coq/theories/Logic/ExtensionalityFacts.vo /usr/lib64/coq/theories/Logic/FinFun.vo /usr/lib64/coq/theories/Logic/FunctionalExtensionality.vo /usr/lib64/coq/theories/Logic/HLevels.vo /usr/lib64/coq/theories/Logic/Hurkens.vo /usr/lib64/coq/theories/Logic/IndefiniteDescription.vo /usr/lib64/coq/theories/Logic/JMeq.vo /usr/lib64/coq/theories/Logic/ProofIrrelevance.vo /usr/lib64/coq/theories/Logic/ProofIrrelevanceFacts.vo /usr/lib64/coq/theories/Logic/PropExtensionality.vo /usr/lib64/coq/theories/Logic/PropExtensionalityFacts.vo /usr/lib64/coq/theories/Logic/PropFacts.vo /usr/lib64/coq/theories/Logic/RelationalChoice.vo /usr/lib64/coq/theories/Logic/SetIsType.vo /usr/lib64/coq/theories/Logic/SetoidChoice.vo /usr/lib64/coq/theories/Logic/StrictProp.vo /usr/lib64/coq/theories/Logic/WKL.vo /usr/lib64/coq/theories/Logic/WeakFan.vo /usr/lib64/coq/theories/MSets /usr/lib64/coq/theories/MSets/.coq-native /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetAVL.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetDecide.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetEqProperties.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetFacts.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetGenTree.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetInterface.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetList.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetPositive.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetProperties.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetRBT.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetToFiniteSet.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSetWeakList.cmxs /usr/lib64/coq/theories/MSets/.coq-native/NCoq_MSets_MSets.cmxs /usr/lib64/coq/theories/MSets/MSetAVL.vo /usr/lib64/coq/theories/MSets/MSetDecide.vo /usr/lib64/coq/theories/MSets/MSetEqProperties.vo /usr/lib64/coq/theories/MSets/MSetFacts.vo /usr/lib64/coq/theories/MSets/MSetGenTree.vo /usr/lib64/coq/theories/MSets/MSetInterface.vo /usr/lib64/coq/theories/MSets/MSetList.vo /usr/lib64/coq/theories/MSets/MSetPositive.vo /usr/lib64/coq/theories/MSets/MSetProperties.vo /usr/lib64/coq/theories/MSets/MSetRBT.vo /usr/lib64/coq/theories/MSets/MSetToFiniteSet.vo /usr/lib64/coq/theories/MSets/MSetWeakList.vo /usr/lib64/coq/theories/MSets/MSets.vo /usr/lib64/coq/theories/NArith /usr/lib64/coq/theories/NArith/.coq-native /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_BinNat.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_BinNatDef.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_NArith.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_Ndec.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_Ndiv_def.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_Ngcd_def.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_Nnat.cmxs /usr/lib64/coq/theories/NArith/.coq-native/NCoq_NArith_Nsqrt_def.cmxs /usr/lib64/coq/theories/NArith/BinNat.vo /usr/lib64/coq/theories/NArith/BinNatDef.vo /usr/lib64/coq/theories/NArith/NArith.vo /usr/lib64/coq/theories/NArith/Ndec.vo /usr/lib64/coq/theories/NArith/Ndiv_def.vo /usr/lib64/coq/theories/NArith/Ngcd_def.vo /usr/lib64/coq/theories/NArith/Nnat.vo /usr/lib64/coq/theories/NArith/Nsqrt_def.vo /usr/lib64/coq/theories/Numbers /usr/lib64/coq/theories/Numbers/.coq-native /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_AltBinNotations.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_BinNums.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalFacts.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalN.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalNat.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalPos.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalQ.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalR.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalString.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_DecimalZ.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalFacts.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalN.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalNat.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalPos.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalQ.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalR.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalString.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_HexadecimalZ.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_NaryFunctions.cmxs /usr/lib64/coq/theories/Numbers/.coq-native/NCoq_Numbers_NumPrelude.cmxs /usr/lib64/coq/theories/Numbers/AltBinNotations.vo /usr/lib64/coq/theories/Numbers/BinNums.vo /usr/lib64/coq/theories/Numbers/Cyclic /usr/lib64/coq/theories/Numbers/Cyclic/Abstract /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/.coq-native /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CarryType.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_CyclicAxioms.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_DoubleType.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/.coq-native/NCoq_Numbers_Cyclic_Abstract_NZCyclic.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/CarryType.vo /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/CyclicAxioms.vo /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/DoubleType.vo /usr/lib64/coq/theories/Numbers/Cyclic/Abstract/NZCyclic.vo /usr/lib64/coq/theories/Numbers/Cyclic/Int63 /usr/lib64/coq/theories/Numbers/Cyclic/Int63/.coq-native /usr/lib64/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Cyclic63.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_PrimInt63.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Ring63.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Sint63.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Int63/.coq-native/NCoq_Numbers_Cyclic_Int63_Uint63.cmxs /usr/lib64/coq/theories/Numbers/Cyclic/Int63/Cyclic63.vo /usr/lib64/coq/theories/Numbers/Cyclic/Int63/PrimInt63.vo /usr/lib64/coq/theories/Numbers/Cyclic/Int63/Ring63.vo /usr/lib64/coq/theories/Numbers/Cyclic/Int63/Sint63.vo /usr/lib64/coq/theories/Numbers/Cyclic/Int63/Uint63.vo /usr/lib64/coq/theories/Numbers/DecimalFacts.vo /usr/lib64/coq/theories/Numbers/DecimalN.vo /usr/lib64/coq/theories/Numbers/DecimalNat.vo /usr/lib64/coq/theories/Numbers/DecimalPos.vo /usr/lib64/coq/theories/Numbers/DecimalQ.vo /usr/lib64/coq/theories/Numbers/DecimalR.vo /usr/lib64/coq/theories/Numbers/DecimalString.vo /usr/lib64/coq/theories/Numbers/DecimalZ.vo /usr/lib64/coq/theories/Numbers/HexadecimalFacts.vo /usr/lib64/coq/theories/Numbers/HexadecimalN.vo /usr/lib64/coq/theories/Numbers/HexadecimalNat.vo /usr/lib64/coq/theories/Numbers/HexadecimalPos.vo /usr/lib64/coq/theories/Numbers/HexadecimalQ.vo /usr/lib64/coq/theories/Numbers/HexadecimalR.vo /usr/lib64/coq/theories/Numbers/HexadecimalString.vo /usr/lib64/coq/theories/Numbers/HexadecimalZ.vo /usr/lib64/coq/theories/Numbers/Integer /usr/lib64/coq/theories/Numbers/Integer/Abstract /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAdd.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAddOrder.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZAxioms.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBase.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZBits.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivEucl.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivFloor.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZDivTrunc.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZGcd.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLcm.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZLt.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMaxMin.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMul.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZMulOrder.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZParity.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZPow.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZProperties.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/.coq-native/NCoq_Numbers_Integer_Abstract_ZSgnAbs.cmxs /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZAdd.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZAddOrder.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZAxioms.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZBase.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZBits.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZDivEucl.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZDivFloor.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZDivTrunc.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZGcd.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZLcm.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZLt.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZMaxMin.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZMul.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZMulOrder.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZParity.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZPow.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZProperties.vo /usr/lib64/coq/theories/Numbers/Integer/Abstract/ZSgnAbs.vo /usr/lib64/coq/theories/Numbers/Integer/Binary /usr/lib64/coq/theories/Numbers/Integer/Binary/.coq-native /usr/lib64/coq/theories/Numbers/Integer/Binary/.coq-native/NCoq_Numbers_Integer_Binary_ZBinary.cmxs /usr/lib64/coq/theories/Numbers/Integer/Binary/ZBinary.vo /usr/lib64/coq/theories/Numbers/Integer/NatPairs /usr/lib64/coq/theories/Numbers/Integer/NatPairs/.coq-native /usr/lib64/coq/theories/Numbers/Integer/NatPairs/.coq-native/NCoq_Numbers_Integer_NatPairs_ZNatPairs.cmxs /usr/lib64/coq/theories/Numbers/Integer/NatPairs/ZNatPairs.vo /usr/lib64/coq/theories/Numbers/NaryFunctions.vo /usr/lib64/coq/theories/Numbers/NatInt /usr/lib64/coq/theories/Numbers/NatInt/.coq-native /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAdd.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAddOrder.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZAxioms.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBase.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZBits.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDiv.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZDomain.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZGcd.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZLog.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMul.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZMulOrder.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZOrder.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZParity.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZPow.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZProperties.cmxs /usr/lib64/coq/theories/Numbers/NatInt/.coq-native/NCoq_Numbers_NatInt_NZSqrt.cmxs /usr/lib64/coq/theories/Numbers/NatInt/NZAdd.vo /usr/lib64/coq/theories/Numbers/NatInt/NZAddOrder.vo /usr/lib64/coq/theories/Numbers/NatInt/NZAxioms.vo /usr/lib64/coq/theories/Numbers/NatInt/NZBase.vo /usr/lib64/coq/theories/Numbers/NatInt/NZBits.vo /usr/lib64/coq/theories/Numbers/NatInt/NZDiv.vo /usr/lib64/coq/theories/Numbers/NatInt/NZDomain.vo /usr/lib64/coq/theories/Numbers/NatInt/NZGcd.vo /usr/lib64/coq/theories/Numbers/NatInt/NZLog.vo /usr/lib64/coq/theories/Numbers/NatInt/NZMul.vo /usr/lib64/coq/theories/Numbers/NatInt/NZMulOrder.vo /usr/lib64/coq/theories/Numbers/NatInt/NZOrder.vo /usr/lib64/coq/theories/Numbers/NatInt/NZParity.vo /usr/lib64/coq/theories/Numbers/NatInt/NZPow.vo /usr/lib64/coq/theories/Numbers/NatInt/NZProperties.vo /usr/lib64/coq/theories/Numbers/NatInt/NZSqrt.vo /usr/lib64/coq/theories/Numbers/Natural /usr/lib64/coq/theories/Numbers/Natural/Abstract /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAdd.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAddOrder.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NAxioms.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBase.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NBits.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDefOps.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NDiv0.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NGcd.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NIso.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLcm0.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NLog.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMaxMin.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NMulOrder.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NOrder.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NParity.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NPow.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NProperties.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSqrt.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NStrongRec.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/.coq-native/NCoq_Numbers_Natural_Abstract_NSub.cmxs /usr/lib64/coq/theories/Numbers/Natural/Abstract/NAdd.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NAddOrder.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NAxioms.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NBase.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NBits.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NDefOps.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NDiv.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NDiv0.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NGcd.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NIso.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NLcm.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NLcm0.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NLog.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NMaxMin.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NMulOrder.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NOrder.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NParity.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NPow.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NProperties.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NSqrt.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NStrongRec.vo /usr/lib64/coq/theories/Numbers/Natural/Abstract/NSub.vo /usr/lib64/coq/theories/Numbers/Natural/Binary /usr/lib64/coq/theories/Numbers/Natural/Binary/.coq-native /usr/lib64/coq/theories/Numbers/Natural/Binary/.coq-native/NCoq_Numbers_Natural_Binary_NBinary.cmxs /usr/lib64/coq/theories/Numbers/Natural/Binary/NBinary.vo /usr/lib64/coq/theories/Numbers/NumPrelude.vo /usr/lib64/coq/theories/PArith /usr/lib64/coq/theories/PArith/.coq-native /usr/lib64/coq/theories/PArith/.coq-native/NCoq_PArith_BinPos.cmxs /usr/lib64/coq/theories/PArith/.coq-native/NCoq_PArith_BinPosDef.cmxs /usr/lib64/coq/theories/PArith/.coq-native/NCoq_PArith_PArith.cmxs /usr/lib64/coq/theories/PArith/.coq-native/NCoq_PArith_POrderedType.cmxs /usr/lib64/coq/theories/PArith/.coq-native/NCoq_PArith_Pnat.cmxs /usr/lib64/coq/theories/PArith/BinPos.vo /usr/lib64/coq/theories/PArith/BinPosDef.vo /usr/lib64/coq/theories/PArith/PArith.vo /usr/lib64/coq/theories/PArith/POrderedType.vo /usr/lib64/coq/theories/PArith/Pnat.vo /usr/lib64/coq/theories/Program /usr/lib64/coq/theories/Program/.coq-native /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Basics.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Combinators.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Equality.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Program.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Subset.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Syntax.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Tactics.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Utils.cmxs /usr/lib64/coq/theories/Program/.coq-native/NCoq_Program_Wf.cmxs /usr/lib64/coq/theories/Program/Basics.vo /usr/lib64/coq/theories/Program/Combinators.vo /usr/lib64/coq/theories/Program/Equality.vo /usr/lib64/coq/theories/Program/Program.vo /usr/lib64/coq/theories/Program/Subset.vo /usr/lib64/coq/theories/Program/Syntax.vo /usr/lib64/coq/theories/Program/Tactics.vo /usr/lib64/coq/theories/Program/Utils.vo /usr/lib64/coq/theories/Program/Wf.vo /usr/lib64/coq/theories/QArith /usr/lib64/coq/theories/QArith/.coq-native /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_QArith.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_QArith_base.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_QOrderedType.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qabs.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qcabs.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qcanon.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qfield.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qminmax.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qpower.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qreals.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qreduction.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qring.cmxs /usr/lib64/coq/theories/QArith/.coq-native/NCoq_QArith_Qround.cmxs /usr/lib64/coq/theories/QArith/QArith.vo /usr/lib64/coq/theories/QArith/QArith_base.vo /usr/lib64/coq/theories/QArith/QOrderedType.vo /usr/lib64/coq/theories/QArith/Qabs.vo /usr/lib64/coq/theories/QArith/Qcabs.vo /usr/lib64/coq/theories/QArith/Qcanon.vo /usr/lib64/coq/theories/QArith/Qfield.vo /usr/lib64/coq/theories/QArith/Qminmax.vo /usr/lib64/coq/theories/QArith/Qpower.vo /usr/lib64/coq/theories/QArith/Qreals.vo /usr/lib64/coq/theories/QArith/Qreduction.vo /usr/lib64/coq/theories/QArith/Qring.vo /usr/lib64/coq/theories/QArith/Qround.vo /usr/lib64/coq/theories/Reals /usr/lib64/coq/theories/Reals/.coq-native /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Alembert.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_AltSeries.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_ArithProp.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Binomial.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Cauchy_prod.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalConstructiveReals.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_ClassicalDedekindReals.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_plus.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Cos_rel.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_DiscrR.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Exp_prop.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Integration.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_MVT.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Machin.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_NewtonInt.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_PSeries_reg.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_PartSum.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_RIneq.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_RList.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_ROrderedType.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_R_Ifp.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqr.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_R_sqrt.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis1.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis2.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis3.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis4.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis5.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ranalysis_reg.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Ratan.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Raxioms.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rbase.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rbasic_fun.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rcomplete.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rdefinitions.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rderiv.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Reals.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rfunctions.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rgeom.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_RiemannInt_SF.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rlimit.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rlogic.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rminmax.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rpow_def.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rpower.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rprod.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rregisternames.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rseries.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rsigma.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rsqrt_def.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtopology.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo1.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_alt.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_calc.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_def.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_facts.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_fun.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Rtrigo_reg.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Runcountable.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_SeqProp.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_SeqSeries.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_SplitAbsolu.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_SplitRmult.cmxs /usr/lib64/coq/theories/Reals/.coq-native/NCoq_Reals_Sqrt_reg.cmxs /usr/lib64/coq/theories/Reals/Abstract /usr/lib64/coq/theories/Reals/Abstract/.coq-native /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveAbs.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLUB.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveLimits.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveMinMax.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructivePower.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveReals.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveRealsMorphisms.cmxs /usr/lib64/coq/theories/Reals/Abstract/.coq-native/NCoq_Reals_Abstract_ConstructiveSum.cmxs /usr/lib64/coq/theories/Reals/Abstract/ConstructiveAbs.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructiveLUB.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructiveLimits.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructiveMinMax.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructivePower.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructiveReals.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructiveRealsMorphisms.vo /usr/lib64/coq/theories/Reals/Abstract/ConstructiveSum.vo /usr/lib64/coq/theories/Reals/Alembert.vo /usr/lib64/coq/theories/Reals/AltSeries.vo /usr/lib64/coq/theories/Reals/ArithProp.vo /usr/lib64/coq/theories/Reals/Binomial.vo /usr/lib64/coq/theories/Reals/Cauchy /usr/lib64/coq/theories/Reals/Cauchy/.coq-native /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyAbs.cmxs /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyReals.cmxs /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveCauchyRealsMult.cmxs /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveExtra.cmxs /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_ConstructiveRcomplete.cmxs /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_PosExtra.cmxs /usr/lib64/coq/theories/Reals/Cauchy/.coq-native/NCoq_Reals_Cauchy_QExtra.cmxs /usr/lib64/coq/theories/Reals/Cauchy/ConstructiveCauchyAbs.vo /usr/lib64/coq/theories/Reals/Cauchy/ConstructiveCauchyReals.vo /usr/lib64/coq/theories/Reals/Cauchy/ConstructiveCauchyRealsMult.vo /usr/lib64/coq/theories/Reals/Cauchy/ConstructiveExtra.vo /usr/lib64/coq/theories/Reals/Cauchy/ConstructiveRcomplete.vo /usr/lib64/coq/theories/Reals/Cauchy/PosExtra.vo /usr/lib64/coq/theories/Reals/Cauchy/QExtra.vo /usr/lib64/coq/theories/Reals/Cauchy_prod.vo /usr/lib64/coq/theories/Reals/ClassicalConstructiveReals.vo /usr/lib64/coq/theories/Reals/ClassicalDedekindReals.vo /usr/lib64/coq/theories/Reals/Cos_plus.vo /usr/lib64/coq/theories/Reals/Cos_rel.vo /usr/lib64/coq/theories/Reals/DiscrR.vo /usr/lib64/coq/theories/Reals/Exp_prop.vo /usr/lib64/coq/theories/Reals/Integration.vo /usr/lib64/coq/theories/Reals/MVT.vo /usr/lib64/coq/theories/Reals/Machin.vo /usr/lib64/coq/theories/Reals/NewtonInt.vo /usr/lib64/coq/theories/Reals/PSeries_reg.vo /usr/lib64/coq/theories/Reals/PartSum.vo /usr/lib64/coq/theories/Reals/RIneq.vo /usr/lib64/coq/theories/Reals/RList.vo /usr/lib64/coq/theories/Reals/ROrderedType.vo /usr/lib64/coq/theories/Reals/R_Ifp.vo /usr/lib64/coq/theories/Reals/R_sqr.vo /usr/lib64/coq/theories/Reals/R_sqrt.vo /usr/lib64/coq/theories/Reals/Ranalysis.vo /usr/lib64/coq/theories/Reals/Ranalysis1.vo /usr/lib64/coq/theories/Reals/Ranalysis2.vo /usr/lib64/coq/theories/Reals/Ranalysis3.vo /usr/lib64/coq/theories/Reals/Ranalysis4.vo /usr/lib64/coq/theories/Reals/Ranalysis5.vo /usr/lib64/coq/theories/Reals/Ranalysis_reg.vo /usr/lib64/coq/theories/Reals/Ratan.vo /usr/lib64/coq/theories/Reals/Raxioms.vo /usr/lib64/coq/theories/Reals/Rbase.vo /usr/lib64/coq/theories/Reals/Rbasic_fun.vo /usr/lib64/coq/theories/Reals/Rcomplete.vo /usr/lib64/coq/theories/Reals/Rdefinitions.vo /usr/lib64/coq/theories/Reals/Rderiv.vo /usr/lib64/coq/theories/Reals/Reals.vo /usr/lib64/coq/theories/Reals/Rfunctions.vo /usr/lib64/coq/theories/Reals/Rgeom.vo /usr/lib64/coq/theories/Reals/RiemannInt.vo /usr/lib64/coq/theories/Reals/RiemannInt_SF.vo /usr/lib64/coq/theories/Reals/Rlimit.vo /usr/lib64/coq/theories/Reals/Rlogic.vo /usr/lib64/coq/theories/Reals/Rminmax.vo /usr/lib64/coq/theories/Reals/Rpow_def.vo /usr/lib64/coq/theories/Reals/Rpower.vo /usr/lib64/coq/theories/Reals/Rprod.vo /usr/lib64/coq/theories/Reals/Rregisternames.vo /usr/lib64/coq/theories/Reals/Rseries.vo /usr/lib64/coq/theories/Reals/Rsigma.vo /usr/lib64/coq/theories/Reals/Rsqrt_def.vo /usr/lib64/coq/theories/Reals/Rtopology.vo /usr/lib64/coq/theories/Reals/Rtrigo.vo /usr/lib64/coq/theories/Reals/Rtrigo1.vo /usr/lib64/coq/theories/Reals/Rtrigo_alt.vo /usr/lib64/coq/theories/Reals/Rtrigo_calc.vo /usr/lib64/coq/theories/Reals/Rtrigo_def.vo /usr/lib64/coq/theories/Reals/Rtrigo_facts.vo /usr/lib64/coq/theories/Reals/Rtrigo_fun.vo /usr/lib64/coq/theories/Reals/Rtrigo_reg.vo /usr/lib64/coq/theories/Reals/Runcountable.vo /usr/lib64/coq/theories/Reals/SeqProp.vo /usr/lib64/coq/theories/Reals/SeqSeries.vo /usr/lib64/coq/theories/Reals/SplitAbsolu.vo /usr/lib64/coq/theories/Reals/SplitRmult.vo /usr/lib64/coq/theories/Reals/Sqrt_reg.vo /usr/lib64/coq/theories/Relations /usr/lib64/coq/theories/Relations/.coq-native /usr/lib64/coq/theories/Relations/.coq-native/NCoq_Relations_Operators_Properties.cmxs /usr/lib64/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Definitions.cmxs /usr/lib64/coq/theories/Relations/.coq-native/NCoq_Relations_Relation_Operators.cmxs /usr/lib64/coq/theories/Relations/.coq-native/NCoq_Relations_Relations.cmxs /usr/lib64/coq/theories/Relations/Operators_Properties.vo /usr/lib64/coq/theories/Relations/Relation_Definitions.vo /usr/lib64/coq/theories/Relations/Relation_Operators.vo /usr/lib64/coq/theories/Relations/Relations.vo /usr/lib64/coq/theories/Setoids /usr/lib64/coq/theories/Setoids/.coq-native /usr/lib64/coq/theories/Setoids/.coq-native/NCoq_Setoids_Setoid.cmxs /usr/lib64/coq/theories/Setoids/Setoid.vo /usr/lib64/coq/theories/Sets /usr/lib64/coq/theories/Sets/.coq-native /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Classical_sets.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Constructive_sets.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Cpo.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Ensembles.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Finite_sets_facts.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Image.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Infinite_sets.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Integers.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Multiset.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Partial_Order.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Permut.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_Classical_facts.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Powerset_facts.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_1_facts.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_2_facts.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Relations_3_facts.cmxs /usr/lib64/coq/theories/Sets/.coq-native/NCoq_Sets_Uniset.cmxs /usr/lib64/coq/theories/Sets/Classical_sets.vo /usr/lib64/coq/theories/Sets/Constructive_sets.vo /usr/lib64/coq/theories/Sets/Cpo.vo /usr/lib64/coq/theories/Sets/Ensembles.vo /usr/lib64/coq/theories/Sets/Finite_sets.vo /usr/lib64/coq/theories/Sets/Finite_sets_facts.vo /usr/lib64/coq/theories/Sets/Image.vo /usr/lib64/coq/theories/Sets/Infinite_sets.vo /usr/lib64/coq/theories/Sets/Integers.vo /usr/lib64/coq/theories/Sets/Multiset.vo /usr/lib64/coq/theories/Sets/Partial_Order.vo /usr/lib64/coq/theories/Sets/Permut.vo /usr/lib64/coq/theories/Sets/Powerset.vo /usr/lib64/coq/theories/Sets/Powerset_Classical_facts.vo /usr/lib64/coq/theories/Sets/Powerset_facts.vo /usr/lib64/coq/theories/Sets/Relations_1.vo /usr/lib64/coq/theories/Sets/Relations_1_facts.vo /usr/lib64/coq/theories/Sets/Relations_2.vo /usr/lib64/coq/theories/Sets/Relations_2_facts.vo /usr/lib64/coq/theories/Sets/Relations_3.vo /usr/lib64/coq/theories/Sets/Relations_3_facts.vo /usr/lib64/coq/theories/Sets/Uniset.vo /usr/lib64/coq/theories/Sorting /usr/lib64/coq/theories/Sorting/.coq-native /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_CPermutation.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_Heap.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_Mergesort.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutEq.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_PermutSetoid.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_Permutation.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorted.cmxs /usr/lib64/coq/theories/Sorting/.coq-native/NCoq_Sorting_Sorting.cmxs /usr/lib64/coq/theories/Sorting/CPermutation.vo /usr/lib64/coq/theories/Sorting/Heap.vo /usr/lib64/coq/theories/Sorting/Mergesort.vo /usr/lib64/coq/theories/Sorting/PermutEq.vo /usr/lib64/coq/theories/Sorting/PermutSetoid.vo /usr/lib64/coq/theories/Sorting/Permutation.vo /usr/lib64/coq/theories/Sorting/Sorted.vo /usr/lib64/coq/theories/Sorting/Sorting.vo /usr/lib64/coq/theories/Strings /usr/lib64/coq/theories/Strings/.coq-native /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_Ascii.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_BinaryString.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_Byte.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_HexString.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_OctalString.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_PString.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_PrimString.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_PrimStringAxioms.cmxs /usr/lib64/coq/theories/Strings/.coq-native/NCoq_Strings_String.cmxs /usr/lib64/coq/theories/Strings/Ascii.vo /usr/lib64/coq/theories/Strings/BinaryString.vo /usr/lib64/coq/theories/Strings/Byte.vo /usr/lib64/coq/theories/Strings/HexString.vo /usr/lib64/coq/theories/Strings/OctalString.vo /usr/lib64/coq/theories/Strings/PString.vo /usr/lib64/coq/theories/Strings/PrimString.vo /usr/lib64/coq/theories/Strings/PrimStringAxioms.vo /usr/lib64/coq/theories/Strings/String.vo /usr/lib64/coq/theories/Structures /usr/lib64/coq/theories/Structures/.coq-native /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableType.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_DecidableTypeEx.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_Equalities.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_EqualitiesFacts.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_GenericMinMax.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedType.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeAlt.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrderedTypeEx.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_Orders.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersAlt.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersEx.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersFacts.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersLists.cmxs /usr/lib64/coq/theories/Structures/.coq-native/NCoq_Structures_OrdersTac.cmxs /usr/lib64/coq/theories/Structures/DecidableType.vo /usr/lib64/coq/theories/Structures/DecidableTypeEx.vo /usr/lib64/coq/theories/Structures/Equalities.vo /usr/lib64/coq/theories/Structures/EqualitiesFacts.vo /usr/lib64/coq/theories/Structures/GenericMinMax.vo /usr/lib64/coq/theories/Structures/OrderedType.vo /usr/lib64/coq/theories/Structures/OrderedTypeAlt.vo /usr/lib64/coq/theories/Structures/OrderedTypeEx.vo /usr/lib64/coq/theories/Structures/Orders.vo /usr/lib64/coq/theories/Structures/OrdersAlt.vo /usr/lib64/coq/theories/Structures/OrdersEx.vo /usr/lib64/coq/theories/Structures/OrdersFacts.vo /usr/lib64/coq/theories/Structures/OrdersLists.vo /usr/lib64/coq/theories/Structures/OrdersTac.vo /usr/lib64/coq/theories/Unicode /usr/lib64/coq/theories/Unicode/.coq-native /usr/lib64/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8.cmxs /usr/lib64/coq/theories/Unicode/.coq-native/NCoq_Unicode_Utf8_core.cmxs /usr/lib64/coq/theories/Unicode/Utf8.vo /usr/lib64/coq/theories/Unicode/Utf8_core.vo /usr/lib64/coq/theories/Vectors /usr/lib64/coq/theories/Vectors/.coq-native /usr/lib64/coq/theories/Vectors/.coq-native/NCoq_Vectors_Fin.cmxs /usr/lib64/coq/theories/Vectors/.coq-native/NCoq_Vectors_Vector.cmxs /usr/lib64/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorDef.cmxs /usr/lib64/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorEq.cmxs /usr/lib64/coq/theories/Vectors/.coq-native/NCoq_Vectors_VectorSpec.cmxs /usr/lib64/coq/theories/Vectors/Fin.vo /usr/lib64/coq/theories/Vectors/Vector.vo /usr/lib64/coq/theories/Vectors/VectorDef.vo /usr/lib64/coq/theories/Vectors/VectorEq.vo /usr/lib64/coq/theories/Vectors/VectorSpec.vo /usr/lib64/coq/theories/Wellfounded /usr/lib64/coq/theories/Wellfounded/.coq-native /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Disjoint_Union.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inclusion.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Inverse_Image.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Exponentiation.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Lexicographic_Product.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Transitive_Closure.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Union.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Well_Ordering.cmxs /usr/lib64/coq/theories/Wellfounded/.coq-native/NCoq_Wellfounded_Wellfounded.cmxs /usr/lib64/coq/theories/Wellfounded/Disjoint_Union.vo /usr/lib64/coq/theories/Wellfounded/Inclusion.vo /usr/lib64/coq/theories/Wellfounded/Inverse_Image.vo /usr/lib64/coq/theories/Wellfounded/Lexicographic_Exponentiation.vo /usr/lib64/coq/theories/Wellfounded/Lexicographic_Product.vo /usr/lib64/coq/theories/Wellfounded/Transitive_Closure.vo /usr/lib64/coq/theories/Wellfounded/Union.vo /usr/lib64/coq/theories/Wellfounded/Well_Ordering.vo /usr/lib64/coq/theories/Wellfounded/Wellfounded.vo /usr/lib64/coq/theories/ZArith /usr/lib64/coq/theories/ZArith/.coq-native /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinInt.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_BinIntDef.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Int.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Wf_Z.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_base.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_ZArith_dec.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zabs.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbitwise.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zbool.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcompare.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zcomplements.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zdiv.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeuclid.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zeven.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zgcd_alt.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zhints.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmax.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmin.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zminmax.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zmisc.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znat.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Znumtheory.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zorder.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_alt.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_def.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpow_facts.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zpower.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zquot.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_Zwf.cmxs /usr/lib64/coq/theories/ZArith/.coq-native/NCoq_ZArith_auxiliary.cmxs /usr/lib64/coq/theories/ZArith/BinInt.vo /usr/lib64/coq/theories/ZArith/BinIntDef.vo /usr/lib64/coq/theories/ZArith/Int.vo /usr/lib64/coq/theories/ZArith/Wf_Z.vo /usr/lib64/coq/theories/ZArith/ZArith.vo /usr/lib64/coq/theories/ZArith/ZArith_base.vo /usr/lib64/coq/theories/ZArith/ZArith_dec.vo /usr/lib64/coq/theories/ZArith/Zabs.vo /usr/lib64/coq/theories/ZArith/Zbitwise.vo /usr/lib64/coq/theories/ZArith/Zbool.vo /usr/lib64/coq/theories/ZArith/Zcompare.vo /usr/lib64/coq/theories/ZArith/Zcomplements.vo /usr/lib64/coq/theories/ZArith/Zdiv.vo /usr/lib64/coq/theories/ZArith/Zeuclid.vo /usr/lib64/coq/theories/ZArith/Zeven.vo /usr/lib64/coq/theories/ZArith/Zgcd_alt.vo /usr/lib64/coq/theories/ZArith/Zhints.vo /usr/lib64/coq/theories/ZArith/Zmax.vo /usr/lib64/coq/theories/ZArith/Zmin.vo /usr/lib64/coq/theories/ZArith/Zminmax.vo /usr/lib64/coq/theories/ZArith/Zmisc.vo /usr/lib64/coq/theories/ZArith/Znat.vo /usr/lib64/coq/theories/ZArith/Znumtheory.vo /usr/lib64/coq/theories/ZArith/Zorder.vo /usr/lib64/coq/theories/ZArith/Zpow_alt.vo /usr/lib64/coq/theories/ZArith/Zpow_def.vo /usr/lib64/coq/theories/ZArith/Zpow_facts.vo /usr/lib64/coq/theories/ZArith/Zpower.vo /usr/lib64/coq/theories/ZArith/Zquot.vo /usr/lib64/coq/theories/ZArith/Zwf.vo /usr/lib64/coq/theories/ZArith/auxiliary.vo /usr/lib64/coq/theories/btauto /usr/lib64/coq/theories/btauto/.coq-native /usr/lib64/coq/theories/btauto/.coq-native/NCoq_btauto_Algebra.cmxs /usr/lib64/coq/theories/btauto/.coq-native/NCoq_btauto_Btauto.cmxs /usr/lib64/coq/theories/btauto/.coq-native/NCoq_btauto_Reflect.cmxs /usr/lib64/coq/theories/btauto/Algebra.vo /usr/lib64/coq/theories/btauto/Btauto.vo /usr/lib64/coq/theories/btauto/Reflect.vo /usr/lib64/coq/theories/derive /usr/lib64/coq/theories/derive/.coq-native /usr/lib64/coq/theories/derive/.coq-native/NCoq_derive_Derive.cmxs /usr/lib64/coq/theories/derive/Derive.vo /usr/lib64/coq/theories/extraction /usr/lib64/coq/theories/extraction/.coq-native /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellBasic.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInt.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatInteger.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellNatNum.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellString.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInt.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZInteger.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrHaskellZNum.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlFloats.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlInt63.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlPArray.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOCamlPString.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlBasic.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlChar.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlIntConv.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatBigInt.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNatInt.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlNativeString.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlString.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZBigInt.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_ExtrOcamlZInt.cmxs /usr/lib64/coq/theories/extraction/.coq-native/NCoq_extraction_Extraction.cmxs /usr/lib64/coq/theories/extraction/ExtrHaskellBasic.vo /usr/lib64/coq/theories/extraction/ExtrHaskellNatInt.vo /usr/lib64/coq/theories/extraction/ExtrHaskellNatInteger.vo /usr/lib64/coq/theories/extraction/ExtrHaskellNatNum.vo /usr/lib64/coq/theories/extraction/ExtrHaskellString.vo /usr/lib64/coq/theories/extraction/ExtrHaskellZInt.vo /usr/lib64/coq/theories/extraction/ExtrHaskellZInteger.vo /usr/lib64/coq/theories/extraction/ExtrHaskellZNum.vo /usr/lib64/coq/theories/extraction/ExtrOCamlFloats.vo /usr/lib64/coq/theories/extraction/ExtrOCamlInt63.vo /usr/lib64/coq/theories/extraction/ExtrOCamlPArray.vo /usr/lib64/coq/theories/extraction/ExtrOCamlPString.vo /usr/lib64/coq/theories/extraction/ExtrOcamlBasic.vo /usr/lib64/coq/theories/extraction/ExtrOcamlChar.vo /usr/lib64/coq/theories/extraction/ExtrOcamlIntConv.vo /usr/lib64/coq/theories/extraction/ExtrOcamlNatBigInt.vo /usr/lib64/coq/theories/extraction/ExtrOcamlNatInt.vo /usr/lib64/coq/theories/extraction/ExtrOcamlNativeString.vo /usr/lib64/coq/theories/extraction/ExtrOcamlString.vo /usr/lib64/coq/theories/extraction/ExtrOcamlZBigInt.vo /usr/lib64/coq/theories/extraction/ExtrOcamlZInt.vo /usr/lib64/coq/theories/extraction/Extraction.vo /usr/lib64/coq/theories/funind /usr/lib64/coq/theories/funind/.coq-native /usr/lib64/coq/theories/funind/.coq-native/NCoq_funind_FunInd.cmxs /usr/lib64/coq/theories/funind/.coq-native/NCoq_funind_Recdef.cmxs /usr/lib64/coq/theories/funind/FunInd.vo /usr/lib64/coq/theories/funind/Recdef.vo /usr/lib64/coq/theories/micromega /usr/lib64/coq/theories/micromega/.coq-native /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_DeclConstant.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Env.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_EnvRing.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Fourier_util.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Lia.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Lqa.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Lra.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_MExtraction.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_OrderedRing.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Psatz.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_QMicromega.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_RMicromega.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Refl.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_RingMicromega.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Tauto.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_VarMap.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZArith_hints.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZCoeff.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZMicromega.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Zify.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyBool.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyClasses.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyComparison.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyInst.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyN.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyNat.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyPow.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifySint63.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_ZifyUint63.cmxs /usr/lib64/coq/theories/micromega/.coq-native/NCoq_micromega_Ztac.cmxs /usr/lib64/coq/theories/micromega/DeclConstant.vo /usr/lib64/coq/theories/micromega/Env.vo /usr/lib64/coq/theories/micromega/EnvRing.vo /usr/lib64/coq/theories/micromega/Fourier.vo /usr/lib64/coq/theories/micromega/Fourier_util.vo /usr/lib64/coq/theories/micromega/Lia.vo /usr/lib64/coq/theories/micromega/Lqa.vo /usr/lib64/coq/theories/micromega/Lra.vo /usr/lib64/coq/theories/micromega/MExtraction.vo /usr/lib64/coq/theories/micromega/OrderedRing.vo /usr/lib64/coq/theories/micromega/Psatz.vo /usr/lib64/coq/theories/micromega/QMicromega.vo /usr/lib64/coq/theories/micromega/RMicromega.vo /usr/lib64/coq/theories/micromega/Refl.vo /usr/lib64/coq/theories/micromega/RingMicromega.vo /usr/lib64/coq/theories/micromega/Tauto.vo /usr/lib64/coq/theories/micromega/VarMap.vo /usr/lib64/coq/theories/micromega/ZArith_hints.vo /usr/lib64/coq/theories/micromega/ZCoeff.vo /usr/lib64/coq/theories/micromega/ZMicromega.vo /usr/lib64/coq/theories/micromega/Zify.vo /usr/lib64/coq/theories/micromega/ZifyBool.vo /usr/lib64/coq/theories/micromega/ZifyClasses.vo /usr/lib64/coq/theories/micromega/ZifyComparison.vo /usr/lib64/coq/theories/micromega/ZifyInst.vo /usr/lib64/coq/theories/micromega/ZifyN.vo /usr/lib64/coq/theories/micromega/ZifyNat.vo /usr/lib64/coq/theories/micromega/ZifyPow.vo /usr/lib64/coq/theories/micromega/ZifySint63.vo /usr/lib64/coq/theories/micromega/ZifyUint63.vo /usr/lib64/coq/theories/micromega/Ztac.vo /usr/lib64/coq/theories/nsatz /usr/lib64/coq/theories/nsatz/.coq-native /usr/lib64/coq/theories/nsatz/.coq-native/NCoq_nsatz_Nsatz.cmxs /usr/lib64/coq/theories/nsatz/.coq-native/NCoq_nsatz_NsatzTactic.cmxs /usr/lib64/coq/theories/nsatz/Nsatz.vo /usr/lib64/coq/theories/nsatz/NsatzTactic.vo /usr/lib64/coq/theories/omega /usr/lib64/coq/theories/omega/.coq-native /usr/lib64/coq/theories/omega/.coq-native/NCoq_omega_OmegaLemmas.cmxs /usr/lib64/coq/theories/omega/.coq-native/NCoq_omega_PreOmega.cmxs /usr/lib64/coq/theories/omega/OmegaLemmas.vo /usr/lib64/coq/theories/omega/PreOmega.vo /usr/lib64/coq/theories/rtauto /usr/lib64/coq/theories/rtauto/.coq-native /usr/lib64/coq/theories/rtauto/.coq-native/NCoq_rtauto_Bintree.cmxs /usr/lib64/coq/theories/rtauto/.coq-native/NCoq_rtauto_Rtauto.cmxs /usr/lib64/coq/theories/rtauto/Bintree.vo /usr/lib64/coq/theories/rtauto/Rtauto.vo /usr/lib64/coq/theories/setoid_ring /usr/lib64/coq/theories/setoid_ring/.coq-native /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Algebra_syntax.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ArithRing.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_BinList.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Cring.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_tac.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Field_theory.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_InitialRing.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Integral_domain.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_NArithRing.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_initial.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_polynom.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ncring_tac.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_RealField.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_base.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_polynom.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_tac.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Ring_theory.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Q.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_R.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_Rings_Z.cmxs /usr/lib64/coq/theories/setoid_ring/.coq-native/NCoq_setoid_ring_ZArithRing.cmxs /usr/lib64/coq/theories/setoid_ring/Algebra_syntax.vo /usr/lib64/coq/theories/setoid_ring/ArithRing.vo /usr/lib64/coq/theories/setoid_ring/BinList.vo /usr/lib64/coq/theories/setoid_ring/Cring.vo /usr/lib64/coq/theories/setoid_ring/Field.vo /usr/lib64/coq/theories/setoid_ring/Field_tac.vo /usr/lib64/coq/theories/setoid_ring/Field_theory.vo /usr/lib64/coq/theories/setoid_ring/InitialRing.vo /usr/lib64/coq/theories/setoid_ring/Integral_domain.vo /usr/lib64/coq/theories/setoid_ring/NArithRing.vo /usr/lib64/coq/theories/setoid_ring/Ncring.vo /usr/lib64/coq/theories/setoid_ring/Ncring_initial.vo /usr/lib64/coq/theories/setoid_ring/Ncring_polynom.vo /usr/lib64/coq/theories/setoid_ring/Ncring_tac.vo /usr/lib64/coq/theories/setoid_ring/RealField.vo /usr/lib64/coq/theories/setoid_ring/Ring.vo /usr/lib64/coq/theories/setoid_ring/Ring_base.vo /usr/lib64/coq/theories/setoid_ring/Ring_polynom.vo /usr/lib64/coq/theories/setoid_ring/Ring_tac.vo /usr/lib64/coq/theories/setoid_ring/Ring_theory.vo /usr/lib64/coq/theories/setoid_ring/Rings_Q.vo /usr/lib64/coq/theories/setoid_ring/Rings_R.vo /usr/lib64/coq/theories/setoid_ring/Rings_Z.vo /usr/lib64/coq/theories/setoid_ring/ZArithRing.vo /usr/lib64/coq/theories/ssr /usr/lib64/coq/theories/ssr/.coq-native /usr/lib64/coq/theories/ssr/.coq-native/NCoq_ssr_ssrbool.cmxs /usr/lib64/coq/theories/ssr/.coq-native/NCoq_ssr_ssrclasses.cmxs /usr/lib64/coq/theories/ssr/.coq-native/NCoq_ssr_ssreflect.cmxs /usr/lib64/coq/theories/ssr/.coq-native/NCoq_ssr_ssrfun.cmxs /usr/lib64/coq/theories/ssr/.coq-native/NCoq_ssr_ssrsetoid.cmxs /usr/lib64/coq/theories/ssr/.coq-native/NCoq_ssr_ssrunder.cmxs /usr/lib64/coq/theories/ssr/ssrbool.vo /usr/lib64/coq/theories/ssr/ssrclasses.vo /usr/lib64/coq/theories/ssr/ssreflect.vo /usr/lib64/coq/theories/ssr/ssrfun.vo /usr/lib64/coq/theories/ssr/ssrsetoid.vo /usr/lib64/coq/theories/ssr/ssrunder.vo /usr/lib64/coq/theories/ssrmatching /usr/lib64/coq/theories/ssrmatching/.coq-native /usr/lib64/coq/theories/ssrmatching/.coq-native/NCoq_ssrmatching_ssrmatching.cmxs /usr/lib64/coq/theories/ssrmatching/ssrmatching.vo /usr/lib64/coq/user-contrib /usr/lib64/coq/user-contrib/Ltac2 /usr/lib64/coq/user-contrib/Ltac2/.coq-native /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Array.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Bool.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Char.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constant.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constr.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Constructor.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Control.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Env.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Evar.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_FMap.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_FSet.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Float.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Fresh.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ident.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ind.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Init.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Int.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Lazy.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_List.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac1.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ltac2.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Message.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Meta.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Notations.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Option.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pattern.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Printf.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Proj.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Pstring.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_RedFlags.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Ref.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Std.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_String.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_TransparentState.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Uint63.cmxs /usr/lib64/coq/user-contrib/Ltac2/.coq-native/NLtac2_Unification.cmxs /usr/lib64/coq/user-contrib/Ltac2/Array.vo /usr/lib64/coq/user-contrib/Ltac2/Bool.vo /usr/lib64/coq/user-contrib/Ltac2/Char.vo /usr/lib64/coq/user-contrib/Ltac2/Compat /usr/lib64/coq/user-contrib/Ltac2/Compat/.coq-native /usr/lib64/coq/user-contrib/Ltac2/Compat/.coq-native/NLtac2_Compat_Coq818.cmxs /usr/lib64/coq/user-contrib/Ltac2/Compat/.coq-native/NLtac2_Compat_Coq819.cmxs /usr/lib64/coq/user-contrib/Ltac2/Compat/Coq818.vo /usr/lib64/coq/user-contrib/Ltac2/Compat/Coq819.vo /usr/lib64/coq/user-contrib/Ltac2/Constant.vo /usr/lib64/coq/user-contrib/Ltac2/Constr.vo /usr/lib64/coq/user-contrib/Ltac2/Constructor.vo /usr/lib64/coq/user-contrib/Ltac2/Control.vo /usr/lib64/coq/user-contrib/Ltac2/Env.vo /usr/lib64/coq/user-contrib/Ltac2/Evar.vo /usr/lib64/coq/user-contrib/Ltac2/FMap.vo /usr/lib64/coq/user-contrib/Ltac2/FSet.vo /usr/lib64/coq/user-contrib/Ltac2/Float.vo /usr/lib64/coq/user-contrib/Ltac2/Fresh.vo /usr/lib64/coq/user-contrib/Ltac2/Ident.vo /usr/lib64/coq/user-contrib/Ltac2/Ind.vo /usr/lib64/coq/user-contrib/Ltac2/Init.vo /usr/lib64/coq/user-contrib/Ltac2/Int.vo /usr/lib64/coq/user-contrib/Ltac2/Lazy.vo /usr/lib64/coq/user-contrib/Ltac2/List.vo /usr/lib64/coq/user-contrib/Ltac2/Ltac1.vo /usr/lib64/coq/user-contrib/Ltac2/Ltac2.vo /usr/lib64/coq/user-contrib/Ltac2/Message.vo /usr/lib64/coq/user-contrib/Ltac2/Meta.vo /usr/lib64/coq/user-contrib/Ltac2/Notations.vo /usr/lib64/coq/user-contrib/Ltac2/Option.vo /usr/lib64/coq/user-contrib/Ltac2/Pattern.vo /usr/lib64/coq/user-contrib/Ltac2/Printf.vo /usr/lib64/coq/user-contrib/Ltac2/Proj.vo /usr/lib64/coq/user-contrib/Ltac2/Pstring.vo /usr/lib64/coq/user-contrib/Ltac2/RedFlags.vo /usr/lib64/coq/user-contrib/Ltac2/Ref.vo /usr/lib64/coq/user-contrib/Ltac2/Std.vo /usr/lib64/coq/user-contrib/Ltac2/String.vo /usr/lib64/coq/user-contrib/Ltac2/TransparentState.vo /usr/lib64/coq/user-contrib/Ltac2/Uint63.vo /usr/lib64/coq/user-contrib/Ltac2/Unification.vo /usr/lib64/coqide /usr/lib64/coqide-server /usr/lib64/coqide-server/core /usr/lib64/coqide-server/core/core.cmxs /usr/lib64/coqide-server/protocol /usr/lib64/coqide-server/protocol/protocol.cmxs /usr/lib64/stublibs /usr/lib64/stublibs/dllcoqperf_stubs.so /usr/lib64/stublibs/dllcoqrun_stubs.so /usr/share/licenses/coq /usr/share/licenses/coq/CREDITS /usr/share/licenses/coq/LICENSE /usr/share/man/man1/coq-tex.1.gz /usr/share/man/man1/coq_makefile.1.gz /usr/share/man/man1/coqc.1.gz /usr/share/man/man1/coqchk.1.gz /usr/share/man/man1/coqdep.1.gz /usr/share/man/man1/coqdoc.1.gz /usr/share/man/man1/coqnative.1.gz /usr/share/man/man1/coqtop.1.gz /usr/share/man/man1/coqwc.1.gz /usr/share/texmf /usr/share/texmf/tex /usr/share/texmf/tex/latex /usr/share/texmf/tex/latex/misc /usr/share/texmf/tex/latex/misc/coqdoc.sty
Generated by rpm2html 1.8.1
Fabrice Bellet, Sun Jan 12 01:37:12 2025