├── Agatha.agda ├── Agatha2.agda ├── ArithmeticDefinability.agda ├── BaseLogic.agda ├── BaseN.agda ├── BoolNat.agda ├── BooleanAlgebra.agda ├── Category.agda ├── Category2.agda ├── Coinduction.agda ├── Computation.agda ├── Data ├── Bool.agda ├── Bool │ ├── Operations.agda │ ├── Proofs.agda │ └── Relations.agda ├── Disjunction.agda ├── EqChain.agda ├── False.agda ├── Fin.agda ├── Fin │ └── Operations.agda ├── Integer.agda ├── Irrelevance.agda ├── List.agda ├── List │ ├── Operations.agda │ ├── Proofs.agda │ └── Relations.agda ├── Maybe.agda ├── Maybe │ └── Operations.agda ├── NEVec.agda ├── Nat.agda ├── Nat │ ├── BinPreds.agda │ ├── Operations.agda │ ├── Operations │ │ └── Addition.agda │ ├── Proofs.agda │ ├── Properties.agda │ └── Relations.agda ├── NonZeroNat.agda ├── PositiveNat.agda ├── Prim │ └── Coinduction.agda ├── Product.agda ├── PropositionalEquality.agda ├── Rational.agda ├── Real.agda ├── Sets │ └── Relations.agda ├── Stream.agda ├── Stream │ └── Operations.agda ├── String.agda ├── True.agda ├── Vector.agda └── Vector │ ├── Operations.agda │ └── Relations.agda ├── Decidability.agda ├── FAlgebras.agda ├── FixedPoint.agda ├── FormalLanguage.agda ├── Functions.agda ├── Functor.agda ├── Guido.agda ├── GuidoLiterate.agda ├── InitialObject.agda ├── Inspection.agda ├── KleisliTutorial.agda ├── LICENSE ├── LambdaCalc_roughdraft.agda ├── Lang.agda ├── Level.agda ├── Linear.agda ├── ListVector.agda ├── LogicGates.agda ├── Morphisms.agda ├── NEVector.agda ├── NaturalTransformations.agda ├── OperationProperties.agda ├── PolynomialFunctor.agda ├── ProductCategory.agda ├── RDF.agda ├── RDF11MT.agda ├── README.md ├── Regex.agda ├── Relations.agda ├── SetCategory.agda ├── SetTheory.agda ├── Trees.agda └── TuringMachine.agda /Agatha.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Agatha.agda -------------------------------------------------------------------------------- /Agatha2.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Agatha2.agda -------------------------------------------------------------------------------- /ArithmeticDefinability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/ArithmeticDefinability.agda -------------------------------------------------------------------------------- /BaseLogic.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/BaseLogic.agda -------------------------------------------------------------------------------- /BaseN.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/BaseN.agda -------------------------------------------------------------------------------- /BoolNat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/BoolNat.agda -------------------------------------------------------------------------------- /BooleanAlgebra.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/BooleanAlgebra.agda -------------------------------------------------------------------------------- /Category.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Category.agda -------------------------------------------------------------------------------- /Category2.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Category2.agda -------------------------------------------------------------------------------- /Coinduction.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Coinduction.agda -------------------------------------------------------------------------------- /Computation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Computation.agda -------------------------------------------------------------------------------- /Data/Bool.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Bool.agda -------------------------------------------------------------------------------- /Data/Bool/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Bool/Operations.agda -------------------------------------------------------------------------------- /Data/Bool/Proofs.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Bool/Proofs.agda -------------------------------------------------------------------------------- /Data/Bool/Relations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Bool/Relations.agda -------------------------------------------------------------------------------- /Data/Disjunction.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Disjunction.agda -------------------------------------------------------------------------------- /Data/EqChain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/EqChain.agda -------------------------------------------------------------------------------- /Data/False.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/False.agda -------------------------------------------------------------------------------- /Data/Fin.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Fin.agda -------------------------------------------------------------------------------- /Data/Fin/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Fin/Operations.agda -------------------------------------------------------------------------------- /Data/Integer.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Integer.agda -------------------------------------------------------------------------------- /Data/Irrelevance.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Irrelevance.agda -------------------------------------------------------------------------------- /Data/List.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/List.agda -------------------------------------------------------------------------------- /Data/List/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/List/Operations.agda -------------------------------------------------------------------------------- /Data/List/Proofs.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/List/Proofs.agda -------------------------------------------------------------------------------- /Data/List/Relations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/List/Relations.agda -------------------------------------------------------------------------------- /Data/Maybe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Maybe.agda -------------------------------------------------------------------------------- /Data/Maybe/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Maybe/Operations.agda -------------------------------------------------------------------------------- /Data/NEVec.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/NEVec.agda -------------------------------------------------------------------------------- /Data/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat.agda -------------------------------------------------------------------------------- /Data/Nat/BinPreds.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat/BinPreds.agda -------------------------------------------------------------------------------- /Data/Nat/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat/Operations.agda -------------------------------------------------------------------------------- /Data/Nat/Operations/Addition.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat/Operations/Addition.agda -------------------------------------------------------------------------------- /Data/Nat/Proofs.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat/Proofs.agda -------------------------------------------------------------------------------- /Data/Nat/Properties.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat/Properties.agda -------------------------------------------------------------------------------- /Data/Nat/Relations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Nat/Relations.agda -------------------------------------------------------------------------------- /Data/NonZeroNat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/NonZeroNat.agda -------------------------------------------------------------------------------- /Data/PositiveNat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/PositiveNat.agda -------------------------------------------------------------------------------- /Data/Prim/Coinduction.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Prim/Coinduction.agda -------------------------------------------------------------------------------- /Data/Product.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Product.agda -------------------------------------------------------------------------------- /Data/PropositionalEquality.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/PropositionalEquality.agda -------------------------------------------------------------------------------- /Data/Rational.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Rational.agda -------------------------------------------------------------------------------- /Data/Real.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Real.agda -------------------------------------------------------------------------------- /Data/Sets/Relations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Sets/Relations.agda -------------------------------------------------------------------------------- /Data/Stream.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Stream.agda -------------------------------------------------------------------------------- /Data/Stream/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Stream/Operations.agda -------------------------------------------------------------------------------- /Data/String.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/String.agda -------------------------------------------------------------------------------- /Data/True.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/True.agda -------------------------------------------------------------------------------- /Data/Vector.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Vector.agda -------------------------------------------------------------------------------- /Data/Vector/Operations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Vector/Operations.agda -------------------------------------------------------------------------------- /Data/Vector/Relations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Data/Vector/Relations.agda -------------------------------------------------------------------------------- /Decidability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Decidability.agda -------------------------------------------------------------------------------- /FAlgebras.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/FAlgebras.agda -------------------------------------------------------------------------------- /FixedPoint.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/FixedPoint.agda -------------------------------------------------------------------------------- /FormalLanguage.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/FormalLanguage.agda -------------------------------------------------------------------------------- /Functions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Functions.agda -------------------------------------------------------------------------------- /Functor.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Functor.agda -------------------------------------------------------------------------------- /Guido.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Guido.agda -------------------------------------------------------------------------------- /GuidoLiterate.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/GuidoLiterate.agda -------------------------------------------------------------------------------- /InitialObject.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/InitialObject.agda -------------------------------------------------------------------------------- /Inspection.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Inspection.agda -------------------------------------------------------------------------------- /KleisliTutorial.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/KleisliTutorial.agda -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/LICENSE -------------------------------------------------------------------------------- /LambdaCalc_roughdraft.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/LambdaCalc_roughdraft.agda -------------------------------------------------------------------------------- /Lang.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Lang.agda -------------------------------------------------------------------------------- /Level.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Level.agda -------------------------------------------------------------------------------- /Linear.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Linear.agda -------------------------------------------------------------------------------- /ListVector.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/ListVector.agda -------------------------------------------------------------------------------- /LogicGates.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/LogicGates.agda -------------------------------------------------------------------------------- /Morphisms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Morphisms.agda -------------------------------------------------------------------------------- /NEVector.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/NEVector.agda -------------------------------------------------------------------------------- /NaturalTransformations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/NaturalTransformations.agda -------------------------------------------------------------------------------- /OperationProperties.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/OperationProperties.agda -------------------------------------------------------------------------------- /PolynomialFunctor.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/PolynomialFunctor.agda -------------------------------------------------------------------------------- /ProductCategory.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/ProductCategory.agda -------------------------------------------------------------------------------- /RDF.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/RDF.agda -------------------------------------------------------------------------------- /RDF11MT.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/RDF11MT.agda -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/README.md -------------------------------------------------------------------------------- /Regex.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Regex.agda -------------------------------------------------------------------------------- /Relations.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Relations.agda -------------------------------------------------------------------------------- /SetCategory.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/SetCategory.agda -------------------------------------------------------------------------------- /SetTheory.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/SetTheory.agda -------------------------------------------------------------------------------- /Trees.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/Trees.agda -------------------------------------------------------------------------------- /TuringMachine.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sto0pkid/CategoryTheory/HEAD/TuringMachine.agda --------------------------------------------------------------------------------