├── .github └── workflows │ └── docker-action.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _CoqProject ├── coq-mathcomp-apery.opam ├── include ├── ann_b.v ├── ann_c.v ├── ann_d.v ├── ann_s.v ├── ann_v.v ├── ann_z.v └── ops_header.v ├── meta.yml └── theories ├── a_props.v ├── algo_closures.v ├── annotated_recs_a.v ├── annotated_recs_b.v ├── annotated_recs_c.v ├── annotated_recs_d.v ├── annotated_recs_s.v ├── annotated_recs_v.v ├── annotated_recs_z.v ├── arithmetics.v ├── b_over_a_props.v ├── b_props.v ├── bigopz.v ├── binomialz.v ├── c_props.v ├── extra_cauchyreals.v ├── extra_mathcomp.v ├── hanson.v ├── hanson_elem_analysis.v ├── hanson_elem_arith.v ├── harmonic_numbers.v ├── initial_conds.v ├── multinomial.v ├── ops_for_a.v ├── ops_for_b.v ├── ops_for_nm_u.v ├── ops_for_s.v ├── ops_for_u.v ├── ops_for_v.v ├── posnum.v ├── punk.v ├── rat_of_Z.v ├── rat_pos.v ├── reduce_order.v ├── rho_computations.v ├── s_props.v ├── seq_defs.v ├── shift.v ├── tactics.v ├── z3irrational.v └── z3seq_props.v /.github/workflows/docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/.github/workflows/docker-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/_CoqProject -------------------------------------------------------------------------------- /coq-mathcomp-apery.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/coq-mathcomp-apery.opam -------------------------------------------------------------------------------- /include/ann_b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ann_b.v -------------------------------------------------------------------------------- /include/ann_c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ann_c.v -------------------------------------------------------------------------------- /include/ann_d.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ann_d.v -------------------------------------------------------------------------------- /include/ann_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ann_s.v -------------------------------------------------------------------------------- /include/ann_v.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ann_v.v -------------------------------------------------------------------------------- /include/ann_z.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ann_z.v -------------------------------------------------------------------------------- /include/ops_header.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/include/ops_header.v -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/meta.yml -------------------------------------------------------------------------------- /theories/a_props.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/a_props.v -------------------------------------------------------------------------------- /theories/algo_closures.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/algo_closures.v -------------------------------------------------------------------------------- /theories/annotated_recs_a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_a.v -------------------------------------------------------------------------------- /theories/annotated_recs_b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_b.v -------------------------------------------------------------------------------- /theories/annotated_recs_c.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_c.v -------------------------------------------------------------------------------- /theories/annotated_recs_d.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_d.v -------------------------------------------------------------------------------- /theories/annotated_recs_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_s.v -------------------------------------------------------------------------------- /theories/annotated_recs_v.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_v.v -------------------------------------------------------------------------------- /theories/annotated_recs_z.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/annotated_recs_z.v -------------------------------------------------------------------------------- /theories/arithmetics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/arithmetics.v -------------------------------------------------------------------------------- /theories/b_over_a_props.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/b_over_a_props.v -------------------------------------------------------------------------------- /theories/b_props.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/b_props.v -------------------------------------------------------------------------------- /theories/bigopz.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/bigopz.v -------------------------------------------------------------------------------- /theories/binomialz.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/binomialz.v -------------------------------------------------------------------------------- /theories/c_props.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/c_props.v -------------------------------------------------------------------------------- /theories/extra_cauchyreals.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/extra_cauchyreals.v -------------------------------------------------------------------------------- /theories/extra_mathcomp.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/extra_mathcomp.v -------------------------------------------------------------------------------- /theories/hanson.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/hanson.v -------------------------------------------------------------------------------- /theories/hanson_elem_analysis.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/hanson_elem_analysis.v -------------------------------------------------------------------------------- /theories/hanson_elem_arith.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/hanson_elem_arith.v -------------------------------------------------------------------------------- /theories/harmonic_numbers.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/harmonic_numbers.v -------------------------------------------------------------------------------- /theories/initial_conds.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/initial_conds.v -------------------------------------------------------------------------------- /theories/multinomial.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/multinomial.v -------------------------------------------------------------------------------- /theories/ops_for_a.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/ops_for_a.v -------------------------------------------------------------------------------- /theories/ops_for_b.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/ops_for_b.v -------------------------------------------------------------------------------- /theories/ops_for_nm_u.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/ops_for_nm_u.v -------------------------------------------------------------------------------- /theories/ops_for_s.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/ops_for_s.v -------------------------------------------------------------------------------- /theories/ops_for_u.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/ops_for_u.v -------------------------------------------------------------------------------- /theories/ops_for_v.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/ops_for_v.v -------------------------------------------------------------------------------- /theories/posnum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/posnum.v -------------------------------------------------------------------------------- /theories/punk.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/punk.v -------------------------------------------------------------------------------- /theories/rat_of_Z.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/rat_of_Z.v -------------------------------------------------------------------------------- /theories/rat_pos.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/rat_pos.v -------------------------------------------------------------------------------- /theories/reduce_order.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/reduce_order.v -------------------------------------------------------------------------------- /theories/rho_computations.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/rho_computations.v -------------------------------------------------------------------------------- /theories/s_props.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/s_props.v -------------------------------------------------------------------------------- /theories/seq_defs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/seq_defs.v -------------------------------------------------------------------------------- /theories/shift.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/shift.v -------------------------------------------------------------------------------- /theories/tactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/tactics.v -------------------------------------------------------------------------------- /theories/z3irrational.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/z3irrational.v -------------------------------------------------------------------------------- /theories/z3seq_props.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/apery/HEAD/theories/z3seq_props.v --------------------------------------------------------------------------------