├── .dir-locals.el ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── _CoqProject ├── etc └── ci │ ├── keep_alive.sh │ └── travis_keep_alive.sh └── src ├── Algebra ├── Category.v ├── Category │ ├── Cartesian.v │ ├── Functor.v │ ├── Monad.v │ ├── Setoid.v │ └── Type.v ├── FrameC.v ├── FreeLattice.v ├── OrderC.v ├── PreOrder.v ├── SetsC.v └── Sublocale.v ├── FormTopC ├── Approx.v ├── Cantor.v ├── Compact.v ├── Concrete.v ├── Cont.v ├── Discrete.v ├── FormTop.v ├── FormalSpace.v ├── IGSubspace.v ├── InfoBase.v ├── Join.v ├── Lift.v ├── Locale.v ├── MReal.v ├── Metric.v ├── NatInfty.v ├── Pattern.v ├── Product.v ├── Scott.v ├── Spaces │ ├── One.v │ └── PosUR.v ├── Subspace.v ├── Sum.v └── Truncate.v ├── Haskell ├── Shim.hs └── test.hs ├── Language ├── ContPL.v └── ContPLProps.v ├── Numbers ├── QFacts.v └── QPosFacts.v ├── StdLib.v ├── Types ├── Equiv.v ├── Finite.v ├── Iso.v ├── List.v ├── Setoid.v └── UIP.v └── clement └── SmallPowers.v /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/_CoqProject -------------------------------------------------------------------------------- /etc/ci/keep_alive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/etc/ci/keep_alive.sh -------------------------------------------------------------------------------- /etc/ci/travis_keep_alive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/etc/ci/travis_keep_alive.sh -------------------------------------------------------------------------------- /src/Algebra/Category.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Category.v -------------------------------------------------------------------------------- /src/Algebra/Category/Cartesian.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Category/Cartesian.v -------------------------------------------------------------------------------- /src/Algebra/Category/Functor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Category/Functor.v -------------------------------------------------------------------------------- /src/Algebra/Category/Monad.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Category/Monad.v -------------------------------------------------------------------------------- /src/Algebra/Category/Setoid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Category/Setoid.v -------------------------------------------------------------------------------- /src/Algebra/Category/Type.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Category/Type.v -------------------------------------------------------------------------------- /src/Algebra/FrameC.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/FrameC.v -------------------------------------------------------------------------------- /src/Algebra/FreeLattice.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/FreeLattice.v -------------------------------------------------------------------------------- /src/Algebra/OrderC.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/OrderC.v -------------------------------------------------------------------------------- /src/Algebra/PreOrder.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/PreOrder.v -------------------------------------------------------------------------------- /src/Algebra/SetsC.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/SetsC.v -------------------------------------------------------------------------------- /src/Algebra/Sublocale.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Algebra/Sublocale.v -------------------------------------------------------------------------------- /src/FormTopC/Approx.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Approx.v -------------------------------------------------------------------------------- /src/FormTopC/Cantor.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Cantor.v -------------------------------------------------------------------------------- /src/FormTopC/Compact.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Compact.v -------------------------------------------------------------------------------- /src/FormTopC/Concrete.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Concrete.v -------------------------------------------------------------------------------- /src/FormTopC/Cont.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Cont.v -------------------------------------------------------------------------------- /src/FormTopC/Discrete.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Discrete.v -------------------------------------------------------------------------------- /src/FormTopC/FormTop.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/FormTop.v -------------------------------------------------------------------------------- /src/FormTopC/FormalSpace.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/FormalSpace.v -------------------------------------------------------------------------------- /src/FormTopC/IGSubspace.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/IGSubspace.v -------------------------------------------------------------------------------- /src/FormTopC/InfoBase.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/InfoBase.v -------------------------------------------------------------------------------- /src/FormTopC/Join.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Join.v -------------------------------------------------------------------------------- /src/FormTopC/Lift.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Lift.v -------------------------------------------------------------------------------- /src/FormTopC/Locale.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Locale.v -------------------------------------------------------------------------------- /src/FormTopC/MReal.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/MReal.v -------------------------------------------------------------------------------- /src/FormTopC/Metric.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Metric.v -------------------------------------------------------------------------------- /src/FormTopC/NatInfty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/NatInfty.v -------------------------------------------------------------------------------- /src/FormTopC/Pattern.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Pattern.v -------------------------------------------------------------------------------- /src/FormTopC/Product.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Product.v -------------------------------------------------------------------------------- /src/FormTopC/Scott.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Scott.v -------------------------------------------------------------------------------- /src/FormTopC/Spaces/One.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Spaces/One.v -------------------------------------------------------------------------------- /src/FormTopC/Spaces/PosUR.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Spaces/PosUR.v -------------------------------------------------------------------------------- /src/FormTopC/Subspace.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Subspace.v -------------------------------------------------------------------------------- /src/FormTopC/Sum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Sum.v -------------------------------------------------------------------------------- /src/FormTopC/Truncate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/FormTopC/Truncate.v -------------------------------------------------------------------------------- /src/Haskell/Shim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Haskell/Shim.hs -------------------------------------------------------------------------------- /src/Haskell/test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Haskell/test.hs -------------------------------------------------------------------------------- /src/Language/ContPL.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Language/ContPL.v -------------------------------------------------------------------------------- /src/Language/ContPLProps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Language/ContPLProps.v -------------------------------------------------------------------------------- /src/Numbers/QFacts.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Numbers/QFacts.v -------------------------------------------------------------------------------- /src/Numbers/QPosFacts.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Numbers/QPosFacts.v -------------------------------------------------------------------------------- /src/StdLib.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/StdLib.v -------------------------------------------------------------------------------- /src/Types/Equiv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Types/Equiv.v -------------------------------------------------------------------------------- /src/Types/Finite.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Types/Finite.v -------------------------------------------------------------------------------- /src/Types/Iso.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Types/Iso.v -------------------------------------------------------------------------------- /src/Types/List.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Types/List.v -------------------------------------------------------------------------------- /src/Types/Setoid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Types/Setoid.v -------------------------------------------------------------------------------- /src/Types/UIP.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/Types/UIP.v -------------------------------------------------------------------------------- /src/clement/SmallPowers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmsherman/topology/HEAD/src/clement/SmallPowers.v --------------------------------------------------------------------------------