├── .github └── workflows │ ├── docker-action.yml │ ├── nix-action-coq-9.0.yml │ ├── nix-action-coq-master.yml │ ├── nix-action-coq8.18+mcmathcomp-2.1.0.yml │ ├── nix-action-coq8.19+mcmathcomp-2.2.0.yml │ ├── nix-action-coq8.20+mcmathcomp-2.3.0.yml │ └── nix-action-coqmaster+mcmaster.yml ├── .gitignore ├── .nix ├── config.nix └── coq-nix-toolbox.nix ├── CeCILL-B ├── Makefile ├── Makefile.coq.local ├── NIX.md ├── README.md ├── _CoqProject ├── coq-mathcomp-abel.opam ├── default.nix ├── meta.yml └── theories ├── abel.v └── xmathcomp ├── algR.v ├── char0.v ├── classic_ext.v ├── cyclotomic_ext.v ├── map_gal.v ├── mxextra.v ├── real_closed_ext.v └── various.v /.github/workflows/docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/docker-action.yml -------------------------------------------------------------------------------- /.github/workflows/nix-action-coq-9.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/nix-action-coq-9.0.yml -------------------------------------------------------------------------------- /.github/workflows/nix-action-coq-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/nix-action-coq-master.yml -------------------------------------------------------------------------------- /.github/workflows/nix-action-coq8.18+mcmathcomp-2.1.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/nix-action-coq8.18+mcmathcomp-2.1.0.yml -------------------------------------------------------------------------------- /.github/workflows/nix-action-coq8.19+mcmathcomp-2.2.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/nix-action-coq8.19+mcmathcomp-2.2.0.yml -------------------------------------------------------------------------------- /.github/workflows/nix-action-coq8.20+mcmathcomp-2.3.0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/nix-action-coq8.20+mcmathcomp-2.3.0.yml -------------------------------------------------------------------------------- /.github/workflows/nix-action-coqmaster+mcmaster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.github/workflows/nix-action-coqmaster+mcmaster.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.gitignore -------------------------------------------------------------------------------- /.nix/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/.nix/config.nix -------------------------------------------------------------------------------- /.nix/coq-nix-toolbox.nix: -------------------------------------------------------------------------------- 1 | "23abc2d7903983f4fd414288677d6b421d412cd6" 2 | -------------------------------------------------------------------------------- /CeCILL-B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/CeCILL-B -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.coq.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/Makefile.coq.local -------------------------------------------------------------------------------- /NIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/NIX.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/_CoqProject -------------------------------------------------------------------------------- /coq-mathcomp-abel.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/coq-mathcomp-abel.opam -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/default.nix -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/meta.yml -------------------------------------------------------------------------------- /theories/abel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/abel.v -------------------------------------------------------------------------------- /theories/xmathcomp/algR.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/algR.v -------------------------------------------------------------------------------- /theories/xmathcomp/char0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/char0.v -------------------------------------------------------------------------------- /theories/xmathcomp/classic_ext.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/classic_ext.v -------------------------------------------------------------------------------- /theories/xmathcomp/cyclotomic_ext.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/cyclotomic_ext.v -------------------------------------------------------------------------------- /theories/xmathcomp/map_gal.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/map_gal.v -------------------------------------------------------------------------------- /theories/xmathcomp/mxextra.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/mxextra.v -------------------------------------------------------------------------------- /theories/xmathcomp/real_closed_ext.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/real_closed_ext.v -------------------------------------------------------------------------------- /theories/xmathcomp/various.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/Abel/HEAD/theories/xmathcomp/various.v --------------------------------------------------------------------------------