Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

definitional inductives #2

Merged
merged 23 commits into from
Apr 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ env:
- PACKAGES=Tactics BUILD_COQIDE=yes BUILD_ALSO=TAGS
- PACKAGES=Folds
- PACKAGES=Induction
- PACKAGES=Inductives
- PACKAGES="Foundations Combinatorics Algebra NumberSystems" COQ_BRANCH=master

# The "docker run" command will pull if needed.
# Running this first gives two tries in case of network lossage.

before_script:
- timeout 5m docker pull palmskog/xenial-unimath || timeout 5m docker pull palmskog/xenial-unimath || timeout 5m docker pull palmskog/xenial-unimath

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ PACKAGES += Folds
PACKAGES += HomologicalAlgebra
PACKAGES += Paradoxes
PACKAGES += Induction
PACKAGES += Inductives
############################################
# other user options; see also build/Makefile-configuration-template
BUILD_COQ ?= yes
Expand Down
9 changes: 9 additions & 0 deletions UniMath/CONTENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,3 +431,12 @@ The packages and files are listed here in logical order: each file depends only
- [W/Uniqueness.v](Induction/W/Uniqueness.v)
- [M/Chains.v](Induction/M/Chains.v)
- [All.v](Induction/All.v)
## Package Inductives
- [functors.v](Inductives/functors.v)
- [auxiliary_lemmas.v](Inductives/auxiliary_lemmas.v)
- [containers.v](Inductives/containers.v)
- [algebras.v](Inductives/algebras.v)
- [M_from_nat.v](Inductives/M_from_nat.v)
- [addresses.v](Inductives/addresses.v)
- [W_from_M.v](Inductives/W_from_M.v)
- [All.v](Inductives/All.v)
7 changes: 7 additions & 0 deletions UniMath/Inductives/.package/files
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
functors.v
auxiliary_lemmas.v
containers.v
algebras.v
M_from_nat.v
addresses.v
W_from_M.v
Loading