├── README.md ├── chapter-12 └── fibonacci_squared.mlw ├── chapter-13 ├── .gitignore ├── canyon_search.mlw └── slope_search.mlw ├── chapter-15 ├── dutch_national_flag.mlw ├── quicksort.mlw └── selection_sort.mlw ├── chapter-5 ├── abstract_syntax_trees.mlw ├── mirroring_a_tree.mlw └── mult_commutative.mlw └── chapter-7 └── unary_numbers.mlw /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/README.md -------------------------------------------------------------------------------- /chapter-12/fibonacci_squared.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-12/fibonacci_squared.mlw -------------------------------------------------------------------------------- /chapter-13/.gitignore: -------------------------------------------------------------------------------- 1 | slope_search/ 2 | -------------------------------------------------------------------------------- /chapter-13/canyon_search.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-13/canyon_search.mlw -------------------------------------------------------------------------------- /chapter-13/slope_search.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-13/slope_search.mlw -------------------------------------------------------------------------------- /chapter-15/dutch_national_flag.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-15/dutch_national_flag.mlw -------------------------------------------------------------------------------- /chapter-15/quicksort.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-15/quicksort.mlw -------------------------------------------------------------------------------- /chapter-15/selection_sort.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-15/selection_sort.mlw -------------------------------------------------------------------------------- /chapter-5/abstract_syntax_trees.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-5/abstract_syntax_trees.mlw -------------------------------------------------------------------------------- /chapter-5/mirroring_a_tree.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-5/mirroring_a_tree.mlw -------------------------------------------------------------------------------- /chapter-5/mult_commutative.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-5/mult_commutative.mlw -------------------------------------------------------------------------------- /chapter-7/unary_numbers.mlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backtracking/program-proofs-with-why3/HEAD/chapter-7/unary_numbers.mlw --------------------------------------------------------------------------------