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

fourcolor and fourcolor-reals 1.4.0 #3206

Merged
merged 4 commits into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
opam-version: "2.0"
maintainer: "palmskog@gmail.com"

homepage: "https://github.com/coq-community/fourcolor"
dev-repo: "git+https://github.com/coq-community/fourcolor.git"
bug-reports: "https://github.com/coq-community/fourcolor/issues"
license: "CECILL-B"

synopsis: "Interface for real numbers used in the Four Color Theorem"
description: """
An axiomatization of the setoid of classical real numbers, along
with proofs of properties such as categoricity."""

build: [make "-C" "theories/reals" "-j%{jobs}%"]
install: [make "-C" "theories/reals" "install"]
depends: [
"coq" {(>= "8.16" & < "8.21~") | (= "dev")}
"coq-mathcomp-ssreflect" {(>= "2.0.0") & < "2.4~") | (= "dev")}
palmskog marked this conversation as resolved.
Show resolved Hide resolved
"coq-mathcomp-algebra"
]

tags: [
"category:Mathematics/Real Calculus and Topology"
"keyword:real numbers"
"logpath:fourcolor.reals"
"date: 2024-11-15"
]
conflicts: [
"coq-fourcolor" { != version }
]

authors: [
"Georges Gonthier"
]

url {
src: "https://github.com/coq-community/fourcolor/archive/refs/tags/v1.4.0.tar.gz"
checksum: "sha512=f957d3d3260b6f2960e59cabb64a1f5636370cee7fc8870911855e331a50e86e2f5ef526f1d27921a15ed4870521346415dd1c0542e8b61c403b9c465eb8cd9e"
}
43 changes: 43 additions & 0 deletions released/packages/coq-fourcolor/coq-fourcolor.1.4.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
opam-version: "2.0"
maintainer: "palmskog@gmail.com"

homepage: "https://github.com/coq-community/fourcolor"
dev-repo: "git+https://github.com/coq-community/fourcolor.git"
bug-reports: "https://github.com/coq-community/fourcolor/issues"
license: "CECILL-B"

synopsis: "Mechanization of the Four Color Theorem in Coq"
description: """
This library contains a formal proof of the Four Color Theorem in Coq,
along with the theories needed to support stating and then proving the Theorem.
This includes an axiomatization of the setoid of classical real numbers,
basic plane topology definitions, and a theory of combinatorial hypermaps."""

build: [make "-C" "theories/proof" "-j%{jobs}%"]
install: [make "-C" "theories/proof" "install"]
depends: [
"coq" {(>= "8.16" & < "8.21~") | (= "dev")}
"coq-mathcomp-ssreflect" {(>= "2.0.0") & < "2.4~") | (= "dev")}
palmskog marked this conversation as resolved.
Show resolved Hide resolved
"coq-mathcomp-algebra"
"coq-hierarchy-builder" {>= "1.5.0"}
"coq-fourcolor-reals" {= version}
]

tags: [
"category:Mathematics/Combinatorics and Graph Theory"
"keyword:Four color theorem"
"keyword:small scale reflection"
"keyword:Mathematical Components"
"logpath:fourcolor.proof"
]

"date: 2024-11-15"
palmskog marked this conversation as resolved.
Show resolved Hide resolved

authors: [
"Georges Gonthier"
]

url {
src: "https://github.com/coq-community/fourcolor/archive/refs/tags/v1.4.0.tar.gz"
checksum: "sha512=f957d3d3260b6f2960e59cabb64a1f5636370cee7fc8870911855e331a50e86e2f5ef526f1d27921a15ed4870521346415dd1c0542e8b61c403b9c465eb8cd9e"
}
Loading