├── .github └── workflows │ └── docker-action.yml ├── .gitignore ├── .travis.yml ├── AnIntroductionToSmallScaleReflectionInCoq ├── section3.v ├── section4.v ├── section5.v ├── section6.v └── section7.v ├── AnSsreflectTutorial └── tutorial_Gonthier_LeRoux.v ├── Makefile ├── README.md ├── Ssreflect15min └── quesako.v ├── SummerSchoolSophia ├── exercise1_solution.v ├── exercise1_todo.v ├── exercise2_solution.v ├── exercise2_todo.v ├── exercise3_solution.v ├── exercise3_todo.v ├── exercise4_solution.v ├── exercise4_todo.v ├── exercise5_solution.v ├── exercise5_todo.v ├── exercise6_solution.v ├── exercise6_todo.v ├── exercise7_solution.v ├── exercise7_todo.v ├── exercise8_solution.v ├── exercise8_todo.v ├── lesson1.v ├── lesson2.v ├── lesson3.v ├── lesson4.v ├── lesson5.v ├── lesson6.v ├── lesson7.v └── lesson8.v ├── _CoqProject ├── coq-tutorial_material.opam └── meta.yml /.github/workflows/docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/.github/workflows/docker-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/.travis.yml -------------------------------------------------------------------------------- /AnIntroductionToSmallScaleReflectionInCoq/section3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/AnIntroductionToSmallScaleReflectionInCoq/section3.v -------------------------------------------------------------------------------- /AnIntroductionToSmallScaleReflectionInCoq/section4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/AnIntroductionToSmallScaleReflectionInCoq/section4.v -------------------------------------------------------------------------------- /AnIntroductionToSmallScaleReflectionInCoq/section5.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/AnIntroductionToSmallScaleReflectionInCoq/section5.v -------------------------------------------------------------------------------- /AnIntroductionToSmallScaleReflectionInCoq/section6.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/AnIntroductionToSmallScaleReflectionInCoq/section6.v -------------------------------------------------------------------------------- /AnIntroductionToSmallScaleReflectionInCoq/section7.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/AnIntroductionToSmallScaleReflectionInCoq/section7.v -------------------------------------------------------------------------------- /AnSsreflectTutorial/tutorial_Gonthier_LeRoux.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/AnSsreflectTutorial/tutorial_Gonthier_LeRoux.v -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/README.md -------------------------------------------------------------------------------- /Ssreflect15min/quesako.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/Ssreflect15min/quesako.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise1_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise1_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise1_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise1_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise2_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise2_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise2_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise2_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise3_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise3_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise3_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise3_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise4_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise4_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise4_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise4_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise5_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise5_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise5_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise5_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise6_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise6_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise6_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise6_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise7_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise7_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise7_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise7_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise8_solution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise8_solution.v -------------------------------------------------------------------------------- /SummerSchoolSophia/exercise8_todo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/exercise8_todo.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson1.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson2.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson2.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson3.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson3.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson4.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson4.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson5.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson5.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson6.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson6.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson7.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson7.v -------------------------------------------------------------------------------- /SummerSchoolSophia/lesson8.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/SummerSchoolSophia/lesson8.v -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/_CoqProject -------------------------------------------------------------------------------- /coq-tutorial_material.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/coq-tutorial_material.opam -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/math-comp/tutorial_material/HEAD/meta.yml --------------------------------------------------------------------------------