├── .check-long-timings.json ├── .dir-locals.el ├── .github └── workflows │ ├── CI-check-bib.yml │ └── pythonpublish.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── .travis-conda-install.sh ├── .travis-deploy-doc.sh ├── .travis-install.sh ├── .travis-quick-test.sh ├── .travis-test.sh ├── .travis.yml ├── .travis_ci_gh_pages_deploy_key.enc ├── AUTHORS.rst ├── COPYING ├── Makefile ├── README.rst ├── THANKS.rst ├── _doctest_environment.py ├── cutgeneratingfunctionology ├── __init__.py ├── dff │ ├── Gomory_conversion.sage │ ├── __init__.py │ ├── computer_based_search_naive_dff.sage │ ├── dff_functions.sage │ ├── dff_test_plot.sage │ ├── discontinuous_dff.sage │ └── gdff_linear_test.sage ├── igp │ ├── 2q_mip.sage │ ├── __init__.py │ ├── animation_2d_diagram.sage │ ├── bug_examples.sage │ ├── class_call.py │ ├── compendium_procedures.sage │ ├── continuous_case.sage │ ├── crazy_perturbation.sage │ ├── crazy_perturbation_examples.sage │ ├── discontinuous_case.sage │ ├── discrete_case.sage │ ├── extreme_functions.py │ ├── extreme_functions_in_literature.sage │ ├── extreme_functions_mlr_cpl3.sage │ ├── extreme_functions_sporadic.sage │ ├── fast_linear.py │ ├── fast_piecewise.py │ ├── faster_subadditivity_test.sage │ ├── faster_subadditivity_test_discontinuous.sage │ ├── functions.sage │ ├── intervals.py │ ├── kslope_mip.sage │ ├── kslope_pattern.sage │ ├── kslope_ppl_mip.py │ ├── lifting_project.sage │ ├── logging.sage │ ├── move_semigroup.py │ ├── parametric.sage │ ├── parametric_cpl.sage │ ├── parametric_family.py │ ├── plot_options.sage │ ├── procedures │ │ ├── __init__.py │ │ └── injective_2_slope_fill_in_proof.py │ ├── quasi_periodic.sage │ ├── real_number_field.sage │ ├── simple_extremality_test.sage │ ├── subadditivity_slack_diagrams │ │ ├── __init__.py │ │ └── limit_arrow.py │ ├── survey_examples.sage │ └── vertex_enumeration.py ├── multirow │ ├── __init__.py │ ├── equivariant-iii-remark-2-13.sage │ ├── lifting_region.sage │ └── piecewise_functions.sage └── spam │ ├── __init__.py │ ├── basic_semialgebraic.py │ ├── basic_semialgebraic_formal_closure.py │ ├── basic_semialgebraic_formal_relint.py │ ├── basic_semialgebraic_groebner_basis.py │ ├── basic_semialgebraic_intersection.py │ ├── basic_semialgebraic_linear_system.py │ ├── basic_semialgebraic_local.py │ ├── big_cells.py │ ├── big_cells_impl.py │ ├── examples │ ├── __init__.py │ └── relu.py │ ├── formulation.py │ ├── parametric_real_field_element.py │ ├── polyhedral_complex.py │ ├── real_set.py │ ├── semialgebraic_maple.py │ ├── semialgebraic_mathematica.py │ ├── semialgebraic_predicate.py │ └── semialgebraic_qepcad.py ├── demo.ipynb ├── demo.rst ├── docs ├── Makefile ├── source │ ├── authors_thanks.rst │ ├── conf.py │ ├── dff.rst │ ├── extreme_functions.rst │ ├── gomory_johnson_1972_II.png │ ├── how_to_run.rst │ ├── igp.rst │ ├── index.rst │ ├── kzh_crazy_table_head.png │ ├── license.rst │ ├── multirow.rst │ ├── procedures.rst │ ├── procedures_injective_2_slope_fill_in_proof.rst │ └── zzz_bib.rst └── themes │ └── sage │ ├── layout.html │ ├── search.html │ ├── static │ ├── README │ ├── favicon.ico │ ├── mathjax_sage.js_t │ ├── sage.css_t │ ├── sageicon.png │ ├── sagelogo.png │ ├── thebe_status_field.css │ └── thebe_status_field.js │ ├── thebe.html │ └── theme.conf ├── environment.yml ├── extra ├── attach_all.sage ├── lifting_project_debug.sage ├── multirow │ ├── fine_regular_triangulation_examples.sage │ ├── fxn-on-complex-matrix.sage │ ├── fxn-on-complex.sage │ ├── fxn-on-complex_grid.sage │ ├── lifting_region_examples.sage │ ├── minimal_lifting_affine_examples.sage │ └── polyhedral.sage ├── old_examples │ ├── 3_slope_function.sage │ ├── 3_slope_function_needing_symmetry_reflection.sage │ ├── GMI.sage │ ├── GMI_irrational.sage │ ├── README.md │ ├── irrational_function.sage │ ├── irrational_function_larger_t1_t2.sage │ ├── irrational_function_rational.sage │ ├── irrational_function_t1_t2_t3.sage │ ├── irrational_function_t1_t2_t3_dense_on_subintervals_only.sage │ ├── irrational_function_t1_t2_t3_general_numberfield.sage │ ├── irrational_function_t1_t2_t3_rational.sage │ ├── irrational_function_t1_t2_t3_symbolic.sage │ ├── irrational_function_t1_t2_t3_x.sage │ ├── irrational_function_t1_t2_t3_y.sage │ ├── irrational_function_t1_t2_t3_z.sage │ └── irrational_function_t1_t2_t3_zz.sage ├── param_icms_abstract_examples.sage ├── parametric_linear_independence.sage └── show_plot_zoom.sage ├── pyproject.toml ├── requirements.txt ├── sage_version.py ├── setup.py ├── survey_graphics ├── .gitignore ├── Makefile ├── README.md ├── all_graphics.tex ├── all_graphics_good.pdf ├── all_graphics_good.tex ├── crazy_perturbation_graphics │ └── crazy_perturbation_graphics.tex ├── dff_graphics.sage ├── emit_sage_commands.sage ├── extreme_notes_graphics │ ├── extreme_notes_graphics.tex │ └── extreme_notes_graphics_good.pdf ├── graphics_for_algo_paper.sage ├── graphics_for_algo_paper_face_sampling.sage ├── graphics_for_algo_paper_functions.sage ├── graphics_for_algo_paper_init.sage ├── graphics_for_algo_paper_moves.sage ├── graphics_for_algo_paper_strip_lemma.sage ├── graphics_for_computer_based_search.sage ├── graphics_for_crazy_perturbation.sage ├── graphics_for_extreme_notes.sage ├── graphics_for_facets_paper.sage ├── graphics_for_facets_slides.sage ├── graphics_for_lifting_project.sage ├── graphics_for_software_paper.sage ├── graphics_for_survey.sage ├── graphics_for_survey_bccz.sage ├── graphics_for_survey_poset.sage ├── mip_notes_graphics │ ├── mip_notes_graphics.tex │ └── sage-commands-mip-notes.tex ├── software_paper_graphics │ └── software_paper_graphics.tex ├── survey_graphics │ ├── compendium_graphics.tex │ ├── compendium_graphics_good.pdf │ ├── survey_graphics.tex │ └── survey_graphics_good.pdf ├── tab_functions.sage ├── tab_hildebrand_discont_3_slope_1.sage ├── tab_hildebrand_discont_3_slope_1_finite_system.sage ├── tab_kzh_minimal_has_only_crazy_perturbation_1.sage ├── tab_kzh_minimal_has_only_crazy_perturbation_1_delta_pi.sage └── tab_kzh_minimal_has_only_crazy_perturbation_1_finite_system.sage └── tox.ini /.check-long-timings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.check-long-timings.json -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/CI-check-bib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.github/workflows/CI-check-bib.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis-conda-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis-conda-install.sh -------------------------------------------------------------------------------- /.travis-deploy-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis-deploy-doc.sh -------------------------------------------------------------------------------- /.travis-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis-install.sh -------------------------------------------------------------------------------- /.travis-quick-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis-quick-test.sh -------------------------------------------------------------------------------- /.travis-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis-test.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis_ci_gh_pages_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/.travis_ci_gh_pages_deploy_key.enc -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/README.rst -------------------------------------------------------------------------------- /THANKS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/THANKS.rst -------------------------------------------------------------------------------- /_doctest_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/_doctest_environment.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/Gomory_conversion.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/Gomory_conversion.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/computer_based_search_naive_dff.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/computer_based_search_naive_dff.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/dff_functions.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/dff_functions.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/dff_test_plot.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/dff_test_plot.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/discontinuous_dff.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/discontinuous_dff.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/dff/gdff_linear_test.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/dff/gdff_linear_test.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/2q_mip.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/2q_mip.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/animation_2d_diagram.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/animation_2d_diagram.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/bug_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/bug_examples.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/class_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/class_call.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/compendium_procedures.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/compendium_procedures.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/continuous_case.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/continuous_case.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/crazy_perturbation.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/crazy_perturbation.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/crazy_perturbation_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/crazy_perturbation_examples.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/discontinuous_case.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/discontinuous_case.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/discrete_case.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/discrete_case.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/extreme_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/extreme_functions.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/extreme_functions_in_literature.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/extreme_functions_in_literature.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/extreme_functions_mlr_cpl3.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/extreme_functions_mlr_cpl3.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/extreme_functions_sporadic.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/extreme_functions_sporadic.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/fast_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/fast_linear.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/fast_piecewise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/fast_piecewise.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/faster_subadditivity_test.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/faster_subadditivity_test.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/faster_subadditivity_test_discontinuous.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/faster_subadditivity_test_discontinuous.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/functions.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/functions.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/intervals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/intervals.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/kslope_mip.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/kslope_mip.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/kslope_pattern.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/kslope_pattern.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/kslope_ppl_mip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/kslope_ppl_mip.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/lifting_project.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/lifting_project.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/logging.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/logging.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/move_semigroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/move_semigroup.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/parametric.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/parametric.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/parametric_cpl.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/parametric_cpl.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/parametric_family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/parametric_family.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/plot_options.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/plot_options.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/procedures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/procedures/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/procedures/injective_2_slope_fill_in_proof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/procedures/injective_2_slope_fill_in_proof.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/quasi_periodic.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/quasi_periodic.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/real_number_field.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/real_number_field.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/simple_extremality_test.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/simple_extremality_test.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/subadditivity_slack_diagrams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/subadditivity_slack_diagrams/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/subadditivity_slack_diagrams/limit_arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/subadditivity_slack_diagrams/limit_arrow.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/survey_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/survey_examples.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/igp/vertex_enumeration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/igp/vertex_enumeration.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/multirow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/multirow/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/multirow/equivariant-iii-remark-2-13.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/multirow/equivariant-iii-remark-2-13.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/multirow/lifting_region.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/multirow/lifting_region.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/multirow/piecewise_functions.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/multirow/piecewise_functions.sage -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic_formal_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic_formal_closure.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic_formal_relint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic_formal_relint.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic_groebner_basis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic_groebner_basis.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic_intersection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic_intersection.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic_linear_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic_linear_system.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/basic_semialgebraic_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/basic_semialgebraic_local.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/big_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/big_cells.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/big_cells_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/big_cells_impl.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/examples/__init__.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/examples/relu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/examples/relu.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/formulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/formulation.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/parametric_real_field_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/parametric_real_field_element.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/polyhedral_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/polyhedral_complex.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/real_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/real_set.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/semialgebraic_maple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/semialgebraic_maple.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/semialgebraic_mathematica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/semialgebraic_mathematica.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/semialgebraic_predicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/semialgebraic_predicate.py -------------------------------------------------------------------------------- /cutgeneratingfunctionology/spam/semialgebraic_qepcad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/cutgeneratingfunctionology/spam/semialgebraic_qepcad.py -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/demo.ipynb -------------------------------------------------------------------------------- /demo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/demo.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/authors_thanks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/authors_thanks.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/dff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/dff.rst -------------------------------------------------------------------------------- /docs/source/extreme_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/extreme_functions.rst -------------------------------------------------------------------------------- /docs/source/gomory_johnson_1972_II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/gomory_johnson_1972_II.png -------------------------------------------------------------------------------- /docs/source/how_to_run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/how_to_run.rst -------------------------------------------------------------------------------- /docs/source/igp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/igp.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/kzh_crazy_table_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/kzh_crazy_table_head.png -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/multirow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/multirow.rst -------------------------------------------------------------------------------- /docs/source/procedures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/procedures.rst -------------------------------------------------------------------------------- /docs/source/procedures_injective_2_slope_fill_in_proof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/procedures_injective_2_slope_fill_in_proof.rst -------------------------------------------------------------------------------- /docs/source/zzz_bib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/source/zzz_bib.rst -------------------------------------------------------------------------------- /docs/themes/sage/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/layout.html -------------------------------------------------------------------------------- /docs/themes/sage/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/search.html -------------------------------------------------------------------------------- /docs/themes/sage/static/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/README -------------------------------------------------------------------------------- /docs/themes/sage/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/favicon.ico -------------------------------------------------------------------------------- /docs/themes/sage/static/mathjax_sage.js_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/mathjax_sage.js_t -------------------------------------------------------------------------------- /docs/themes/sage/static/sage.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/sage.css_t -------------------------------------------------------------------------------- /docs/themes/sage/static/sageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/sageicon.png -------------------------------------------------------------------------------- /docs/themes/sage/static/sagelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/sagelogo.png -------------------------------------------------------------------------------- /docs/themes/sage/static/thebe_status_field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/thebe_status_field.css -------------------------------------------------------------------------------- /docs/themes/sage/static/thebe_status_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/static/thebe_status_field.js -------------------------------------------------------------------------------- /docs/themes/sage/thebe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/thebe.html -------------------------------------------------------------------------------- /docs/themes/sage/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/docs/themes/sage/theme.conf -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/environment.yml -------------------------------------------------------------------------------- /extra/attach_all.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/attach_all.sage -------------------------------------------------------------------------------- /extra/lifting_project_debug.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/lifting_project_debug.sage -------------------------------------------------------------------------------- /extra/multirow/fine_regular_triangulation_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/fine_regular_triangulation_examples.sage -------------------------------------------------------------------------------- /extra/multirow/fxn-on-complex-matrix.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/fxn-on-complex-matrix.sage -------------------------------------------------------------------------------- /extra/multirow/fxn-on-complex.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/fxn-on-complex.sage -------------------------------------------------------------------------------- /extra/multirow/fxn-on-complex_grid.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/fxn-on-complex_grid.sage -------------------------------------------------------------------------------- /extra/multirow/lifting_region_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/lifting_region_examples.sage -------------------------------------------------------------------------------- /extra/multirow/minimal_lifting_affine_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/minimal_lifting_affine_examples.sage -------------------------------------------------------------------------------- /extra/multirow/polyhedral.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/multirow/polyhedral.sage -------------------------------------------------------------------------------- /extra/old_examples/3_slope_function.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/3_slope_function.sage -------------------------------------------------------------------------------- /extra/old_examples/3_slope_function_needing_symmetry_reflection.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/3_slope_function_needing_symmetry_reflection.sage -------------------------------------------------------------------------------- /extra/old_examples/GMI.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/GMI.sage -------------------------------------------------------------------------------- /extra/old_examples/GMI_irrational.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/GMI_irrational.sage -------------------------------------------------------------------------------- /extra/old_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/README.md -------------------------------------------------------------------------------- /extra/old_examples/irrational_function.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_larger_t1_t2.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_larger_t1_t2.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_rational.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_rational.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_dense_on_subintervals_only.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_dense_on_subintervals_only.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_general_numberfield.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_general_numberfield.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_rational.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_rational.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_symbolic.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_symbolic.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_x.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_x.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_y.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_y.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_z.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_z.sage -------------------------------------------------------------------------------- /extra/old_examples/irrational_function_t1_t2_t3_zz.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/old_examples/irrational_function_t1_t2_t3_zz.sage -------------------------------------------------------------------------------- /extra/param_icms_abstract_examples.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/param_icms_abstract_examples.sage -------------------------------------------------------------------------------- /extra/parametric_linear_independence.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/parametric_linear_independence.sage -------------------------------------------------------------------------------- /extra/show_plot_zoom.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/extra/show_plot_zoom.sage -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/requirements.txt -------------------------------------------------------------------------------- /sage_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/sage_version.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/setup.py -------------------------------------------------------------------------------- /survey_graphics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/.gitignore -------------------------------------------------------------------------------- /survey_graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/Makefile -------------------------------------------------------------------------------- /survey_graphics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/README.md -------------------------------------------------------------------------------- /survey_graphics/all_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/all_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/all_graphics_good.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/all_graphics_good.pdf -------------------------------------------------------------------------------- /survey_graphics/all_graphics_good.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/all_graphics_good.tex -------------------------------------------------------------------------------- /survey_graphics/crazy_perturbation_graphics/crazy_perturbation_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/crazy_perturbation_graphics/crazy_perturbation_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/dff_graphics.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/dff_graphics.sage -------------------------------------------------------------------------------- /survey_graphics/emit_sage_commands.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/emit_sage_commands.sage -------------------------------------------------------------------------------- /survey_graphics/extreme_notes_graphics/extreme_notes_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/extreme_notes_graphics/extreme_notes_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/extreme_notes_graphics/extreme_notes_graphics_good.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/extreme_notes_graphics/extreme_notes_graphics_good.pdf -------------------------------------------------------------------------------- /survey_graphics/graphics_for_algo_paper.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_algo_paper.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_algo_paper_face_sampling.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_algo_paper_face_sampling.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_algo_paper_functions.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_algo_paper_functions.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_algo_paper_init.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_algo_paper_init.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_algo_paper_moves.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_algo_paper_moves.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_algo_paper_strip_lemma.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_algo_paper_strip_lemma.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_computer_based_search.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_computer_based_search.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_crazy_perturbation.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_crazy_perturbation.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_extreme_notes.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_extreme_notes.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_facets_paper.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_facets_paper.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_facets_slides.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_facets_slides.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_lifting_project.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_lifting_project.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_software_paper.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_software_paper.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_survey.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_survey.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_survey_bccz.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_survey_bccz.sage -------------------------------------------------------------------------------- /survey_graphics/graphics_for_survey_poset.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/graphics_for_survey_poset.sage -------------------------------------------------------------------------------- /survey_graphics/mip_notes_graphics/mip_notes_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/mip_notes_graphics/mip_notes_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/mip_notes_graphics/sage-commands-mip-notes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/mip_notes_graphics/sage-commands-mip-notes.tex -------------------------------------------------------------------------------- /survey_graphics/software_paper_graphics/software_paper_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/software_paper_graphics/software_paper_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/survey_graphics/compendium_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/survey_graphics/compendium_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/survey_graphics/compendium_graphics_good.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/survey_graphics/compendium_graphics_good.pdf -------------------------------------------------------------------------------- /survey_graphics/survey_graphics/survey_graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/survey_graphics/survey_graphics.tex -------------------------------------------------------------------------------- /survey_graphics/survey_graphics/survey_graphics_good.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/survey_graphics/survey_graphics_good.pdf -------------------------------------------------------------------------------- /survey_graphics/tab_functions.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/tab_functions.sage -------------------------------------------------------------------------------- /survey_graphics/tab_hildebrand_discont_3_slope_1.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/tab_hildebrand_discont_3_slope_1.sage -------------------------------------------------------------------------------- /survey_graphics/tab_hildebrand_discont_3_slope_1_finite_system.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/tab_hildebrand_discont_3_slope_1_finite_system.sage -------------------------------------------------------------------------------- /survey_graphics/tab_kzh_minimal_has_only_crazy_perturbation_1.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/tab_kzh_minimal_has_only_crazy_perturbation_1.sage -------------------------------------------------------------------------------- /survey_graphics/tab_kzh_minimal_has_only_crazy_perturbation_1_delta_pi.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/tab_kzh_minimal_has_only_crazy_perturbation_1_delta_pi.sage -------------------------------------------------------------------------------- /survey_graphics/tab_kzh_minimal_has_only_crazy_perturbation_1_finite_system.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/survey_graphics/tab_kzh_minimal_has_only_crazy_perturbation_1_finite_system.sage -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkoeppe/cutgeneratingfunctionology/HEAD/tox.ini --------------------------------------------------------------------------------