├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── bug-report.yml └── workflows │ ├── binder.yml │ ├── docs.yml │ ├── examples.yml │ ├── flake8.yml │ ├── pytest.yml │ ├── release.yml │ └── ruff.yml ├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conftest.py ├── examples ├── 01_basic_example.ipynb ├── 02_correlators.ipynb ├── 03_pcac_example.ipynb ├── 04_fit_example.ipynb ├── 05_matrix_operations.ipynb ├── 06_gevp.ipynb ├── 07_data_management.ipynb ├── 08_combined_fit_example.ipynb ├── base_style.mplstyle ├── data │ ├── correlator_test.json.gz │ ├── f_A.json.gz │ ├── f_P.json.gz │ ├── matrix_correlator.json.gz │ ├── matrix_correlator_V1V1.json.gz │ ├── matrix_correlator_V2V2.json.gz │ └── matrix_correlator_V3V3.json.gz └── json_schema.json ├── pyerrors ├── __init__.py ├── correlators.py ├── covobs.py ├── dirac.py ├── fits.py ├── input │ ├── __init__.py │ ├── bdio.py │ ├── dobs.py │ ├── hadrons.py │ ├── json.py │ ├── misc.py │ ├── openQCD.py │ ├── pandas.py │ ├── sfcf.py │ └── utils.py ├── integrate.py ├── linalg.py ├── misc.py ├── mpm.py ├── obs.py ├── roots.py ├── special.py └── version.py ├── pyproject.toml ├── setup.py └── tests ├── benchmark_test.py ├── correlators_test.py ├── covobs_test.py ├── data ├── compute_drho_fails.json.gz ├── openqcd_test │ ├── ms5_xsf_T24L16r1.ms5_xsf_dd.dat │ ├── ms5_xsf_T24L16r2.ms5_xsf_dd.dat │ ├── ms5_xsf_T24L16r3.ms5_xsf_dd.dat │ ├── openqcd2r1.ms.dat │ ├── openqcd2r1.ms1.dat │ ├── sfqcdr1.gfms.dat │ └── sfqcdr1.rwms.dat ├── sfcf_test │ ├── broken_data_c │ │ └── data_c_r0 │ │ │ └── data_c_r0_n1 │ ├── data_a │ │ ├── data_a_r0.F_V0 │ │ ├── data_a_r0.f_1 │ │ └── data_a_r0.f_A │ ├── data_ah │ │ ├── data_ah_r0.F_V0 │ │ ├── data_ah_r0.f_1 │ │ └── data_ah_r0.f_A │ ├── data_apf │ │ ├── data_apf_r0.F_V0 │ │ ├── data_apf_r0.f_1 │ │ └── data_apf_r0.f_A │ ├── data_c │ │ └── data_c_r0 │ │ │ └── data_c_r0_n1 │ ├── data_o │ │ └── test_r0 │ │ │ └── cfg1 │ │ │ ├── F_V0 │ │ │ ├── f_1 │ │ │ └── f_A │ └── param │ │ ├── out.out │ │ ├── parameters_a │ │ ├── parameters_c │ │ └── parameters_o └── test_matrix_corr.json.gz ├── dirac_test.py ├── fits_test.py ├── integrate_test.py ├── json_io_test.py ├── linalg_test.py ├── misc_test.py ├── mpm_test.py ├── obs_test.py ├── openQCD_in_test.py ├── pandas_test.py ├── roots_test.py ├── sfcf_in_test.py ├── special_test.py └── utils_in_test.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/workflows/binder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/binder.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ruff.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.github/workflows/ruff.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/01_basic_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/01_basic_example.ipynb -------------------------------------------------------------------------------- /examples/02_correlators.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/02_correlators.ipynb -------------------------------------------------------------------------------- /examples/03_pcac_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/03_pcac_example.ipynb -------------------------------------------------------------------------------- /examples/04_fit_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/04_fit_example.ipynb -------------------------------------------------------------------------------- /examples/05_matrix_operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/05_matrix_operations.ipynb -------------------------------------------------------------------------------- /examples/06_gevp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/06_gevp.ipynb -------------------------------------------------------------------------------- /examples/07_data_management.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/07_data_management.ipynb -------------------------------------------------------------------------------- /examples/08_combined_fit_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/08_combined_fit_example.ipynb -------------------------------------------------------------------------------- /examples/base_style.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/base_style.mplstyle -------------------------------------------------------------------------------- /examples/data/correlator_test.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/correlator_test.json.gz -------------------------------------------------------------------------------- /examples/data/f_A.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/f_A.json.gz -------------------------------------------------------------------------------- /examples/data/f_P.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/f_P.json.gz -------------------------------------------------------------------------------- /examples/data/matrix_correlator.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/matrix_correlator.json.gz -------------------------------------------------------------------------------- /examples/data/matrix_correlator_V1V1.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/matrix_correlator_V1V1.json.gz -------------------------------------------------------------------------------- /examples/data/matrix_correlator_V2V2.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/matrix_correlator_V2V2.json.gz -------------------------------------------------------------------------------- /examples/data/matrix_correlator_V3V3.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/data/matrix_correlator_V3V3.json.gz -------------------------------------------------------------------------------- /examples/json_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/examples/json_schema.json -------------------------------------------------------------------------------- /pyerrors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/__init__.py -------------------------------------------------------------------------------- /pyerrors/correlators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/correlators.py -------------------------------------------------------------------------------- /pyerrors/covobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/covobs.py -------------------------------------------------------------------------------- /pyerrors/dirac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/dirac.py -------------------------------------------------------------------------------- /pyerrors/fits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/fits.py -------------------------------------------------------------------------------- /pyerrors/input/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/__init__.py -------------------------------------------------------------------------------- /pyerrors/input/bdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/bdio.py -------------------------------------------------------------------------------- /pyerrors/input/dobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/dobs.py -------------------------------------------------------------------------------- /pyerrors/input/hadrons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/hadrons.py -------------------------------------------------------------------------------- /pyerrors/input/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/json.py -------------------------------------------------------------------------------- /pyerrors/input/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/misc.py -------------------------------------------------------------------------------- /pyerrors/input/openQCD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/openQCD.py -------------------------------------------------------------------------------- /pyerrors/input/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/pandas.py -------------------------------------------------------------------------------- /pyerrors/input/sfcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/sfcf.py -------------------------------------------------------------------------------- /pyerrors/input/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/input/utils.py -------------------------------------------------------------------------------- /pyerrors/integrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/integrate.py -------------------------------------------------------------------------------- /pyerrors/linalg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/linalg.py -------------------------------------------------------------------------------- /pyerrors/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/misc.py -------------------------------------------------------------------------------- /pyerrors/mpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/mpm.py -------------------------------------------------------------------------------- /pyerrors/obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/obs.py -------------------------------------------------------------------------------- /pyerrors/roots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/roots.py -------------------------------------------------------------------------------- /pyerrors/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyerrors/special.py -------------------------------------------------------------------------------- /pyerrors/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.17.0-dev" 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/setup.py -------------------------------------------------------------------------------- /tests/benchmark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/benchmark_test.py -------------------------------------------------------------------------------- /tests/correlators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/correlators_test.py -------------------------------------------------------------------------------- /tests/covobs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/covobs_test.py -------------------------------------------------------------------------------- /tests/data/compute_drho_fails.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/compute_drho_fails.json.gz -------------------------------------------------------------------------------- /tests/data/openqcd_test/ms5_xsf_T24L16r1.ms5_xsf_dd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/ms5_xsf_T24L16r1.ms5_xsf_dd.dat -------------------------------------------------------------------------------- /tests/data/openqcd_test/ms5_xsf_T24L16r2.ms5_xsf_dd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/ms5_xsf_T24L16r2.ms5_xsf_dd.dat -------------------------------------------------------------------------------- /tests/data/openqcd_test/ms5_xsf_T24L16r3.ms5_xsf_dd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/ms5_xsf_T24L16r3.ms5_xsf_dd.dat -------------------------------------------------------------------------------- /tests/data/openqcd_test/openqcd2r1.ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/openqcd2r1.ms.dat -------------------------------------------------------------------------------- /tests/data/openqcd_test/openqcd2r1.ms1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/openqcd2r1.ms1.dat -------------------------------------------------------------------------------- /tests/data/openqcd_test/sfqcdr1.gfms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/sfqcdr1.gfms.dat -------------------------------------------------------------------------------- /tests/data/openqcd_test/sfqcdr1.rwms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/openqcd_test/sfqcdr1.rwms.dat -------------------------------------------------------------------------------- /tests/data/sfcf_test/broken_data_c/data_c_r0/data_c_r0_n1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/broken_data_c/data_c_r0/data_c_r0_n1 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_a/data_a_r0.F_V0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_a/data_a_r0.F_V0 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_a/data_a_r0.f_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_a/data_a_r0.f_1 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_a/data_a_r0.f_A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_a/data_a_r0.f_A -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_ah/data_ah_r0.F_V0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_ah/data_ah_r0.F_V0 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_ah/data_ah_r0.f_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_ah/data_ah_r0.f_1 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_ah/data_ah_r0.f_A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_ah/data_ah_r0.f_A -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_apf/data_apf_r0.F_V0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_apf/data_apf_r0.F_V0 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_apf/data_apf_r0.f_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_apf/data_apf_r0.f_1 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_apf/data_apf_r0.f_A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_apf/data_apf_r0.f_A -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_c/data_c_r0/data_c_r0_n1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_c/data_c_r0/data_c_r0_n1 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_o/test_r0/cfg1/F_V0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_o/test_r0/cfg1/F_V0 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_o/test_r0/cfg1/f_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_o/test_r0/cfg1/f_1 -------------------------------------------------------------------------------- /tests/data/sfcf_test/data_o/test_r0/cfg1/f_A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/data_o/test_r0/cfg1/f_A -------------------------------------------------------------------------------- /tests/data/sfcf_test/param/out.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/param/out.out -------------------------------------------------------------------------------- /tests/data/sfcf_test/param/parameters_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/param/parameters_a -------------------------------------------------------------------------------- /tests/data/sfcf_test/param/parameters_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/param/parameters_c -------------------------------------------------------------------------------- /tests/data/sfcf_test/param/parameters_o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/sfcf_test/param/parameters_o -------------------------------------------------------------------------------- /tests/data/test_matrix_corr.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/data/test_matrix_corr.json.gz -------------------------------------------------------------------------------- /tests/dirac_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/dirac_test.py -------------------------------------------------------------------------------- /tests/fits_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/fits_test.py -------------------------------------------------------------------------------- /tests/integrate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/integrate_test.py -------------------------------------------------------------------------------- /tests/json_io_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/json_io_test.py -------------------------------------------------------------------------------- /tests/linalg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/linalg_test.py -------------------------------------------------------------------------------- /tests/misc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/misc_test.py -------------------------------------------------------------------------------- /tests/mpm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/mpm_test.py -------------------------------------------------------------------------------- /tests/obs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/obs_test.py -------------------------------------------------------------------------------- /tests/openQCD_in_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/openQCD_in_test.py -------------------------------------------------------------------------------- /tests/pandas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/pandas_test.py -------------------------------------------------------------------------------- /tests/roots_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/roots_test.py -------------------------------------------------------------------------------- /tests/sfcf_in_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/sfcf_in_test.py -------------------------------------------------------------------------------- /tests/special_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/special_test.py -------------------------------------------------------------------------------- /tests/utils_in_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fjosw/pyerrors/HEAD/tests/utils_in_test.py --------------------------------------------------------------------------------