├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── auto-changelog-generator.yml │ ├── coverage.yml │ ├── nox.yml │ ├── pythonpublish.yml │ ├── toc.yaml │ └── typeguard.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .zenodo.json ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── adaptive ├── __init__.py ├── _types.py ├── _version.py ├── learner │ ├── __init__.py │ ├── average_learner.py │ ├── average_learner1D.py │ ├── balancing_learner.py │ ├── base_learner.py │ ├── data_saver.py │ ├── integrator_coeffs.py │ ├── integrator_learner.py │ ├── learner1D.py │ ├── learner2D.py │ ├── learnerND.py │ ├── sequence_learner.py │ └── triangulation.py ├── notebook_integration.py ├── runner.py ├── tests │ ├── __init__.py │ ├── algorithm_4.py │ ├── test_average_learner.py │ ├── test_average_learner1d.py │ ├── test_balancing_learner.py │ ├── test_cquad.py │ ├── test_learner1d.py │ ├── test_learnernd.py │ ├── test_learners.py │ ├── test_notebook_integration.py │ ├── test_pickling.py │ ├── test_runner.py │ ├── test_sequence_learner.py │ ├── test_triangulation.py │ └── unit │ │ ├── __init__.py │ │ ├── test_learnernd.py │ │ ├── test_learnernd_integration.py │ │ └── test_triangulation.py ├── types.py └── utils.py ├── azure-pipelines.yml ├── benchmarks ├── README.md ├── asv.conf.json └── benchmarks │ ├── __init__.py │ └── benchmarks.py ├── docs ├── .gitignore ├── Makefile ├── environment.yml ├── logo.py └── source │ ├── CHANGELOG.md │ ├── _static │ ├── custom.css │ ├── example_uses │ │ ├── battle_for_majoranas.jpeg │ │ ├── quasi_majorana_paper.jpeg │ │ ├── spin_orbit_paper.jpeg │ │ └── zigzag_paper.jpeg │ ├── js │ │ └── theme.js │ ├── logo.png │ └── logo_docs.png │ ├── _templates │ └── base.html │ ├── algorithms_and_examples.md │ ├── benchmarks.md │ ├── conf.py │ ├── docs.md │ ├── faq.md │ ├── gallery.md │ ├── index.md │ ├── logo.md │ ├── reference │ ├── adaptive.learner.average_learner.md │ ├── adaptive.learner.average_learner1D.md │ ├── adaptive.learner.balancing_learner.md │ ├── adaptive.learner.base_learner.md │ ├── adaptive.learner.data_saver.md │ ├── adaptive.learner.integrator_learner.md │ ├── adaptive.learner.learner1D.md │ ├── adaptive.learner.learner2D.md │ ├── adaptive.learner.learnerND.md │ ├── adaptive.learner.sequence_learner.md │ ├── adaptive.learner.triangulation.md │ ├── adaptive.md │ ├── adaptive.notebook_integration.md │ ├── adaptive.runner.AsyncRunner.md │ ├── adaptive.runner.BaseRunner.md │ ├── adaptive.runner.BlockingRunner.md │ ├── adaptive.runner.Runner.md │ ├── adaptive.runner.extras.md │ └── adaptive.utils.md │ └── tutorial │ ├── tutorial.AverageLearner.md │ ├── tutorial.AverageLearner1D.md │ ├── tutorial.BalancingLearner.md │ ├── tutorial.DataSaver.md │ ├── tutorial.IntegratorLearner.md │ ├── tutorial.Learner1D.md │ ├── tutorial.Learner2D.md │ ├── tutorial.LearnerND.md │ ├── tutorial.SequenceLearner.md │ ├── tutorial.advanced-topics.md │ ├── tutorial.custom_loss.md │ ├── tutorial.md │ └── tutorial.parallelism.md ├── environment.yml ├── example-notebook.ipynb ├── ipynb_filter.py ├── noxfile.py ├── pyproject.toml ├── readthedocs.yml └── setup.cfg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto-changelog-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/workflows/auto-changelog-generator.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/nox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/workflows/nox.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/workflows/pythonpublish.yml -------------------------------------------------------------------------------- /.github/workflows/toc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/workflows/toc.yaml -------------------------------------------------------------------------------- /.github/workflows/typeguard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.github/workflows/typeguard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/RELEASE.md -------------------------------------------------------------------------------- /adaptive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/__init__.py -------------------------------------------------------------------------------- /adaptive/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/_types.py -------------------------------------------------------------------------------- /adaptive/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/_version.py -------------------------------------------------------------------------------- /adaptive/learner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/__init__.py -------------------------------------------------------------------------------- /adaptive/learner/average_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/average_learner.py -------------------------------------------------------------------------------- /adaptive/learner/average_learner1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/average_learner1D.py -------------------------------------------------------------------------------- /adaptive/learner/balancing_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/balancing_learner.py -------------------------------------------------------------------------------- /adaptive/learner/base_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/base_learner.py -------------------------------------------------------------------------------- /adaptive/learner/data_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/data_saver.py -------------------------------------------------------------------------------- /adaptive/learner/integrator_coeffs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/integrator_coeffs.py -------------------------------------------------------------------------------- /adaptive/learner/integrator_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/integrator_learner.py -------------------------------------------------------------------------------- /adaptive/learner/learner1D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/learner1D.py -------------------------------------------------------------------------------- /adaptive/learner/learner2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/learner2D.py -------------------------------------------------------------------------------- /adaptive/learner/learnerND.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/learnerND.py -------------------------------------------------------------------------------- /adaptive/learner/sequence_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/sequence_learner.py -------------------------------------------------------------------------------- /adaptive/learner/triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/learner/triangulation.py -------------------------------------------------------------------------------- /adaptive/notebook_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/notebook_integration.py -------------------------------------------------------------------------------- /adaptive/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/runner.py -------------------------------------------------------------------------------- /adaptive/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adaptive/tests/algorithm_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/algorithm_4.py -------------------------------------------------------------------------------- /adaptive/tests/test_average_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_average_learner.py -------------------------------------------------------------------------------- /adaptive/tests/test_average_learner1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_average_learner1d.py -------------------------------------------------------------------------------- /adaptive/tests/test_balancing_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_balancing_learner.py -------------------------------------------------------------------------------- /adaptive/tests/test_cquad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_cquad.py -------------------------------------------------------------------------------- /adaptive/tests/test_learner1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_learner1d.py -------------------------------------------------------------------------------- /adaptive/tests/test_learnernd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_learnernd.py -------------------------------------------------------------------------------- /adaptive/tests/test_learners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_learners.py -------------------------------------------------------------------------------- /adaptive/tests/test_notebook_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_notebook_integration.py -------------------------------------------------------------------------------- /adaptive/tests/test_pickling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_pickling.py -------------------------------------------------------------------------------- /adaptive/tests/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_runner.py -------------------------------------------------------------------------------- /adaptive/tests/test_sequence_learner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_sequence_learner.py -------------------------------------------------------------------------------- /adaptive/tests/test_triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/test_triangulation.py -------------------------------------------------------------------------------- /adaptive/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adaptive/tests/unit/test_learnernd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/unit/test_learnernd.py -------------------------------------------------------------------------------- /adaptive/tests/unit/test_learnernd_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/unit/test_learnernd_integration.py -------------------------------------------------------------------------------- /adaptive/tests/unit/test_triangulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/tests/unit/test_triangulation.py -------------------------------------------------------------------------------- /adaptive/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/types.py -------------------------------------------------------------------------------- /adaptive/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/adaptive/utils.py -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/asv.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/benchmarks/asv.conf.json -------------------------------------------------------------------------------- /benchmarks/benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/benchmarks/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/benchmarks/benchmarks/benchmarks.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | source/_static/holoviews.* 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/logo.py -------------------------------------------------------------------------------- /docs/source/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ../../CHANGELOG.md 2 | -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/_static/example_uses/battle_for_majoranas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/example_uses/battle_for_majoranas.jpeg -------------------------------------------------------------------------------- /docs/source/_static/example_uses/quasi_majorana_paper.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/example_uses/quasi_majorana_paper.jpeg -------------------------------------------------------------------------------- /docs/source/_static/example_uses/spin_orbit_paper.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/example_uses/spin_orbit_paper.jpeg -------------------------------------------------------------------------------- /docs/source/_static/example_uses/zigzag_paper.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/example_uses/zigzag_paper.jpeg -------------------------------------------------------------------------------- /docs/source/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/js/theme.js -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/logo.png -------------------------------------------------------------------------------- /docs/source/_static/logo_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_static/logo_docs.png -------------------------------------------------------------------------------- /docs/source/_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/_templates/base.html -------------------------------------------------------------------------------- /docs/source/algorithms_and_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/algorithms_and_examples.md -------------------------------------------------------------------------------- /docs/source/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/benchmarks.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/docs.md -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/gallery.md -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/logo.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.average_learner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.average_learner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.average_learner1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.average_learner1D.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.balancing_learner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.balancing_learner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.base_learner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.base_learner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.data_saver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.data_saver.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.integrator_learner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.integrator_learner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.learner1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.learner1D.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.learner2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.learner2D.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.learnerND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.learnerND.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.sequence_learner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.sequence_learner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.learner.triangulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.learner.triangulation.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.notebook_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.notebook_integration.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.runner.AsyncRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.runner.AsyncRunner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.runner.BaseRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.runner.BaseRunner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.runner.BlockingRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.runner.BlockingRunner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.runner.Runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.runner.Runner.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.runner.extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.runner.extras.md -------------------------------------------------------------------------------- /docs/source/reference/adaptive.utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/reference/adaptive.utils.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.AverageLearner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.AverageLearner.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.AverageLearner1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.AverageLearner1D.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.BalancingLearner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.BalancingLearner.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.DataSaver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.DataSaver.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.IntegratorLearner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.IntegratorLearner.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.Learner1D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.Learner1D.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.Learner2D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.Learner2D.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.LearnerND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.LearnerND.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.SequenceLearner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.SequenceLearner.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.advanced-topics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.advanced-topics.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.custom_loss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.custom_loss.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.md -------------------------------------------------------------------------------- /docs/source/tutorial/tutorial.parallelism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/docs/source/tutorial/tutorial.parallelism.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/environment.yml -------------------------------------------------------------------------------- /example-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/example-notebook.ipynb -------------------------------------------------------------------------------- /ipynb_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/ipynb_filter.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/python-adaptive/adaptive/HEAD/setup.cfg --------------------------------------------------------------------------------