├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── benchmarks ├── cclemma │ ├── clam │ │ └── clam.ceg │ ├── isaplanner │ │ └── isaplanner.ceg │ └── optimization │ │ ├── autolifter-single-pass-0after1.ceg │ │ ├── autolifter-single-pass-0s1s.ceg │ │ ├── autolifter-single-pass-atoi.ceg │ │ ├── autolifter-single-pass-cnt1s.ceg │ │ ├── autolifter-single-pass-count10p.ceg │ │ ├── autolifter-single-pass-dropwhile.ceg │ │ ├── autolifter-single-pass-length.ceg │ │ ├── autolifter-single-pass-longest1s.ceg │ │ ├── autolifter-single-pass-max_dist_between_zeros.ceg │ │ ├── autolifter-single-pass-max_len_1s.ceg │ │ ├── autolifter-single-pass-mis.ceg │ │ ├── autolifter-single-pass-mps.ceg │ │ ├── autolifter-single-pass-mts.ceg │ │ ├── autolifter-single-pass-sum.ceg │ │ ├── fusion-algprog-ex3.13.ceg │ │ ├── fusion-algprog-ex3.14.ceg │ │ ├── fusion-algprog-page60.ceg │ │ ├── fusion-deforestation-page7-2.ceg │ │ ├── fusion-identities-page5.ceg │ │ ├── fusion-shortcut-page1.ceg │ │ ├── fusion-tupling-page1.ceg │ │ ├── fusion-tupling-page8.ceg │ │ ├── mtp-base.ceg │ │ ├── synduce-combine-mss_with_sum.ceg │ │ ├── synduce-combine-mts.ceg │ │ ├── synduce-constraints-all_positive-list_mps.ceg │ │ ├── synduce-constraints-all_positive-sndmax.ceg │ │ ├── synduce-constraints-all_positive-sndmin.ceg │ │ ├── synduce-constraints-balanced_tree-height.ceg │ │ ├── synduce-constraints-balanced_tree-height_v2.ceg │ │ ├── synduce-constraints-balanced_tree-node_count.ceg │ │ ├── synduce-constraints-bst-from_list_max.ceg │ │ ├── synduce-constraints-bst-minimax_separate.ceg │ │ ├── synduce-constraints-bst-minimax_sim.ceg │ │ ├── synduce-constraints-empty_right_subtree-sum.ceg │ │ ├── synduce-constraints-ensures-mps_no_ensures.ceg │ │ ├── synduce-constraints-ensures-mts_no_ensures.ceg │ │ ├── synduce-constraints-memo-constant.ceg │ │ ├── synduce-constraints-memo-count_lt.ceg │ │ ├── synduce-constraints-memo-mts_memo_sum.ceg │ │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos.ceg │ │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos_v2.ceg │ │ ├── synduce-constraints-memo-tree_size.ceg │ │ ├── synduce-constraints-sortedlist-failing_slspplus.ceg │ │ ├── synduce-constraints-sortedlist-max.ceg │ │ ├── synduce-constraints-sortedlist-min.ceg │ │ ├── synduce-constraints-sortedlist-nestedl_pyramid.ceg │ │ ├── synduce-constraints-sortedlist-parallel_max.ceg │ │ ├── synduce-constraints-sortedlist-parallel_max2.ceg │ │ ├── synduce-constraints-sortedlist-parallel_min.ceg │ │ ├── synduce-constraints-sortedlist-slsp.ceg │ │ ├── synduce-constraints-sortedlist-sndmax_empty_base_case.ceg │ │ ├── synduce-constraints-sortedlist-sndmind.ceg │ │ ├── synduce-constraints-unimodal_lists-max_in_um_pos.ceg │ │ ├── synduce-constraints-unimodal_lists-max_logn.ceg │ │ ├── synduce-constraints-unimodal_lists-max_logn_v2.ceg │ │ ├── synduce-indexed_list-position_polynomial.ceg │ │ ├── synduce-indexed_list-sum_elts_lt_pos.ceg │ │ ├── synduce-list-issorted.ceg │ │ ├── synduce-list-last.ceg │ │ ├── synduce-list-lenhom.ceg │ │ ├── synduce-list-line_of_sight.ceg │ │ ├── synduce-list-maxcount.ceg │ │ ├── synduce-list-maxhom.ceg │ │ ├── synduce-list-mincount.ceg │ │ ├── synduce-list-minhom.ceg │ │ ├── synduce-list-mpshom.ceg │ │ ├── synduce-list-mts_and_mps_hom.ceg │ │ ├── synduce-list-mtshom.ceg │ │ ├── synduce-list-prodhom.ceg │ │ ├── synduce-list-slsp.ceg │ │ ├── synduce-list-sumhom.ceg │ │ ├── synduce-list-zero_after_one.ceg │ │ ├── synduce-list-zeros_ones.ceg │ │ ├── synduce-list_to_tree-mls.ceg │ │ ├── synduce-misc-composed_unkwns.ceg │ │ ├── synduce-misc-simple_nnf.ceg │ │ ├── synduce-misc-unknowns_are_ids.ceg │ │ ├── synduce-nested_list-pyramid_intervals.ceg │ │ ├── synduce-tailopt-mps.ceg │ │ ├── synduce-tailopt-sum.ceg │ │ ├── synduce-terms-height.ceg │ │ ├── synduce-tree-maxPathWeight.ceg │ │ ├── synduce-tree-maxtree.ceg │ │ ├── synduce-tree-maxtree2.ceg │ │ ├── synduce-tree-min.ceg │ │ ├── synduce-tree-minmax.ceg │ │ ├── synduce-tree-sorted.ceg │ │ ├── synduce-tree-sumtree.ceg │ │ ├── synduce-treepaths-height.ceg │ │ ├── synduce-treepaths-maxPathWeight.ceg │ │ ├── synduce-treepaths-maxPathWeight2.ceg │ │ ├── synduce-treepaths-sum.ceg │ │ ├── synduce-unimodal_lists-sum.ceg │ │ ├── synduce-zipper-list_sum.ceg │ │ └── synduce-zipper-list_sum_basic.ceg ├── cvc4 │ ├── clam │ │ ├── goal1.smt2 │ │ ├── goal10.smt2 │ │ ├── goal11.smt2 │ │ ├── goal12.smt2 │ │ ├── goal13.smt2 │ │ ├── goal14.smt2 │ │ ├── goal15.smt2 │ │ ├── goal16.smt2 │ │ ├── goal17.smt2 │ │ ├── goal18.smt2 │ │ ├── goal19.smt2 │ │ ├── goal2.smt2 │ │ ├── goal20.smt2 │ │ ├── goal21.smt2 │ │ ├── goal22.smt2 │ │ ├── goal23.smt2 │ │ ├── goal24.smt2 │ │ ├── goal25.smt2 │ │ ├── goal26.smt2 │ │ ├── goal27.smt2 │ │ ├── goal28.smt2 │ │ ├── goal29.smt2 │ │ ├── goal3.smt2 │ │ ├── goal30.smt2 │ │ ├── goal31.smt2 │ │ ├── goal32.smt2 │ │ ├── goal33.smt2 │ │ ├── goal34.smt2 │ │ ├── goal35.smt2 │ │ ├── goal36.smt2 │ │ ├── goal37.smt2 │ │ ├── goal38.smt2 │ │ ├── goal39.smt2 │ │ ├── goal4.smt2 │ │ ├── goal40.smt2 │ │ ├── goal41.smt2 │ │ ├── goal42.smt2 │ │ ├── goal43.smt2 │ │ ├── goal44.smt2 │ │ ├── goal45.smt2 │ │ ├── goal46.smt2 │ │ ├── goal47.smt2 │ │ ├── goal48.smt2 │ │ ├── goal49.smt2 │ │ ├── goal5.smt2 │ │ ├── goal50.smt2 │ │ ├── goal51.smt2 │ │ ├── goal52.smt2 │ │ ├── goal53.smt2 │ │ ├── goal54.smt2 │ │ ├── goal55.smt2 │ │ ├── goal56.smt2 │ │ ├── goal57.smt2 │ │ ├── goal58.smt2 │ │ ├── goal59.smt2 │ │ ├── goal6.smt2 │ │ ├── goal60.smt2 │ │ ├── goal61.smt2 │ │ ├── goal62.smt2 │ │ ├── goal63.smt2 │ │ ├── goal64.smt2 │ │ ├── goal65.smt2 │ │ ├── goal66.smt2 │ │ ├── goal67.smt2 │ │ ├── goal68.smt2 │ │ ├── goal69.smt2 │ │ ├── goal7.smt2 │ │ ├── goal70.smt2 │ │ ├── goal71.smt2 │ │ ├── goal72.smt2 │ │ ├── goal73.smt2 │ │ ├── goal74.smt2 │ │ ├── goal75.smt2 │ │ ├── goal76.smt2 │ │ ├── goal77.smt2 │ │ ├── goal78.smt2 │ │ ├── goal79.smt2 │ │ ├── goal8.smt2 │ │ ├── goal80.smt2 │ │ ├── goal81.smt2 │ │ ├── goal82.smt2 │ │ ├── goal83.smt2 │ │ ├── goal84.smt2 │ │ ├── goal85.smt2 │ │ ├── goal86.smt2 │ │ └── goal9.smt2 │ ├── isaplanner │ │ ├── goal1.smt2 │ │ ├── goal10.smt2 │ │ ├── goal11.smt2 │ │ ├── goal12.smt2 │ │ ├── goal13.smt2 │ │ ├── goal14.smt2 │ │ ├── goal15.smt2 │ │ ├── goal16.smt2 │ │ ├── goal17.smt2 │ │ ├── goal18.smt2 │ │ ├── goal19.smt2 │ │ ├── goal2.smt2 │ │ ├── goal20.smt2 │ │ ├── goal21.smt2 │ │ ├── goal22.smt2 │ │ ├── goal23.smt2 │ │ ├── goal24.smt2 │ │ ├── goal25.smt2 │ │ ├── goal26.smt2 │ │ ├── goal27.smt2 │ │ ├── goal28.smt2 │ │ ├── goal29.smt2 │ │ ├── goal3.smt2 │ │ ├── goal30.smt2 │ │ ├── goal31.smt2 │ │ ├── goal32.smt2 │ │ ├── goal33.smt2 │ │ ├── goal34.smt2 │ │ ├── goal35.smt2 │ │ ├── goal36.smt2 │ │ ├── goal37.smt2 │ │ ├── goal38.smt2 │ │ ├── goal39.smt2 │ │ ├── goal4.smt2 │ │ ├── goal40.smt2 │ │ ├── goal41.smt2 │ │ ├── goal42.smt2 │ │ ├── goal43.smt2 │ │ ├── goal44.smt2 │ │ ├── goal45.smt2 │ │ ├── goal46.smt2 │ │ ├── goal47.smt2 │ │ ├── goal48.smt2 │ │ ├── goal49.smt2 │ │ ├── goal5.smt2 │ │ ├── goal50.smt2 │ │ ├── goal51.smt2 │ │ ├── goal52.smt2 │ │ ├── goal53.smt2 │ │ ├── goal54.smt2 │ │ ├── goal55.smt2 │ │ ├── goal56.smt2 │ │ ├── goal57.smt2 │ │ ├── goal58.smt2 │ │ ├── goal59.smt2 │ │ ├── goal6.smt2 │ │ ├── goal60.smt2 │ │ ├── goal61.smt2 │ │ ├── goal62.smt2 │ │ ├── goal63.smt2 │ │ ├── goal64.smt2 │ │ ├── goal65.smt2 │ │ ├── goal66.smt2 │ │ ├── goal67.smt2 │ │ ├── goal68.smt2 │ │ ├── goal69.smt2 │ │ ├── goal7.smt2 │ │ ├── goal70.smt2 │ │ ├── goal71.smt2 │ │ ├── goal72.smt2 │ │ ├── goal73.smt2 │ │ ├── goal74.smt2 │ │ ├── goal75.smt2 │ │ ├── goal76.smt2 │ │ ├── goal77.smt2 │ │ ├── goal78.smt2 │ │ ├── goal79.smt2 │ │ ├── goal8.smt2 │ │ ├── goal80.smt2 │ │ ├── goal81.smt2 │ │ ├── goal82.smt2 │ │ ├── goal83.smt2 │ │ ├── goal84.smt2 │ │ ├── goal85.smt2 │ │ ├── goal86.smt2 │ │ ├── goal87.smt2 │ │ └── goal9.smt2 │ └── optimization │ │ ├── autolifter-single-pass-0after1.smt2 │ │ ├── autolifter-single-pass-0s1s.smt2 │ │ ├── autolifter-single-pass-atoi.smt2 │ │ ├── autolifter-single-pass-cnt1s.smt2 │ │ ├── autolifter-single-pass-count10p.smt2 │ │ ├── autolifter-single-pass-dropwhile.smt2 │ │ ├── autolifter-single-pass-length.smt2 │ │ ├── autolifter-single-pass-longest1s.smt2 │ │ ├── autolifter-single-pass-max_dist_between_zeros.smt2 │ │ ├── autolifter-single-pass-max_len_1s.smt2 │ │ ├── autolifter-single-pass-mis.smt2 │ │ ├── autolifter-single-pass-mps.smt2 │ │ ├── autolifter-single-pass-mts.smt2 │ │ ├── autolifter-single-pass-sum.smt2 │ │ ├── fusion-algprog-ex3.13.smt2 │ │ ├── fusion-algprog-ex3.14.smt2 │ │ ├── fusion-algprog-page60.smt2 │ │ ├── fusion-deforestation-page7-2.smt2 │ │ ├── fusion-identities-page5.smt2 │ │ ├── fusion-shortcut-page1.smt2 │ │ ├── fusion-tupling-page1.smt2 │ │ ├── fusion-tupling-page8.smt2 │ │ ├── mtp-base.smt2 │ │ ├── synduce-combine-mss_with_sum.smt2 │ │ ├── synduce-combine-mts.smt2 │ │ ├── synduce-constraints-all_positive-list_mps.smt2 │ │ ├── synduce-constraints-all_positive-sndmax.smt2 │ │ ├── synduce-constraints-all_positive-sndmin.smt2 │ │ ├── synduce-constraints-balanced_tree-height.smt2 │ │ ├── synduce-constraints-balanced_tree-height_v2.smt2 │ │ ├── synduce-constraints-balanced_tree-node_count.smt2 │ │ ├── synduce-constraints-bst-from_list_max.smt2 │ │ ├── synduce-constraints-bst-minimax_separate.smt2 │ │ ├── synduce-constraints-bst-minimax_sim.smt2 │ │ ├── synduce-constraints-empty_right_subtree-sum.smt2 │ │ ├── synduce-constraints-ensures-mps_no_ensures.smt2 │ │ ├── synduce-constraints-ensures-mts_no_ensures.smt2 │ │ ├── synduce-constraints-memo-constant.smt2 │ │ ├── synduce-constraints-memo-count_lt.smt2 │ │ ├── synduce-constraints-memo-mts_memo_sum.smt2 │ │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos.smt2 │ │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos_v2.smt2 │ │ ├── synduce-constraints-memo-tree_size.smt2 │ │ ├── synduce-constraints-sortedlist-failing_slspplus.smt2 │ │ ├── synduce-constraints-sortedlist-max.smt2 │ │ ├── synduce-constraints-sortedlist-min.smt2 │ │ ├── synduce-constraints-sortedlist-nestedl_pyramid.smt2 │ │ ├── synduce-constraints-sortedlist-parallel_max.smt2 │ │ ├── synduce-constraints-sortedlist-parallel_max2.smt2 │ │ ├── synduce-constraints-sortedlist-parallel_min.smt2 │ │ ├── synduce-constraints-sortedlist-slsp.smt2 │ │ ├── synduce-constraints-sortedlist-sndmax_empty_base_case.smt2 │ │ ├── synduce-constraints-sortedlist-sndmind.smt2 │ │ ├── synduce-constraints-unimodal_lists-max_in_um_pos.smt2 │ │ ├── synduce-constraints-unimodal_lists-max_logn.smt2 │ │ ├── synduce-constraints-unimodal_lists-max_logn_v2.smt2 │ │ ├── synduce-indexed_list-position_polynomial.smt2 │ │ ├── synduce-indexed_list-sum_elts_lt_pos.smt2 │ │ ├── synduce-list-issorted.smt2 │ │ ├── synduce-list-last.smt2 │ │ ├── synduce-list-lenhom.smt2 │ │ ├── synduce-list-line_of_sight.smt2 │ │ ├── synduce-list-maxcount.smt2 │ │ ├── synduce-list-maxhom.smt2 │ │ ├── synduce-list-mincount.smt2 │ │ ├── synduce-list-minhom.smt2 │ │ ├── synduce-list-mpshom.smt2 │ │ ├── synduce-list-mts_and_mps_hom.smt2 │ │ ├── synduce-list-mtshom.smt2 │ │ ├── synduce-list-prodhom.smt2 │ │ ├── synduce-list-slsp.smt2 │ │ ├── synduce-list-sumhom.smt2 │ │ ├── synduce-list-zero_after_one.smt2 │ │ ├── synduce-list-zeros_ones.smt2 │ │ ├── synduce-list_to_tree-mls.smt2 │ │ ├── synduce-misc-composed_unkwns.smt2 │ │ ├── synduce-misc-simple_nnf.smt2 │ │ ├── synduce-misc-unknowns_are_ids.smt2 │ │ ├── synduce-nested_list-pyramid_intervals.smt2 │ │ ├── synduce-tailopt-mps.smt2 │ │ ├── synduce-tailopt-sum.smt2 │ │ ├── synduce-terms-height.smt2 │ │ ├── synduce-tree-maxPathWeight.smt2 │ │ ├── synduce-tree-maxtree.smt2 │ │ ├── synduce-tree-maxtree2.smt2 │ │ ├── synduce-tree-min.smt2 │ │ ├── synduce-tree-minmax.smt2 │ │ ├── synduce-tree-sorted.smt2 │ │ ├── synduce-tree-sumtree.smt2 │ │ ├── synduce-treepaths-height.smt2 │ │ ├── synduce-treepaths-maxPathWeight.smt2 │ │ ├── synduce-treepaths-maxPathWeight2.smt2 │ │ ├── synduce-treepaths-sum.smt2 │ │ ├── synduce-unimodal_lists-sum.smt2 │ │ ├── synduce-zipper-list_sum.smt2 │ │ └── synduce-zipper-list_sum_basic.smt2 ├── hipspec │ ├── clam │ │ ├── Definitions.hs │ │ └── Properties.hs │ ├── isaplanner │ │ ├── Definitions.hs │ │ └── Properties.hs │ └── optimization │ │ ├── autolifter-single-pass-0after1.hs │ │ ├── autolifter-single-pass-0s1s.hs │ │ ├── autolifter-single-pass-atoi.hs │ │ ├── autolifter-single-pass-cnt1s.hs │ │ ├── autolifter-single-pass-count10p.hs │ │ ├── autolifter-single-pass-dropwhile.hs │ │ ├── autolifter-single-pass-length.hs │ │ ├── autolifter-single-pass-longest1s.hs │ │ ├── autolifter-single-pass-max_dist_between_zeros.hs │ │ ├── autolifter-single-pass-max_len_1s.hs │ │ ├── autolifter-single-pass-mis.hs │ │ ├── autolifter-single-pass-mps.hs │ │ ├── autolifter-single-pass-mts.hs │ │ ├── autolifter-single-pass-sum.hs │ │ ├── fusion-algprog-ex3.13.hs │ │ ├── fusion-algprog-ex3.14.hs │ │ ├── fusion-algprog-page60.hs │ │ ├── fusion-deforestation-page7-2.hs │ │ ├── fusion-identities-page5.hs │ │ ├── fusion-shortcut-page1.hs │ │ ├── fusion-tupling-page1.hs │ │ ├── fusion-tupling-page8.hs │ │ ├── mtp-base.hs │ │ ├── synduce-combine-mss_with_sum.hs │ │ ├── synduce-combine-mts.hs │ │ ├── synduce-constraints-all_positive-list_mps.hs │ │ ├── synduce-constraints-all_positive-sndmax.hs │ │ ├── synduce-constraints-all_positive-sndmin.hs │ │ ├── synduce-constraints-balanced_tree-height.hs │ │ ├── synduce-constraints-balanced_tree-height_v2.hs │ │ ├── synduce-constraints-balanced_tree-node_count.hs │ │ ├── synduce-constraints-bst-from_list_max.hs │ │ ├── synduce-constraints-bst-minimax_separate.hs │ │ ├── synduce-constraints-bst-minimax_sim.hs │ │ ├── synduce-constraints-empty_right_subtree-sum.hs │ │ ├── synduce-constraints-ensures-mps_no_ensures.hs │ │ ├── synduce-constraints-ensures-mts_no_ensures.hs │ │ ├── synduce-constraints-memo-constant.hs │ │ ├── synduce-constraints-memo-count_lt.hs │ │ ├── synduce-constraints-memo-mts_memo_sum.hs │ │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos.hs │ │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos_v2.hs │ │ ├── synduce-constraints-memo-tree_size.hs │ │ ├── synduce-constraints-sortedlist-failing_slspplus.hs │ │ ├── synduce-constraints-sortedlist-max.hs │ │ ├── synduce-constraints-sortedlist-min.hs │ │ ├── synduce-constraints-sortedlist-nestedl_pyramid.hs │ │ ├── synduce-constraints-sortedlist-parallel_max.hs │ │ ├── synduce-constraints-sortedlist-parallel_max2.hs │ │ ├── synduce-constraints-sortedlist-parallel_min.hs │ │ ├── synduce-constraints-sortedlist-slsp.hs │ │ ├── synduce-constraints-sortedlist-sndmax_empty_base_case.hs │ │ ├── synduce-constraints-sortedlist-sndmind.hs │ │ ├── synduce-constraints-unimodal_lists-max_in_um_pos.hs │ │ ├── synduce-constraints-unimodal_lists-max_logn.hs │ │ ├── synduce-constraints-unimodal_lists-max_logn_v2.hs │ │ ├── synduce-indexed_list-position_polynomial.hs │ │ ├── synduce-indexed_list-sum_elts_lt_pos.hs │ │ ├── synduce-list-issorted.hs │ │ ├── synduce-list-last.hs │ │ ├── synduce-list-lenhom.hs │ │ ├── synduce-list-line_of_sight.hs │ │ ├── synduce-list-maxcount.hs │ │ ├── synduce-list-maxhom.hs │ │ ├── synduce-list-mincount.hs │ │ ├── synduce-list-minhom.hs │ │ ├── synduce-list-mpshom.hs │ │ ├── synduce-list-mts_and_mps_hom.hs │ │ ├── synduce-list-mtshom.hs │ │ ├── synduce-list-prodhom.hs │ │ ├── synduce-list-slsp.hs │ │ ├── synduce-list-sumhom.hs │ │ ├── synduce-list-zero_after_one.hs │ │ ├── synduce-list-zeros_ones.hs │ │ ├── synduce-list_to_tree-mls.hs │ │ ├── synduce-misc-composed_unkwns.hs │ │ ├── synduce-misc-simple_nnf.hs │ │ ├── synduce-misc-unknowns_are_ids.hs │ │ ├── synduce-nested_list-pyramid_intervals.hs │ │ ├── synduce-tailopt-mps.hs │ │ ├── synduce-tailopt-sum.hs │ │ ├── synduce-terms-height.hs │ │ ├── synduce-tree-maxPathWeight.hs │ │ ├── synduce-tree-maxtree.hs │ │ ├── synduce-tree-maxtree2.hs │ │ ├── synduce-tree-min.hs │ │ ├── synduce-tree-minmax.hs │ │ ├── synduce-tree-sorted.hs │ │ ├── synduce-tree-sumtree.hs │ │ ├── synduce-treepaths-height.hs │ │ ├── synduce-treepaths-maxPathWeight.hs │ │ ├── synduce-treepaths-maxPathWeight2.hs │ │ ├── synduce-treepaths-sum.hs │ │ ├── synduce-unimodal_lists-sum.hs │ │ ├── synduce-zipper-list_sum.hs │ │ └── synduce-zipper-list_sum_basic.hs └── thesy │ ├── clam │ ├── goal1.smt2.th │ ├── goal10.smt2.th │ ├── goal11.smt2.th │ ├── goal12.smt2.th │ ├── goal13.smt2.th │ ├── goal14.smt2.th │ ├── goal15.smt2.th │ ├── goal16.smt2.th │ ├── goal17.smt2.th │ ├── goal18.smt2.th │ ├── goal19.smt2.th │ ├── goal2.smt2.th │ ├── goal20.smt2.th │ ├── goal21.smt2.th │ ├── goal22.smt2.th │ ├── goal23.smt2.th │ ├── goal24.smt2.th │ ├── goal25.smt2.th │ ├── goal26.smt2.th │ ├── goal27.smt2.th │ ├── goal28.smt2.th │ ├── goal29.smt2.th │ ├── goal3.smt2.th │ ├── goal30.smt2.th │ ├── goal31.smt2.th │ ├── goal32.smt2.th │ ├── goal33.smt2.th │ ├── goal34.smt2.th │ ├── goal35.smt2.th │ ├── goal36.smt2.th │ ├── goal37.smt2.th │ ├── goal38.smt2.th │ ├── goal39.smt2.th │ ├── goal4.smt2.th │ ├── goal40.smt2.th │ ├── goal41.smt2.th │ ├── goal42.smt2.th │ ├── goal43.smt2.th │ ├── goal44.smt2.th │ ├── goal45.smt2.th │ ├── goal46.smt2.th │ ├── goal47.smt2.th │ ├── goal48.smt2.th │ ├── goal49.smt2.th │ ├── goal5.smt2.th │ ├── goal50.smt2.th │ ├── goal51.smt2.th │ ├── goal52.smt2.th │ ├── goal53.smt2.th │ ├── goal54.smt2.th │ ├── goal55.smt2.th │ ├── goal56.smt2.th │ ├── goal57.smt2.th │ ├── goal58.smt2.th │ ├── goal59.smt2.th │ ├── goal6.smt2.th │ ├── goal60.smt2.th │ ├── goal61.smt2.th │ ├── goal62.smt2.th │ ├── goal63.smt2.th │ ├── goal64.smt2.th │ ├── goal65.smt2.th │ ├── goal66.smt2.th │ ├── goal67.smt2.th │ ├── goal68.smt2.th │ ├── goal69.smt2.th │ ├── goal7.smt2.th │ ├── goal70.smt2.th │ ├── goal71.smt2.th │ ├── goal72.smt2.th │ ├── goal73.smt2.th │ ├── goal74.smt2.th │ ├── goal75.smt2.th │ ├── goal76.smt2.th │ ├── goal77.smt2.th │ ├── goal78.smt2.th │ ├── goal79.smt2.th │ ├── goal8.smt2.th │ ├── goal80.smt2.th │ ├── goal81.smt2.th │ ├── goal82.smt2.th │ ├── goal83.smt2.th │ ├── goal84.smt2.th │ ├── goal85.smt2.th │ ├── goal86.smt2.th │ └── goal9.smt2.th │ ├── isaplanner │ ├── goal1.smt2.th │ ├── goal10.smt2.th │ ├── goal11.smt2.th │ ├── goal12.smt2.th │ ├── goal13.smt2.th │ ├── goal14.smt2.th │ ├── goal15.smt2.th │ ├── goal16.smt2.th │ ├── goal17.smt2.th │ ├── goal18.smt2.th │ ├── goal19.smt2.th │ ├── goal2.smt2.th │ ├── goal20.smt2.th │ ├── goal201.smt2.th │ ├── goal21.smt2.th │ ├── goal22.smt2.th │ ├── goal23.smt2.th │ ├── goal24.smt2.th │ ├── goal25.smt2.th │ ├── goal26.smt2.th │ ├── goal27.smt2.th │ ├── goal28.smt2.th │ ├── goal29.smt2.th │ ├── goal3.smt2.th │ ├── goal30.smt2.th │ ├── goal31.smt2.th │ ├── goal32.smt2.th │ ├── goal33.smt2.th │ ├── goal34.smt2.th │ ├── goal35.smt2.th │ ├── goal36.smt2.th │ ├── goal37.smt2.th │ ├── goal38.smt2.th │ ├── goal39.smt2.th │ ├── goal4.smt2.th │ ├── goal40.smt2.th │ ├── goal41.smt2.th │ ├── goal42.smt2.th │ ├── goal43.smt2.th │ ├── goal44.smt2.th │ ├── goal45.smt2.th │ ├── goal46.smt2.th │ ├── goal47.smt2.th │ ├── goal48.smt2.th │ ├── goal49.smt2.th │ ├── goal5.smt2.th │ ├── goal50.smt2.th │ ├── goal51.smt2.th │ ├── goal52.smt2.th │ ├── goal53.smt2.th │ ├── goal54.smt2.th │ ├── goal55.smt2.th │ ├── goal56.smt2.th │ ├── goal57.smt2.th │ ├── goal58.smt2.th │ ├── goal59.smt2.th │ ├── goal6.smt2.th │ ├── goal60.smt2.th │ ├── goal61.smt2.th │ ├── goal62.smt2.th │ ├── goal63.smt2.th │ ├── goal64.smt2.th │ ├── goal65.smt2.th │ ├── goal66.smt2.th │ ├── goal67.smt2.th │ ├── goal68.smt2.th │ ├── goal69.smt2.th │ ├── goal7.smt2.th │ ├── goal70.smt2.th │ ├── goal71.smt2.th │ ├── goal72.smt2.th │ ├── goal73.smt2.th │ ├── goal74.smt2.th │ ├── goal75.smt2.th │ ├── goal76.smt2.th │ ├── goal77.smt2.th │ ├── goal78.smt2.th │ ├── goal79.smt2.th │ ├── goal8.smt2.th │ ├── goal80.smt2.th │ ├── goal81.smt2.th │ ├── goal82.smt2.th │ ├── goal83.smt2.th │ ├── goal84.smt2.th │ ├── goal85.smt2.th │ ├── goal86.smt2.th │ ├── goal87.smt2.th │ └── goal9.smt2.th │ └── optimization │ ├── autolifter-single-pass-0after1.th │ ├── autolifter-single-pass-0s1s.th │ ├── autolifter-single-pass-atoi.th │ ├── autolifter-single-pass-cnt1s.th │ ├── autolifter-single-pass-count10p.th │ ├── autolifter-single-pass-dropwhile.th │ ├── autolifter-single-pass-length.th │ ├── autolifter-single-pass-longest1s.th │ ├── autolifter-single-pass-max_dist_between_zeros.th │ ├── autolifter-single-pass-max_len_1s.th │ ├── autolifter-single-pass-mis.th │ ├── autolifter-single-pass-mps.th │ ├── autolifter-single-pass-mts.th │ ├── autolifter-single-pass-sum.th │ ├── fusion-algprog-ex3.13.th │ ├── fusion-algprog-ex3.14.th │ ├── fusion-algprog-page60.th │ ├── fusion-deforestation-page7-2.th │ ├── fusion-identities-page5.th │ ├── fusion-shortcut-page1.th │ ├── fusion-tupling-page1.th │ ├── fusion-tupling-page8.th │ ├── mtp-base.th │ ├── synduce-combine-mss_with_sum.th │ ├── synduce-combine-mts.th │ ├── synduce-constraints-all_positive-list_mps.th │ ├── synduce-constraints-all_positive-sndmax.th │ ├── synduce-constraints-all_positive-sndmin.th │ ├── synduce-constraints-balanced_tree-height.th │ ├── synduce-constraints-balanced_tree-height_v2.th │ ├── synduce-constraints-balanced_tree-node_count.th │ ├── synduce-constraints-bst-from_list_max.th │ ├── synduce-constraints-bst-minimax_separate.th │ ├── synduce-constraints-bst-minimax_sim.th │ ├── synduce-constraints-empty_right_subtree-sum.th │ ├── synduce-constraints-ensures-mps_no_ensures.th │ ├── synduce-constraints-ensures-mts_no_ensures.th │ ├── synduce-constraints-memo-constant.th │ ├── synduce-constraints-memo-count_lt.th │ ├── synduce-constraints-memo-mts_memo_sum.th │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos.th │ ├── synduce-constraints-memo-proper_indexation_sum_lt_pos_v2.th │ ├── synduce-constraints-memo-tree_size.th │ ├── synduce-constraints-sortedlist-failing_slspplus.th │ ├── synduce-constraints-sortedlist-max.th │ ├── synduce-constraints-sortedlist-min.th │ ├── synduce-constraints-sortedlist-nestedl_pyramid.th │ ├── synduce-constraints-sortedlist-parallel_max.th │ ├── synduce-constraints-sortedlist-parallel_max2.th │ ├── synduce-constraints-sortedlist-parallel_min.th │ ├── synduce-constraints-sortedlist-slsp.th │ ├── synduce-constraints-sortedlist-sndmax_empty_base_case.th │ ├── synduce-constraints-sortedlist-sndmind.th │ ├── synduce-constraints-unimodal_lists-max_in_um_pos.th │ ├── synduce-constraints-unimodal_lists-max_logn.th │ ├── synduce-constraints-unimodal_lists-max_logn_v2.th │ ├── synduce-indexed_list-position_polynomial.th │ ├── synduce-indexed_list-sum_elts_lt_pos.th │ ├── synduce-list-issorted.th │ ├── synduce-list-last.th │ ├── synduce-list-lenhom.th │ ├── synduce-list-line_of_sight.th │ ├── synduce-list-maxcount.th │ ├── synduce-list-maxhom.th │ ├── synduce-list-mincount.th │ ├── synduce-list-minhom.th │ ├── synduce-list-mpshom.th │ ├── synduce-list-mts_and_mps_hom.th │ ├── synduce-list-mtshom.th │ ├── synduce-list-prodhom.th │ ├── synduce-list-slsp.th │ ├── synduce-list-sumhom.th │ ├── synduce-list-zero_after_one.th │ ├── synduce-list-zeros_ones.th │ ├── synduce-list_to_tree-mls.th │ ├── synduce-misc-composed_unkwns.th │ ├── synduce-misc-simple_nnf.th │ ├── synduce-misc-unknowns_are_ids.th │ ├── synduce-nested_list-pyramid_intervals.th │ ├── synduce-tailopt-mps.th │ ├── synduce-tailopt-sum.th │ ├── synduce-terms-height.th │ ├── synduce-tree-maxPathWeight.th │ ├── synduce-tree-maxtree.th │ ├── synduce-tree-maxtree2.th │ ├── synduce-tree-min.th │ ├── synduce-tree-minmax.th │ ├── synduce-tree-sorted.th │ ├── synduce-tree-sumtree.th │ ├── synduce-treepaths-height.th │ ├── synduce-treepaths-maxPathWeight.th │ ├── synduce-treepaths-maxPathWeight2.th │ ├── synduce-treepaths-sum.th │ ├── synduce-unimodal_lists-sum.th │ ├── synduce-zipper-list_sum.th │ └── synduce-zipper-list_sum_basic.th ├── docs └── file-format.md ├── examples ├── add.ceg ├── clam.ceg ├── clam_with_lemmas.ceg ├── isaplanner.ceg └── mtp.ceg ├── generate-plots.py ├── img └── logo.svg ├── precomputed-results ├── cclemma │ ├── clam.csv │ ├── isaplanner.csv │ └── optimization.csv ├── cvc4 │ ├── clam.csv │ ├── isaplanner.csv │ └── optimization.csv ├── hipspec │ ├── clam.csv │ ├── isaplanner.csv │ └── optimization.csv └── thesy-no-expl-proofs.csv ├── runner.py ├── rustfmt.toml ├── scripts ├── __init__.py ├── cache.py ├── cclemma_runner.py ├── config.py ├── cvc_runner.py ├── hipspec_runner.py ├── thesy_runner.py ├── thesy_stats_processor.py └── util.py └── src ├── analysis.rs ├── ast.rs ├── config.rs ├── egraph.rs ├── explain.rs ├── goal.rs ├── goal_graph.rs ├── main.rs ├── parser.rs └── utils.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/cclemma/clam/clam.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/clam/clam.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/isaplanner/isaplanner.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/isaplanner/isaplanner.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-0after1.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-0after1.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-0s1s.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-0s1s.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-atoi.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-atoi.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-cnt1s.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-cnt1s.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-count10p.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-count10p.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-dropwhile.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-dropwhile.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-length.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-length.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-longest1s.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-longest1s.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-max_dist_between_zeros.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-max_dist_between_zeros.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-max_len_1s.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-max_len_1s.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-mis.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-mis.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-mps.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-mps.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-mts.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-mts.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/autolifter-single-pass-sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/autolifter-single-pass-sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-algprog-ex3.13.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-algprog-ex3.13.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-algprog-ex3.14.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-algprog-ex3.14.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-algprog-page60.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-algprog-page60.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-deforestation-page7-2.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-deforestation-page7-2.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-identities-page5.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-identities-page5.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-shortcut-page1.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-shortcut-page1.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-tupling-page1.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-tupling-page1.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/fusion-tupling-page8.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/fusion-tupling-page8.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/mtp-base.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/mtp-base.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-combine-mss_with_sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-combine-mss_with_sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-combine-mts.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-combine-mts.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-all_positive-list_mps.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-all_positive-list_mps.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-all_positive-sndmax.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-all_positive-sndmax.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-all_positive-sndmin.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-all_positive-sndmin.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-balanced_tree-height.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-balanced_tree-height.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-balanced_tree-height_v2.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-balanced_tree-height_v2.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-balanced_tree-node_count.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-balanced_tree-node_count.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-bst-from_list_max.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-bst-from_list_max.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-bst-minimax_separate.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-bst-minimax_separate.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-bst-minimax_sim.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-bst-minimax_sim.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-empty_right_subtree-sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-empty_right_subtree-sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-ensures-mps_no_ensures.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-ensures-mps_no_ensures.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-ensures-mts_no_ensures.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-ensures-mts_no_ensures.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-memo-constant.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-memo-constant.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-memo-count_lt.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-memo-count_lt.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-memo-mts_memo_sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-memo-mts_memo_sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-memo-tree_size.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-memo-tree_size.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-failing_slspplus.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-failing_slspplus.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-max.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-max.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-min.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-min.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-nestedl_pyramid.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-nestedl_pyramid.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-parallel_max.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-parallel_max.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-parallel_max2.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-parallel_max2.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-parallel_min.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-parallel_min.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-slsp.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-slsp.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-sortedlist-sndmind.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-sortedlist-sndmind.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-unimodal_lists-max_logn.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-unimodal_lists-max_logn.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-constraints-unimodal_lists-max_logn_v2.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-constraints-unimodal_lists-max_logn_v2.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-indexed_list-position_polynomial.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-indexed_list-position_polynomial.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-indexed_list-sum_elts_lt_pos.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-indexed_list-sum_elts_lt_pos.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-issorted.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-issorted.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-last.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-last.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-lenhom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-lenhom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-line_of_sight.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-line_of_sight.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-maxcount.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-maxcount.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-maxhom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-maxhom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-mincount.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-mincount.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-minhom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-minhom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-mpshom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-mpshom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-mts_and_mps_hom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-mts_and_mps_hom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-mtshom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-mtshom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-prodhom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-prodhom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-slsp.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-slsp.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-sumhom.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-sumhom.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-zero_after_one.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-zero_after_one.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list-zeros_ones.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list-zeros_ones.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-list_to_tree-mls.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-list_to_tree-mls.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-misc-composed_unkwns.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-misc-composed_unkwns.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-misc-simple_nnf.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-misc-simple_nnf.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-misc-unknowns_are_ids.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-misc-unknowns_are_ids.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-nested_list-pyramid_intervals.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-nested_list-pyramid_intervals.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tailopt-mps.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tailopt-mps.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tailopt-sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tailopt-sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-terms-height.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-terms-height.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-maxPathWeight.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-maxPathWeight.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-maxtree.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-maxtree.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-maxtree2.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-maxtree2.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-min.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-min.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-minmax.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-minmax.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-sorted.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-sorted.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-tree-sumtree.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-tree-sumtree.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-treepaths-height.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-treepaths-height.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-treepaths-maxPathWeight.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-treepaths-maxPathWeight.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-treepaths-maxPathWeight2.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-treepaths-maxPathWeight2.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-treepaths-sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-treepaths-sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-unimodal_lists-sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-unimodal_lists-sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-zipper-list_sum.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-zipper-list_sum.ceg -------------------------------------------------------------------------------- /benchmarks/cclemma/optimization/synduce-zipper-list_sum_basic.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cclemma/optimization/synduce-zipper-list_sum_basic.ceg -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal1.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal10.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal10.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal11.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal11.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal12.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal12.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal13.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal13.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal14.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal14.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal15.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal15.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal16.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal16.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal17.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal17.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal18.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal18.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal19.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal19.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal20.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal20.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal21.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal21.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal22.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal22.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal23.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal23.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal24.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal24.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal25.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal25.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal26.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal26.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal27.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal27.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal28.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal28.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal29.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal29.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal3.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal30.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal30.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal31.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal31.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal32.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal32.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal33.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal33.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal34.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal34.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal35.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal35.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal36.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal36.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal37.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal37.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal38.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal38.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal39.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal39.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal4.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal40.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal40.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal41.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal41.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal42.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal42.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal43.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal43.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal44.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal44.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal45.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal45.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal46.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal46.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal47.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal47.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal48.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal48.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal49.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal49.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal5.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal50.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal50.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal51.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal51.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal52.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal52.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal53.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal53.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal54.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal54.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal55.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal55.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal56.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal56.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal57.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal57.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal58.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal58.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal59.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal59.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal6.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal6.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal60.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal60.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal61.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal61.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal62.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal62.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal63.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal63.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal64.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal64.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal65.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal65.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal66.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal66.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal67.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal67.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal68.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal68.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal69.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal69.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal7.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal7.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal70.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal70.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal71.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal71.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal72.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal72.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal73.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal73.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal74.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal74.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal75.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal75.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal76.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal76.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal77.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal77.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal78.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal78.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal79.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal79.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal8.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal8.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal80.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal80.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal81.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal81.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal82.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal82.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal83.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal83.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal84.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal84.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal85.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal85.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal86.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal86.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/clam/goal9.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/clam/goal9.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal1.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal10.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal10.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal11.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal11.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal12.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal12.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal13.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal13.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal14.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal14.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal15.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal15.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal16.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal16.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal17.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal17.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal18.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal18.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal19.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal19.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal20.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal20.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal21.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal21.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal22.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal22.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal23.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal23.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal24.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal24.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal25.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal25.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal26.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal26.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal27.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal27.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal28.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal28.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal29.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal29.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal3.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal30.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal30.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal31.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal31.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal32.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal32.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal33.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal33.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal34.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal34.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal35.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal35.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal36.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal36.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal37.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal37.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal38.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal38.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal39.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal39.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal4.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal40.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal40.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal41.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal41.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal42.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal42.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal43.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal43.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal44.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal44.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal45.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal45.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal46.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal46.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal47.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal47.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal48.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal48.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal49.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal49.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal5.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal50.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal50.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal51.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal51.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal52.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal52.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal53.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal53.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal54.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal54.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal55.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal55.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal56.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal56.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal57.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal57.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal58.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal58.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal59.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal59.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal6.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal6.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal60.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal60.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal61.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal61.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal62.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal62.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal63.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal63.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal64.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal64.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal65.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal65.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal66.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal66.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal67.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal67.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal68.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal68.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal69.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal69.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal7.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal7.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal70.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal70.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal71.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal71.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal72.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal72.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal73.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal73.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal74.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal74.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal75.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal75.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal76.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal76.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal77.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal77.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal78.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal78.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal79.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal79.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal8.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal8.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal80.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal80.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal81.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal81.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal82.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal82.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal83.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal83.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal84.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal84.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal85.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal85.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal86.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal86.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal87.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal87.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/isaplanner/goal9.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/isaplanner/goal9.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-0after1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-0after1.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-0s1s.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-0s1s.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-atoi.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-atoi.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-cnt1s.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-cnt1s.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-count10p.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-count10p.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-dropwhile.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-dropwhile.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-length.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-length.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-longest1s.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-longest1s.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-max_dist_between_zeros.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-max_dist_between_zeros.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-max_len_1s.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-max_len_1s.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-mis.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-mis.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-mps.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-mps.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-mts.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-mts.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/autolifter-single-pass-sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/autolifter-single-pass-sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-algprog-ex3.13.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-algprog-ex3.13.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-algprog-ex3.14.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-algprog-ex3.14.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-algprog-page60.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-algprog-page60.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-deforestation-page7-2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-deforestation-page7-2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-identities-page5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-identities-page5.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-shortcut-page1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-shortcut-page1.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-tupling-page1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-tupling-page1.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/fusion-tupling-page8.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/fusion-tupling-page8.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/mtp-base.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/mtp-base.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-combine-mss_with_sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-combine-mss_with_sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-combine-mts.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-combine-mts.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-all_positive-list_mps.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-all_positive-list_mps.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-all_positive-sndmax.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-all_positive-sndmax.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-all_positive-sndmin.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-all_positive-sndmin.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-balanced_tree-height.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-balanced_tree-height.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-balanced_tree-height_v2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-balanced_tree-height_v2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-balanced_tree-node_count.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-balanced_tree-node_count.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-bst-from_list_max.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-bst-from_list_max.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-bst-minimax_separate.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-bst-minimax_separate.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-bst-minimax_sim.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-bst-minimax_sim.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-empty_right_subtree-sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-empty_right_subtree-sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-ensures-mps_no_ensures.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-ensures-mps_no_ensures.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-ensures-mts_no_ensures.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-ensures-mts_no_ensures.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-memo-constant.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-memo-constant.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-memo-count_lt.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-memo-count_lt.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-memo-mts_memo_sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-memo-mts_memo_sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-memo-proper_indexation_sum_lt_pos.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-memo-proper_indexation_sum_lt_pos.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-memo-tree_size.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-memo-tree_size.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-failing_slspplus.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-failing_slspplus.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-max.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-max.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-min.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-min.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-nestedl_pyramid.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-nestedl_pyramid.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-parallel_max.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-parallel_max.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-parallel_max2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-parallel_max2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-parallel_min.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-parallel_min.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-slsp.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-slsp.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-sndmax_empty_base_case.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-sndmax_empty_base_case.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-sortedlist-sndmind.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-sortedlist-sndmind.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-unimodal_lists-max_logn.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-unimodal_lists-max_logn.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-constraints-unimodal_lists-max_logn_v2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-constraints-unimodal_lists-max_logn_v2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-indexed_list-position_polynomial.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-indexed_list-position_polynomial.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-indexed_list-sum_elts_lt_pos.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-indexed_list-sum_elts_lt_pos.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-issorted.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-issorted.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-last.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-last.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-lenhom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-lenhom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-line_of_sight.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-line_of_sight.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-maxcount.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-maxcount.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-maxhom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-maxhom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-mincount.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-mincount.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-minhom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-minhom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-mpshom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-mpshom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-mts_and_mps_hom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-mts_and_mps_hom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-mtshom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-mtshom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-prodhom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-prodhom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-slsp.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-slsp.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-sumhom.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-sumhom.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-zero_after_one.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-zero_after_one.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list-zeros_ones.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list-zeros_ones.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-list_to_tree-mls.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-list_to_tree-mls.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-misc-composed_unkwns.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-misc-composed_unkwns.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-misc-simple_nnf.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-misc-simple_nnf.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-misc-unknowns_are_ids.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-misc-unknowns_are_ids.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-nested_list-pyramid_intervals.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-nested_list-pyramid_intervals.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tailopt-mps.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tailopt-mps.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tailopt-sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tailopt-sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-terms-height.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-terms-height.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-maxPathWeight.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-maxPathWeight.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-maxtree.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-maxtree.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-maxtree2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-maxtree2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-min.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-min.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-minmax.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-minmax.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-sorted.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-sorted.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-tree-sumtree.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-tree-sumtree.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-treepaths-height.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-treepaths-height.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-treepaths-maxPathWeight.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-treepaths-maxPathWeight.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-treepaths-maxPathWeight2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-treepaths-maxPathWeight2.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-treepaths-sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-treepaths-sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-unimodal_lists-sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-unimodal_lists-sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-zipper-list_sum.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-zipper-list_sum.smt2 -------------------------------------------------------------------------------- /benchmarks/cvc4/optimization/synduce-zipper-list_sum_basic.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/cvc4/optimization/synduce-zipper-list_sum_basic.smt2 -------------------------------------------------------------------------------- /benchmarks/hipspec/clam/Definitions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/clam/Definitions.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/clam/Properties.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/clam/Properties.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/isaplanner/Definitions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/isaplanner/Definitions.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/isaplanner/Properties.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/isaplanner/Properties.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-0after1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-0after1.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-0s1s.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-0s1s.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-atoi.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-atoi.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-cnt1s.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-cnt1s.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-count10p.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-count10p.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-dropwhile.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-dropwhile.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-length.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-length.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-longest1s.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-longest1s.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-max_dist_between_zeros.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-max_dist_between_zeros.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-max_len_1s.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-max_len_1s.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-mis.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-mis.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-mps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-mps.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-mts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-mts.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/autolifter-single-pass-sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/autolifter-single-pass-sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-algprog-ex3.13.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-algprog-ex3.13.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-algprog-ex3.14.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-algprog-ex3.14.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-algprog-page60.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-algprog-page60.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-deforestation-page7-2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-deforestation-page7-2.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-identities-page5.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-identities-page5.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-shortcut-page1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-shortcut-page1.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-tupling-page1.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-tupling-page1.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/fusion-tupling-page8.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/fusion-tupling-page8.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/mtp-base.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/mtp-base.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-combine-mss_with_sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-combine-mss_with_sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-combine-mts.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-combine-mts.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-all_positive-list_mps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-all_positive-list_mps.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-all_positive-sndmax.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-all_positive-sndmax.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-all_positive-sndmin.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-all_positive-sndmin.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-balanced_tree-height.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-balanced_tree-height.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-balanced_tree-height_v2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-balanced_tree-height_v2.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-balanced_tree-node_count.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-balanced_tree-node_count.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-bst-from_list_max.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-bst-from_list_max.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-bst-minimax_separate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-bst-minimax_separate.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-bst-minimax_sim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-bst-minimax_sim.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-empty_right_subtree-sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-empty_right_subtree-sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-ensures-mps_no_ensures.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-ensures-mps_no_ensures.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-ensures-mts_no_ensures.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-ensures-mts_no_ensures.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-memo-constant.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-memo-constant.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-memo-count_lt.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-memo-count_lt.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-memo-mts_memo_sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-memo-mts_memo_sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-memo-proper_indexation_sum_lt_pos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-memo-proper_indexation_sum_lt_pos.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-memo-tree_size.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-memo-tree_size.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-failing_slspplus.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-failing_slspplus.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-max.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-max.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-min.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-min.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-nestedl_pyramid.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-nestedl_pyramid.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-parallel_max.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-parallel_max.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-parallel_max2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-parallel_max2.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-parallel_min.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-parallel_min.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-slsp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-slsp.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-sortedlist-sndmind.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-sortedlist-sndmind.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-unimodal_lists-max_logn.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-unimodal_lists-max_logn.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-constraints-unimodal_lists-max_logn_v2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-constraints-unimodal_lists-max_logn_v2.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-indexed_list-position_polynomial.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-indexed_list-position_polynomial.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-indexed_list-sum_elts_lt_pos.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-indexed_list-sum_elts_lt_pos.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-issorted.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-issorted.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-last.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-last.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-lenhom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-lenhom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-line_of_sight.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-line_of_sight.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-maxcount.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-maxcount.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-maxhom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-maxhom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-mincount.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-mincount.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-minhom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-minhom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-mpshom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-mpshom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-mts_and_mps_hom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-mts_and_mps_hom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-mtshom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-mtshom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-prodhom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-prodhom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-slsp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-slsp.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-sumhom.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-sumhom.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-zero_after_one.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-zero_after_one.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list-zeros_ones.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list-zeros_ones.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-list_to_tree-mls.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-list_to_tree-mls.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-misc-composed_unkwns.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-misc-composed_unkwns.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-misc-simple_nnf.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-misc-simple_nnf.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-misc-unknowns_are_ids.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-misc-unknowns_are_ids.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-nested_list-pyramid_intervals.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-nested_list-pyramid_intervals.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tailopt-mps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tailopt-mps.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tailopt-sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tailopt-sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-terms-height.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-terms-height.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-maxPathWeight.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-maxPathWeight.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-maxtree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-maxtree.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-maxtree2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-maxtree2.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-min.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-min.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-minmax.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-minmax.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-sorted.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-sorted.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-tree-sumtree.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-tree-sumtree.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-treepaths-height.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-treepaths-height.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-treepaths-maxPathWeight.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-treepaths-maxPathWeight.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-treepaths-maxPathWeight2.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-treepaths-maxPathWeight2.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-treepaths-sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-treepaths-sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-unimodal_lists-sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-unimodal_lists-sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-zipper-list_sum.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-zipper-list_sum.hs -------------------------------------------------------------------------------- /benchmarks/hipspec/optimization/synduce-zipper-list_sum_basic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/hipspec/optimization/synduce-zipper-list_sum_basic.hs -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal1.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal1.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal10.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal10.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal11.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal11.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal12.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal12.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal13.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal13.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal14.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal14.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal15.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal15.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal16.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal16.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal17.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal17.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal18.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal18.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal19.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal19.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal2.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal2.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal20.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal20.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal21.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal21.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal22.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal22.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal23.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal23.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal24.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal24.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal25.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal25.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal26.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal26.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal27.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal27.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal28.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal28.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal29.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal29.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal3.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal3.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal30.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal30.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal31.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal31.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal32.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal32.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal33.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal33.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal34.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal34.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal35.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal35.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal36.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal36.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal37.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal37.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal38.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal38.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal39.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal39.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal4.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal4.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal40.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal40.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal41.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal41.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal42.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal42.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal43.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal43.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal44.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal44.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal45.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal45.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal46.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal46.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal47.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal47.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal48.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal48.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal49.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal49.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal5.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal5.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal50.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal50.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal51.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal51.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal52.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal52.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal53.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal53.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal54.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal54.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal55.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal55.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal56.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal56.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal57.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal57.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal58.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal58.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal59.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal59.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal6.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal6.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal60.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal60.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal61.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal61.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal62.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal62.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal63.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal63.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal64.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal64.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal65.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal65.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal66.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal66.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal67.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal67.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal68.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal68.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal69.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal69.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal7.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal7.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal70.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal70.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal71.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal71.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal72.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal72.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal73.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal73.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal74.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal74.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal75.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal75.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal76.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal76.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal77.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal77.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal78.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal78.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal79.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal79.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal8.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal8.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal80.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal80.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal81.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal81.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal82.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal82.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal83.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal83.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal84.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal84.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal85.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal85.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal86.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal86.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/clam/goal9.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/clam/goal9.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal1.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal1.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal10.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal10.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal11.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal11.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal12.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal12.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal13.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal13.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal14.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal14.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal15.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal15.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal16.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal16.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal17.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal17.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal18.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal18.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal19.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal19.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal2.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal2.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal20.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal20.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal201.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal201.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal21.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal21.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal22.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal22.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal23.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal23.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal24.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal24.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal25.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal25.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal26.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal26.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal27.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal27.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal28.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal28.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal29.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal29.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal3.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal3.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal30.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal30.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal31.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal31.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal32.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal32.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal33.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal33.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal34.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal34.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal35.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal35.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal36.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal36.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal37.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal37.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal38.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal38.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal39.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal39.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal4.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal4.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal40.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal40.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal41.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal41.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal42.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal42.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal43.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal43.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal44.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal44.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal45.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal45.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal46.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal46.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal47.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal47.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal48.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal48.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal49.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal49.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal5.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal5.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal50.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal50.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal51.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal51.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal52.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal52.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal53.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal53.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal54.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal54.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal55.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal55.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal56.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal56.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal57.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal57.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal58.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal58.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal59.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal59.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal6.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal6.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal60.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal60.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal61.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal61.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal62.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal62.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal63.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal63.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal64.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal64.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal65.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal65.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal66.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal66.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal67.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal67.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal68.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal68.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal69.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal69.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal7.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal7.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal70.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal70.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal71.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal71.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal72.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal72.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal73.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal73.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal74.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal74.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal75.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal75.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal76.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal76.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal77.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal77.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal78.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal78.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal79.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal79.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal8.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal8.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal80.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal80.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal81.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal81.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal82.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal82.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal83.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal83.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal84.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal84.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal85.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal85.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal86.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal86.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal87.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal87.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/isaplanner/goal9.smt2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/isaplanner/goal9.smt2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-0after1.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-0after1.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-0s1s.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-0s1s.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-atoi.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-atoi.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-cnt1s.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-cnt1s.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-count10p.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-count10p.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-dropwhile.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-dropwhile.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-length.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-length.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-longest1s.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-longest1s.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-max_dist_between_zeros.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-max_dist_between_zeros.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-max_len_1s.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-max_len_1s.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-mis.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-mis.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-mps.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-mps.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-mts.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-mts.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/autolifter-single-pass-sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/autolifter-single-pass-sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-algprog-ex3.13.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-algprog-ex3.13.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-algprog-ex3.14.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-algprog-ex3.14.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-algprog-page60.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-algprog-page60.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-deforestation-page7-2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-deforestation-page7-2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-identities-page5.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-identities-page5.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-shortcut-page1.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-shortcut-page1.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-tupling-page1.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-tupling-page1.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/fusion-tupling-page8.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/fusion-tupling-page8.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/mtp-base.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/mtp-base.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-combine-mss_with_sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-combine-mss_with_sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-combine-mts.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-combine-mts.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-all_positive-list_mps.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-all_positive-list_mps.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-all_positive-sndmax.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-all_positive-sndmax.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-all_positive-sndmin.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-all_positive-sndmin.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-balanced_tree-height.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-balanced_tree-height.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-balanced_tree-height_v2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-balanced_tree-height_v2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-balanced_tree-node_count.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-balanced_tree-node_count.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-bst-from_list_max.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-bst-from_list_max.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-bst-minimax_separate.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-bst-minimax_separate.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-bst-minimax_sim.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-bst-minimax_sim.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-empty_right_subtree-sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-empty_right_subtree-sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-ensures-mps_no_ensures.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-ensures-mps_no_ensures.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-ensures-mts_no_ensures.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-ensures-mts_no_ensures.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-memo-constant.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-memo-constant.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-memo-count_lt.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-memo-count_lt.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-memo-mts_memo_sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-memo-mts_memo_sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-memo-proper_indexation_sum_lt_pos.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-memo-proper_indexation_sum_lt_pos.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-memo-tree_size.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-memo-tree_size.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-failing_slspplus.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-failing_slspplus.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-max.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-max.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-min.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-min.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-nestedl_pyramid.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-nestedl_pyramid.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-parallel_max.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-parallel_max.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-parallel_max2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-parallel_max2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-parallel_min.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-parallel_min.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-slsp.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-slsp.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-sndmax_empty_base_case.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-sndmax_empty_base_case.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-sortedlist-sndmind.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-sortedlist-sndmind.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-unimodal_lists-max_in_um_pos.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-unimodal_lists-max_logn.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-unimodal_lists-max_logn.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-constraints-unimodal_lists-max_logn_v2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-constraints-unimodal_lists-max_logn_v2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-indexed_list-position_polynomial.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-indexed_list-position_polynomial.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-indexed_list-sum_elts_lt_pos.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-indexed_list-sum_elts_lt_pos.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-issorted.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-issorted.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-last.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-last.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-lenhom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-lenhom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-line_of_sight.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-line_of_sight.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-maxcount.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-maxcount.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-maxhom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-maxhom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-mincount.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-mincount.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-minhom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-minhom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-mpshom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-mpshom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-mts_and_mps_hom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-mts_and_mps_hom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-mtshom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-mtshom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-prodhom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-prodhom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-slsp.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-slsp.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-sumhom.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-sumhom.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-zero_after_one.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-zero_after_one.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list-zeros_ones.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list-zeros_ones.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-list_to_tree-mls.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-list_to_tree-mls.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-misc-composed_unkwns.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-misc-composed_unkwns.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-misc-simple_nnf.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-misc-simple_nnf.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-misc-unknowns_are_ids.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-misc-unknowns_are_ids.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-nested_list-pyramid_intervals.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-nested_list-pyramid_intervals.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tailopt-mps.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tailopt-mps.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tailopt-sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tailopt-sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-terms-height.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-terms-height.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-maxPathWeight.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-maxPathWeight.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-maxtree.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-maxtree.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-maxtree2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-maxtree2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-min.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-min.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-minmax.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-minmax.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-sorted.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-sorted.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-tree-sumtree.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-tree-sumtree.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-treepaths-height.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-treepaths-height.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-treepaths-maxPathWeight.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-treepaths-maxPathWeight.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-treepaths-maxPathWeight2.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-treepaths-maxPathWeight2.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-treepaths-sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-treepaths-sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-unimodal_lists-sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-unimodal_lists-sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-zipper-list_sum.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-zipper-list_sum.th -------------------------------------------------------------------------------- /benchmarks/thesy/optimization/synduce-zipper-list_sum_basic.th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/benchmarks/thesy/optimization/synduce-zipper-list_sum_basic.th -------------------------------------------------------------------------------- /docs/file-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/docs/file-format.md -------------------------------------------------------------------------------- /examples/add.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/examples/add.ceg -------------------------------------------------------------------------------- /examples/clam.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/examples/clam.ceg -------------------------------------------------------------------------------- /examples/clam_with_lemmas.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/examples/clam_with_lemmas.ceg -------------------------------------------------------------------------------- /examples/isaplanner.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/examples/isaplanner.ceg -------------------------------------------------------------------------------- /examples/mtp.ceg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/examples/mtp.ceg -------------------------------------------------------------------------------- /generate-plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/generate-plots.py -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/img/logo.svg -------------------------------------------------------------------------------- /precomputed-results/cclemma/clam.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/cclemma/clam.csv -------------------------------------------------------------------------------- /precomputed-results/cclemma/isaplanner.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/cclemma/isaplanner.csv -------------------------------------------------------------------------------- /precomputed-results/cclemma/optimization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/cclemma/optimization.csv -------------------------------------------------------------------------------- /precomputed-results/cvc4/clam.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/cvc4/clam.csv -------------------------------------------------------------------------------- /precomputed-results/cvc4/isaplanner.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/cvc4/isaplanner.csv -------------------------------------------------------------------------------- /precomputed-results/cvc4/optimization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/cvc4/optimization.csv -------------------------------------------------------------------------------- /precomputed-results/hipspec/clam.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/hipspec/clam.csv -------------------------------------------------------------------------------- /precomputed-results/hipspec/isaplanner.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/hipspec/isaplanner.csv -------------------------------------------------------------------------------- /precomputed-results/hipspec/optimization.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/hipspec/optimization.csv -------------------------------------------------------------------------------- /precomputed-results/thesy-no-expl-proofs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/precomputed-results/thesy-no-expl-proofs.csv -------------------------------------------------------------------------------- /runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/runner.py -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/cache.py -------------------------------------------------------------------------------- /scripts/cclemma_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/cclemma_runner.py -------------------------------------------------------------------------------- /scripts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/config.py -------------------------------------------------------------------------------- /scripts/cvc_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/cvc_runner.py -------------------------------------------------------------------------------- /scripts/hipspec_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/hipspec_runner.py -------------------------------------------------------------------------------- /scripts/thesy_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/thesy_runner.py -------------------------------------------------------------------------------- /scripts/thesy_stats_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/thesy_stats_processor.py -------------------------------------------------------------------------------- /scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/scripts/util.py -------------------------------------------------------------------------------- /src/analysis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/analysis.rs -------------------------------------------------------------------------------- /src/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/ast.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/egraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/egraph.rs -------------------------------------------------------------------------------- /src/explain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/explain.rs -------------------------------------------------------------------------------- /src/goal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/goal.rs -------------------------------------------------------------------------------- /src/goal_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/goal_graph.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/parser.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cole-k/cc-lemma/HEAD/src/utils.rs --------------------------------------------------------------------------------