gitextract_5e844ro4/ ├── .coveragerc ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs/ │ ├── Makefile │ ├── index.html │ ├── requirements_1.txt │ └── source/ │ ├── _figures/ │ │ └── build.sh │ ├── _static/ │ │ └── css/ │ │ └── custom.css │ ├── conf.py │ ├── index.rst │ ├── modules/ │ │ └── root.rst │ └── notes/ │ ├── installation.rst │ ├── introduction.rst │ └── resources.rst ├── examples/ │ ├── exact_calculation_example.py │ ├── exact_marginal_contributions_example.py │ ├── multilinear_extension_example.py │ └── permutation_sampler_example.py ├── readthedocs.yml ├── setup.py ├── shapley/ │ ├── __init__.py │ ├── solution_concept.py │ ├── solvers/ │ │ ├── __init__.py │ │ ├── exact_enumeration.py │ │ ├── expected_marginal_contributions.py │ │ ├── multilinear_extension.py │ │ └── permutation_sampler.py │ └── version.py └── tests/ └── unit/ └── test_shapley.py