mirror of
https://github.com/Smaug123/agdaproofs
synced 2025-10-06 04:18:40 +00:00
Add Everything files in preparation for Travis build (#36)
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*.agdai
|
||||
.#*
|
||||
.pijul
|
37
Everything/Safe.agda
Normal file
37
Everything/Safe.agda
Normal file
@@ -0,0 +1,37 @@
|
||||
{-# OPTIONS --warning=error --safe --without-K #-}
|
||||
|
||||
-- This file contains everything that can be compiled in --safe mode.
|
||||
|
||||
open import Numbers.Naturals
|
||||
open import Numbers.BinaryNaturals.Definition
|
||||
|
||||
open import Lists.Lists
|
||||
|
||||
open import Groups.Groups
|
||||
open import Groups.FinitePermutations
|
||||
open import Groups.GroupsLemmas
|
||||
|
||||
open import Fields.Fields
|
||||
open import Fields.FieldOfFractions
|
||||
open import Fields.FieldOfFractionsOrder
|
||||
|
||||
open import Rings.Definition
|
||||
open import Rings.Lemmas
|
||||
open import Rings.IntegralDomains
|
||||
|
||||
open import Setoids.Setoids
|
||||
open import Setoids.Lists
|
||||
open import Setoids.Orders
|
||||
|
||||
open import Sets.Cardinality
|
||||
open import Sets.FinSet
|
||||
|
||||
open import DecidableSet
|
||||
|
||||
open import Maybe
|
||||
open import Orders
|
||||
open import WellFoundedInduction
|
||||
|
||||
open import ClassicalLogic.ClassicalFive
|
||||
|
||||
module Everything.Safe where
|
31
Everything/WithK.agda
Normal file
31
Everything/WithK.agda
Normal file
@@ -0,0 +1,31 @@
|
||||
{-# OPTIONS --warning=error --safe #-}
|
||||
|
||||
-- This file contains everything that is --safe, but uses K.
|
||||
|
||||
open import PrimeNumbers
|
||||
open import Numbers.Integers
|
||||
open import Numbers.Rationals
|
||||
open import Numbers.RationalsLemmas
|
||||
open import Numbers.BinaryNaturals.Multiplication -- TODO there's no reason for this to need K
|
||||
open import Numbers.BinaryNaturals.Order -- TODO likewise this
|
||||
|
||||
open import Logic.PropositionalLogic
|
||||
open import Logic.PropositionalLogicExamples
|
||||
open import Logic.PropositionalAxiomsTautology
|
||||
|
||||
open import IntegersModN
|
||||
|
||||
open import Sets.FinSetWithK
|
||||
|
||||
open import Vectors
|
||||
|
||||
open import KeyValue
|
||||
open import KeyValueWithDomain
|
||||
|
||||
open import Rings.Examples.Examples
|
||||
open import Rings.Examples.Proofs
|
||||
|
||||
open import Groups.FreeGroups
|
||||
open import Groups.Groups2
|
||||
|
||||
module Everything.WithK where
|
Reference in New Issue
Block a user