├── README.md ├── coq ├── LICENSE ├── README.md ├── divsteps │ ├── Makefile │ ├── Makefile.conf │ ├── _CoqProject │ ├── divsteps724.v │ ├── divsteps724_proof.v │ ├── divsteps_base.v │ ├── divsteps_convexhull.v │ ├── divsteps_def.v │ ├── divsteps_examples.v │ └── divsteps_theory.v └── hddivsteps │ ├── Makefile │ ├── Makefile.conf │ ├── _CoqProject │ ├── hddivsteps590.v │ ├── hddivsteps590_proof.v │ ├── hddivsteps_base.v │ ├── hddivsteps_convexhull.v │ ├── hddivsteps_def.v │ ├── hddivsteps_examples.v │ └── hddivsteps_theory.v ├── derive_formula.py ├── divsteps_iters.py ├── genproofhd.md ├── half_delta_derive_formula.py ├── half_delta_output.txt ├── hull_analyze_tris.py ├── hull_bound.cpp ├── hull_bound.py ├── img ├── divsteps-decompose.png ├── hddivsteps-decompose.png ├── hulls0.png ├── hulls1.png ├── hulls10.png ├── hulls2.png ├── hulls5.png ├── hulls7.png ├── hulls_14divsteps.png └── hulls_2divsteps.png └── output.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/README.md -------------------------------------------------------------------------------- /coq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/LICENSE -------------------------------------------------------------------------------- /coq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/README.md -------------------------------------------------------------------------------- /coq/divsteps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/Makefile -------------------------------------------------------------------------------- /coq/divsteps/Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/Makefile.conf -------------------------------------------------------------------------------- /coq/divsteps/_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/_CoqProject -------------------------------------------------------------------------------- /coq/divsteps/divsteps724.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps724.v -------------------------------------------------------------------------------- /coq/divsteps/divsteps724_proof.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps724_proof.v -------------------------------------------------------------------------------- /coq/divsteps/divsteps_base.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps_base.v -------------------------------------------------------------------------------- /coq/divsteps/divsteps_convexhull.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps_convexhull.v -------------------------------------------------------------------------------- /coq/divsteps/divsteps_def.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps_def.v -------------------------------------------------------------------------------- /coq/divsteps/divsteps_examples.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps_examples.v -------------------------------------------------------------------------------- /coq/divsteps/divsteps_theory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/divsteps/divsteps_theory.v -------------------------------------------------------------------------------- /coq/hddivsteps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/Makefile -------------------------------------------------------------------------------- /coq/hddivsteps/Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/Makefile.conf -------------------------------------------------------------------------------- /coq/hddivsteps/_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/_CoqProject -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps590.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps590.v -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps590_proof.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps590_proof.v -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps_base.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps_base.v -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps_convexhull.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps_convexhull.v -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps_def.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps_def.v -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps_examples.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps_examples.v -------------------------------------------------------------------------------- /coq/hddivsteps/hddivsteps_theory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/coq/hddivsteps/hddivsteps_theory.v -------------------------------------------------------------------------------- /derive_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/derive_formula.py -------------------------------------------------------------------------------- /divsteps_iters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/divsteps_iters.py -------------------------------------------------------------------------------- /genproofhd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/genproofhd.md -------------------------------------------------------------------------------- /half_delta_derive_formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/half_delta_derive_formula.py -------------------------------------------------------------------------------- /half_delta_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/half_delta_output.txt -------------------------------------------------------------------------------- /hull_analyze_tris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/hull_analyze_tris.py -------------------------------------------------------------------------------- /hull_bound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/hull_bound.cpp -------------------------------------------------------------------------------- /hull_bound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/hull_bound.py -------------------------------------------------------------------------------- /img/divsteps-decompose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/divsteps-decompose.png -------------------------------------------------------------------------------- /img/hddivsteps-decompose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hddivsteps-decompose.png -------------------------------------------------------------------------------- /img/hulls0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls0.png -------------------------------------------------------------------------------- /img/hulls1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls1.png -------------------------------------------------------------------------------- /img/hulls10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls10.png -------------------------------------------------------------------------------- /img/hulls2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls2.png -------------------------------------------------------------------------------- /img/hulls5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls5.png -------------------------------------------------------------------------------- /img/hulls7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls7.png -------------------------------------------------------------------------------- /img/hulls_14divsteps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls_14divsteps.png -------------------------------------------------------------------------------- /img/hulls_2divsteps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/img/hulls_2divsteps.png -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipa/safegcd-bounds/HEAD/output.txt --------------------------------------------------------------------------------