FitBenchmarking 1.0.0__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/.gitignore +6 -2
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/PKG-INFO +71 -21
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/README.md +7 -7
- fitbenchmarking-1.1.0/fitbenchmarking/cli/checkpoint_handler.py +374 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cli/main.py +55 -16
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/base_controller.py +50 -3
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/bumps_controller.py +37 -23
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/ceres_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/dfo_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/gofit_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/gradient_free_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/gsl_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/horace_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/levmar_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/lmfit_controller.py +30 -13
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/mantid_controller.py +34 -23
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/matlab_controller.py +1 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/matlab_curve_controller.py +1 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/matlab_opt_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/matlab_stats_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/minuit_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/nlopt_controller.py +2 -1
- fitbenchmarking-1.1.0/fitbenchmarking/controllers/paramonte_controller.py +93 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/ralfit_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/scipy_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/scipy_go_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/scipy_ls_controller.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/theseus_controller.py +2 -1
- fitbenchmarking-1.1.0/fitbenchmarking/core/fitting_benchmarking.py +588 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/core/results_output.py +280 -33
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/base_cost_func.py +1 -1
- fitbenchmarking-1.1.0/fitbenchmarking/cost_func/loglike_nlls_cost_func.py +114 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/nlls_base_cost_func.py +1 -1
- fitbenchmarking-1.1.0/fitbenchmarking/hessian/best_available_hessian.py +97 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/hessian/hessian_factory.py +7 -4
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/hessian/numdifftools_hessian.py +1 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/hessian/scipy_hessian.py +9 -3
- fitbenchmarking-1.1.0/fitbenchmarking/jacobian/best_available_jacobian.py +88 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/jacobian_factory.py +8 -5
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/base_parser.py +1 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/fitting_problem.py +2 -1
- fitbenchmarking-1.1.0/fitbenchmarking/parsing/hogben_parser.py +72 -0
- fitbenchmarking-1.1.0/fitbenchmarking/parsing/mantid_parser.py +20 -0
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/mantid_parser.py → fitbenchmarking-1.1.0/fitbenchmarking/parsing/mantiddev_parser.py +106 -15
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/parser_factory.py +3 -2
- fitbenchmarking-1.1.0/fitbenchmarking/results_processing/acc_table.py +38 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/results_processing/base_table.py +89 -28
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/results_processing/compare_table.py +14 -17
- fitbenchmarking-1.1.0/fitbenchmarking/results_processing/emissions_table.py +42 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/results_processing/fitting_report.py +20 -8
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/results_processing/local_min_table.py +14 -19
- fitbenchmarking-1.1.0/fitbenchmarking/results_processing/performance_profiler.py +586 -0
- fitbenchmarking-1.1.0/fitbenchmarking/results_processing/plots.py +314 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/results_processing/problem_summary_page.py +3 -1
- fitbenchmarking-1.1.0/fitbenchmarking/results_processing/runtime_table.py +34 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/results_processing/tables.py +50 -30
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/css/custom_style.css +7 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/css/main_style.css +2 -2
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/css/table_style.css +21 -2
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/fitting_report_template.html +14 -2
- fitbenchmarking-1.1.0/fitbenchmarking/templates/js/plotly.js +8 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/table.js +79 -6
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/problem_summary_page_template.html +11 -9
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/table_template.html +36 -6
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/checkpoint.py +4 -2
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/fitbm_result.py +130 -6
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/misc.py +2 -1
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/options.py +68 -23
- fitbenchmarking-1.1.0/pyproject.toml +150 -0
- FitBenchmarking-1.0.0/.codecarbon.config +0 -4
- FitBenchmarking-1.0.0/.coveragerc +0 -29
- FitBenchmarking-1.0.0/.github/ISSUE_TEMPLATE/bug_report.md +0 -21
- FitBenchmarking-1.0.0/.github/ISSUE_TEMPLATE/documentation_request.md +0 -13
- FitBenchmarking-1.0.0/.github/ISSUE_TEMPLATE/feature_request.md +0 -19
- FitBenchmarking-1.0.0/.github/ISSUE_TEMPLATE/testing.md +0 -19
- FitBenchmarking-1.0.0/.github/PULL_REQUEST_TEMPLATE.md +0 -18
- FitBenchmarking-1.0.0/.github/workflows/main.yml +0 -167
- FitBenchmarking-1.0.0/.github/workflows/nightly.yml +0 -32
- FitBenchmarking-1.0.0/.github/workflows/release.yml +0 -28
- FitBenchmarking-1.0.0/.idea/vcs.xml +0 -6
- FitBenchmarking-1.0.0/.pylintrc +0 -65
- FitBenchmarking-1.0.0/.readthedocs.yaml +0 -22
- FitBenchmarking-1.0.0/CITATION.cff +0 -99
- FitBenchmarking-1.0.0/Docker/BasicInstall/Dockerfile +0 -32
- FitBenchmarking-1.0.0/Docker/FullInstall/Dockerfile +0 -210
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/PKG-INFO +0 -45
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/SOURCES.txt +0 -945
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/dependency_links.txt +0 -1
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/entry_points.txt +0 -3
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/not-zip-safe +0 -1
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/requires.txt +0 -52
- FitBenchmarking-1.0.0/FitBenchmarking.egg-info/top_level.txt +0 -1
- FitBenchmarking-1.0.0/ci/linting_tests.sh +0 -14
- FitBenchmarking-1.0.0/ci/prep_and_tag_release.sh +0 -75
- FitBenchmarking-1.0.0/ci/system_tests.sh +0 -5
- FitBenchmarking-1.0.0/ci/system_tests_default.sh +0 -5
- FitBenchmarking-1.0.0/ci/unit_tests.sh +0 -17
- FitBenchmarking-1.0.0/ci/unit_tests_default.sh +0 -14
- FitBenchmarking-1.0.0/conftest.py +0 -42
- FitBenchmarking-1.0.0/docs/Makefile +0 -20
- FitBenchmarking-1.0.0/docs/README.md +0 -3
- FitBenchmarking-1.0.0/docs/concept_figure/concept.ini +0 -35
- FitBenchmarking-1.0.0/docs/concept_figure/data/BENNETT5.SIF +0 -458
- FitBenchmarking-1.0.0/docs/concept_figure/data/CERI651A.SIF +0 -594
- FitBenchmarking-1.0.0/docs/concept_figure/data/ENGINX193749_calibration_peak5.txt +0 -7
- FitBenchmarking-1.0.0/docs/concept_figure/data/Muon_HIFI_116891.txt +0 -7
- FitBenchmarking-1.0.0/docs/concept_figure/data/WISH17701_peak2.txt +0 -7
- FitBenchmarking-1.0.0/docs/concept_figure/data/data_files/ENGINX193749_calibration_spec651.txt +0 -10188
- FitBenchmarking-1.0.0/docs/concept_figure/data/data_files/HIFIgrouped_116891.txt +0 -995
- FitBenchmarking-1.0.0/docs/concept_figure/data/data_files/WISH17701_calibration_panel103_tube3.txt +0 -514
- FitBenchmarking-1.0.0/docs/images/AppendingPath.png +0 -0
- FitBenchmarking-1.0.0/docs/images/FitBenchmarkingConcept.png +0 -0
- FitBenchmarking-1.0.0/docs/images/FitBenchmarking_options_table.png +0 -0
- FitBenchmarking-1.0.0/docs/images/PathVariable.png +0 -0
- FitBenchmarking-1.0.0/docs/images/example_cmaps.png +0 -0
- FitBenchmarking-1.0.0/docs/images/example_plot.png +0 -0
- FitBenchmarking-1.0.0/docs/images/example_pp.png +0 -0
- FitBenchmarking-1.0.0/docs/images/example_table.png +0 -0
- FitBenchmarking-1.0.0/docs/images/lm-scipy_fit_for_GEM_peak_1_1.png +0 -0
- FitBenchmarking-1.0.0/docs/images/lmsder_fit_for_EVS14188-90_processed_Gaussian_peaks_1_1.png +0 -0
- FitBenchmarking-1.0.0/docs/images/nmsimplex2_fit_for_EVS14188-90_processed_Gaussian_peaks_1_1.png +0 -0
- FitBenchmarking-1.0.0/docs/images/recommended_perceptual_cmaps.png +0 -0
- FitBenchmarking-1.0.0/docs/images/recommended_sequential_cmaps.png +0 -0
- FitBenchmarking-1.0.0/docs/images/squash-and-merge.png +0 -0
- FitBenchmarking-1.0.0/docs/images/start_for_EVS14188-90_processed_Gaussian_peaks_1_1.png +0 -0
- FitBenchmarking-1.0.0/docs/make.bat +0 -36
- FitBenchmarking-1.0.0/docs/requirements.txt +0 -3
- FitBenchmarking-1.0.0/docs/source/_ext/algorithmcheckdocs.py +0 -77
- FitBenchmarking-1.0.0/docs/source/_ext/prettyprintvalue.py +0 -49
- FitBenchmarking-1.0.0/docs/source/_static/captions/Modified_AutoTranscript_FitBenchmarking_Tutorials-Choosing_your_options.vtt +0 -1148
- FitBenchmarking-1.0.0/docs/source/_static/captions/Modified_AutoTranscript_FitBenchmarking_Tutorials-Interpreting_FitBenchmarking_results.vtt +0 -536
- FitBenchmarking-1.0.0/docs/source/_static/captions/Modified_AutoTranscript_FitBenchmarking_Tutorials-Running_FitBenchmarking.vtt +0 -314
- FitBenchmarking-1.0.0/docs/source/_static/videos/FitBenchmarking_Tutorials-Choosing_your_options.mp4 +0 -0
- FitBenchmarking-1.0.0/docs/source/_static/videos/FitBenchmarking_Tutorials-Interpreting_FitBenchmarking_results.webm +0 -0
- FitBenchmarking-1.0.0/docs/source/_static/videos/FitBenchmarking_Tutorials-Running_FitBenchmarking.webm +0 -0
- FitBenchmarking-1.0.0/docs/source/concept/how.rst +0 -77
- FitBenchmarking-1.0.0/docs/source/concept/index.rst +0 -14
- FitBenchmarking-1.0.0/docs/source/concept/why.rst +0 -123
- FitBenchmarking-1.0.0/docs/source/conf.py +0 -230
- FitBenchmarking-1.0.0/docs/source/contributors/guidelines.rst +0 -54
- FitBenchmarking-1.0.0/docs/source/contributors/index.rst +0 -20
- FitBenchmarking-1.0.0/docs/source/contributors/install_instructions.rst +0 -39
- FitBenchmarking-1.0.0/docs/source/contributors/structure.rst +0 -201
- FitBenchmarking-1.0.0/docs/source/contributors/workflow.rst +0 -173
- FitBenchmarking-1.0.0/docs/source/extending/adding_data.rst +0 -48
- FitBenchmarking-1.0.0/docs/source/extending/controllers.rst +0 -117
- FitBenchmarking-1.0.0/docs/source/extending/cost_function.rst +0 -71
- FitBenchmarking-1.0.0/docs/source/extending/fitting_results.rst +0 -19
- FitBenchmarking-1.0.0/docs/source/extending/hessian_extend.rst +0 -55
- FitBenchmarking-1.0.0/docs/source/extending/index.rst +0 -20
- FitBenchmarking-1.0.0/docs/source/extending/jacobian_extend.rst +0 -63
- FitBenchmarking-1.0.0/docs/source/extending/options_extend.rst +0 -46
- FitBenchmarking-1.0.0/docs/source/extending/outputs/index.rst +0 -15
- FitBenchmarking-1.0.0/docs/source/extending/outputs/tables.rst +0 -47
- FitBenchmarking-1.0.0/docs/source/extending/outputs/templates.rst +0 -35
- FitBenchmarking-1.0.0/docs/source/extending/parsers.rst +0 -110
- FitBenchmarking-1.0.0/docs/source/index.rst +0 -27
- FitBenchmarking-1.0.0/docs/source/users/BenchmarkProblems.rst +0 -311
- FitBenchmarking-1.0.0/docs/source/users/algorithms/deriv_free.rst +0 -40
- FitBenchmarking-1.0.0/docs/source/users/algorithms/index.rst +0 -20
- FitBenchmarking-1.0.0/docs/source/users/algorithms/line_search.rst +0 -124
- FitBenchmarking-1.0.0/docs/source/users/algorithms/minimizer_types.rst +0 -60
- FitBenchmarking-1.0.0/docs/source/users/algorithms/trust_region.rst +0 -47
- FitBenchmarking-1.0.0/docs/source/users/checkpointing.rst +0 -50
- FitBenchmarking-1.0.0/docs/source/users/cost_func.rst +0 -42
- FitBenchmarking-1.0.0/docs/source/users/index.rst +0 -25
- FitBenchmarking-1.0.0/docs/source/users/install_instructions/externals.rst +0 -113
- FitBenchmarking-1.0.0/docs/source/users/install_instructions/fitbenchmarking.rst +0 -97
- FitBenchmarking-1.0.0/docs/source/users/install_instructions/index.rst +0 -21
- FitBenchmarking-1.0.0/docs/source/users/notes.rst +0 -59
- FitBenchmarking-1.0.0/docs/source/users/options/fitting_option.rst +0 -203
- FitBenchmarking-1.0.0/docs/source/users/options/hessian_option.rst +0 -85
- FitBenchmarking-1.0.0/docs/source/users/options/index.rst +0 -29
- FitBenchmarking-1.0.0/docs/source/users/options/jacobian_option.rst +0 -88
- FitBenchmarking-1.0.0/docs/source/users/options/logging_option.rst +0 -73
- FitBenchmarking-1.0.0/docs/source/users/options/minimizer_option.rst +0 -886
- FitBenchmarking-1.0.0/docs/source/users/options/output_option.rst +0 -144
- FitBenchmarking-1.0.0/docs/source/users/output/acc.rst +0 -9
- FitBenchmarking-1.0.0/docs/source/users/output/compare.rst +0 -9
- FitBenchmarking-1.0.0/docs/source/users/output/emissions.rst +0 -9
- FitBenchmarking-1.0.0/docs/source/users/output/fitting_report.rst +0 -26
- FitBenchmarking-1.0.0/docs/source/users/output/index.rst +0 -57
- FitBenchmarking-1.0.0/docs/source/users/output/local_min.rst +0 -9
- FitBenchmarking-1.0.0/docs/source/users/output/problem_summary_pages.rst +0 -39
- FitBenchmarking-1.0.0/docs/source/users/output/runtime.rst +0 -9
- FitBenchmarking-1.0.0/docs/source/users/problem_definition_files/cutest.rst +0 -78
- FitBenchmarking-1.0.0/docs/source/users/problem_definition_files/horace.rst +0 -177
- FitBenchmarking-1.0.0/docs/source/users/problem_definition_files/index.rst +0 -33
- FitBenchmarking-1.0.0/docs/source/users/problem_definition_files/multifit.rst +0 -63
- FitBenchmarking-1.0.0/docs/source/users/problem_definition_files/native.rst +0 -147
- FitBenchmarking-1.0.0/docs/source/users/problem_definition_files/nist.rst +0 -7
- FitBenchmarking-1.0.0/docs/source/users/running.rst +0 -89
- FitBenchmarking-1.0.0/docs/source/users/tests.rst +0 -58
- FitBenchmarking-1.0.0/docs/source/users/tutorials.rst +0 -94
- FitBenchmarking-1.0.0/examples/all_softwares.ini +0 -22
- FitBenchmarking-1.0.0/examples/benchmark_problems/CUTEst/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/CUTEst/PALMER6C.dat +0 -74
- FitBenchmarking-1.0.0/examples/benchmark_problems/CUTEst/PALMER7C.dat +0 -74
- FitBenchmarking-1.0.0/examples/benchmark_problems/CUTEst/PALMER8C.dat +0 -73
- FitBenchmarking-1.0.0/examples/benchmark_problems/CUTEst/VESUVIOLS.dat +0 -1085
- FitBenchmarking-1.0.0/examples/benchmark_problems/CUTEst/YFITU.dat +0 -73
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/CrystalField_Example1.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/CrystalField_Example2.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/CrystalField_Example3.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/CrystalField_Example4.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/CrystalField_Example5.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/CrystalField/data_files/NdOs2Al10_5K35meV_Ecut_0to3ang_bp15V1.txt +0 -222
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DIAMON2D.SIF +0 -9593
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DIAMON3D.SIF +0 -14287
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DIAMOND1.SIF +0 -9591
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DMN15102.SIF +0 -9595
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DMN15103.SIF +0 -9750
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DMN15332.SIF +0 -9595
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DMN15333.SIF +0 -9753
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DMN37142.SIF +0 -9595
- FitBenchmarking-1.0.0/examples/benchmark_problems/DIAMOND_SIF/DMN37143.SIF +0 -9753
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/META.txt +0 -5
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/data_files/lorentz3d.txt +0 -1001
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/data_files/noisy_lorentz3d.txt +0 -1001
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/data_files/noisy_simplified_anac.txt +0 -101
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/data_files/simplified_anac.txt +0 -101
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/functions/lorentz.py +0 -30
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/functions/simplified_anac.py +0 -28
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/lorentz.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/noisy_lorentz.txt +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/noisy_simplified_anac.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Data_Assimilation/simplified_anac.txt +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/1D_Gaussian_1.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/1D_Gaussian_2.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/1D_Gaussian_3.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/1D_Gaussian_4.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/2D_Gaussian.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/3D_Gaussian.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/PCSMO_at_001_data.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/SQW_SQW_dispersion_relation.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/SQW_dispersion_relation.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/Tobyfit_test.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/data_files/dummy.txt +0 -1
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/data_files/testdata_multifit_1.mat +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/data_files/w1data_7.sqw +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/data_files/w2data_8.sqw +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/data_files/wdata1.mat +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/disp_bcc_hfm_fb_test.m +0 -15
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/gauss2d_fb_test.m +0 -40
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/gauss3d_fb_test.m +0 -48
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/gauss_fb_test.m +0 -55
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/linear2D_bg_fb_test.m +0 -24
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/linear3D_bg_fb_test.m +0 -22
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/linear_bg_fb_test.m +0 -21
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/linear_bkgd_fb_test.m +0 -22
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/mftest_gauss_bkgd_fb_test.m +0 -25
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/pcsmo_fb_test.m +0 -72
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/slow_func_fb_test.m +0 -31
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/spinw_mnf2_1dfit_fb_test.m +0 -62
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/spinw_mnf2_fit_fb_test.m +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/sqw_bcc_hfm_fb_test.m +0 -21
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/sqw_bcc_hfm_no_bkgd_fb_test.m +0 -20
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/sqw_constant_fb_test.m +0 -15
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/testfunc_bkgd_fb_test.m +0 -22
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/testfunc_nb_disp_fb_test.m +0 -34
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/functions/testfunc_nb_sqw_fb_test.m +0 -13
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_IX_1D_test1.m +0 -13
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_IX_1D_test2.m +0 -13
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_IX_1D_test3.m +0 -13
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_IX_1D_test4.m +0 -17
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_IX_1D_test5.m +0 -17
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_IX_1D_test6.m +0 -17
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_pcsmo_test.m +0 -31
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_pcsmo_test_parallel.m +0 -43
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_sqw_test7.m +0 -20
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_sqw_test8.m +0 -17
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/simulate_functions/fb_simulate_tobyfit_test.m +0 -26
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_IX_1D_test1.m +0 -16
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_IX_1D_test2.m +0 -15
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_IX_1D_test3.m +0 -15
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_IX_1D_test4.m +0 -31
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_IX_1D_test5.m +0 -30
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_IX_1D_test6.m +0 -32
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_pcsmo_test.m +0 -30
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_sqw_test7.m +0 -15
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_sqw_test8.m +0 -15
- FitBenchmarking-1.0.0/examples/benchmark_problems/Horace/m_scripts/wye_functions/fb_wye_tobyfit_test.m +0 -19
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/MUSR62260.txt +0 -9
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/basic_multifit.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/data_files/MUSR62260_bkwd.txt +0 -2014
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/data_files/MUSR62260_bottom.txt +0 -2014
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/data_files/MUSR62260_fwd.txt +0 -2014
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/data_files/MUSR62260_top.txt +0 -2014
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/data_files/basic1.txt +0 -20
- FitBenchmarking-1.0.0/examples/benchmark_problems/MultiFit/data_files/basic2.txt +0 -20
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/Muon_67068_coadd_67108_long.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/Muon_EMU_73673.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/Muon_HIFI_113856.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/Muon_HIFI_116891.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/data_files/EMU_116891_long.txt +0 -988
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/data_files/EMU_67068_coadd_67108.txt +0 -988
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/data_files/HIFIgrouped_113856.txt +0 -995
- FitBenchmarking-1.0.0/examples/benchmark_problems/Muon/data_files/HIFIgrouped_116891.txt +0 -995
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/Gauss3.dat +0 -310
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/Lanczos2.dat +0 -84
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/ENSO.hes +0 -9
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Gauss3.hes +0 -12
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Gauss3.jac +0 -12
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Hahn1.hes +0 -11
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Kirby2.hes +0 -9
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Lanczos1.hes +0 -11
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Lanczos2.hes +0 -10
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Lanczos2.jac +0 -10
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/MGH17.hes +0 -9
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Misra1c.hes +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/average_difficulty/data_files/Misra1d.hes +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/BoxBOD.dat +0 -66
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/Thurber.dat +0 -97
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/Bennett5.hes +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/BoxBOD.hes +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/BoxBOD.jac +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/Eckerle4.hes +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/MGH09.hes +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/MGH10.hes +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/Rat42.hes +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/Rat43.hes +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/Thurber.hes +0 -10
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/high_difficulty/data_files/Thurber.jac +0 -11
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Chwirut1.hes +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Chwirut2.hes +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/DanWood.hes +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Gauss1.hes +0 -12
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Gauss2.hes +0 -12
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Lanczos3.hes +0 -10
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Misra1a.hes +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/NIST/low_difficulty/data_files/Misra1b.hes +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX193749_calibration_peak19.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX193749_calibration_peak20.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX193749_calibration_peak23.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX193749_calibration_peak5.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX193749_calibration_peak6.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX236516_vanadium_bank1_10brk.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/ENGINX236516_vanadium_bank1_20brk.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/EVS14188-90_Gaussian_peaks_1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/EVS14188-90_Gaussian_peaks_2.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/GEMpeak1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak2.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak3.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak4.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak5.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak6.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak7.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak8.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/WISH17701_peak9.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/ENGINX193749_calibration_spec651.txt +0 -10188
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/ENGINX236516_vanadium_bank1.txt +0 -14170
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/EVS14188-90_peaks.txt +0 -1027
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/GEM63437_focused_bank3.txt +0 -2035
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/WISH17701_calibration_panel103_tube3.txt +0 -514
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/WISH17701_calibration_panel103_tube3_old.txt +0 -514
- FitBenchmarking-1.0.0/examples/benchmark_problems/Neutron/data_files/WISH1770_calibration_tube3.txt +0 -83
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/HIFI_160973_muon_count.txt +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/data_files/HIFI_160973_muon_count.txt +0 -799
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/data_files/HIFI_160973_muon_count_full.txt +0 -2041
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/data_files/simulated_bumps.txt +0 -346
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/data_files/simulated_mantid.txt +0 -2002
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/simulated_bumps.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/Poisson/simulated_mantid.txt +0 -6
- FitBenchmarking-1.0.0/examples/benchmark_problems/README.md +0 -18
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_core_shell_parallelepiped_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_core_shell_parallelepiped_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_core_shell_parallelepiped_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_core_shell_parallelepiped_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_flexible_cylinder_elliptical_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_flexible_cylinder_elliptical_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_flexible_cylinder_elliptical_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_flexible_cylinder_elliptical_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_parallelepiped_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_parallelepiped_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_parallelepiped_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_parallelepiped_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_triaxial_ellipsoid_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_triaxial_ellipsoid_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_triaxial_ellipsoid_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/1D_triaxial_ellipsoid_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/META.txt +0 -14
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_core_shell_parallelepiped_35_75_400_10_10_10_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_core_shell_parallelepiped_35_75_400_10_10_10_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_core_shell_parallelepiped_35_75_400_10_10_10_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_core_shell_parallelepiped_35_75_400_10_10_10_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_core_shell_parallelepiped_35_75_400_10_10_10_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_flexible_cylinder_elliptical_1000_100_20_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_flexible_cylinder_elliptical_1000_100_20_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_flexible_cylinder_elliptical_1000_100_20_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_flexible_cylinder_elliptical_1000_100_20_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_flexible_cylinder_elliptical_1000_100_20_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_parallelepiped_35_75_400_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_parallelepiped_35_75_400_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_parallelepiped_35_75_400_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_parallelepiped_35_75_400_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_parallelepiped_35_75_400_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_triaxial_ellipsoid_20_400_10.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_triaxial_ellipsoid_20_400_10_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_triaxial_ellipsoid_20_400_10_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_triaxial_ellipsoid_20_400_10_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Complex_Shapes_1D/data_files/1D_triaxial_ellipsoid_20_400_10_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_cylinder_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_cylinder_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_cylinder_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_cylinder_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_ellipsoid_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_ellipsoid_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_ellipsoid_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_ellipsoid_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_sphere_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_sphere_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_sphere_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_core_shell_sphere_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_stacked_disks_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_stacked_disks_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_stacked_disks_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/1D_stacked_disks_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/META.txt +0 -14
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_cylinder_20_20_400_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_cylinder_20_20_400_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_cylinder_20_20_400_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_cylinder_20_20_400_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_cylinder_20_20_400_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_ellipsoid_20_3_30_1_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_ellipsoid_20_3_30_1_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_ellipsoid_20_3_30_1_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_ellipsoid_20_3_30_1_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_ellipsoid_20_3_30_1_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_sphere_60_10_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_sphere_60_10_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_sphere_60_10_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_sphere_60_10_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_core_shell_sphere_60_10_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_stacked_disks_10_10_15_1_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_stacked_disks_10_10_15_1_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_stacked_disks_10_10_15_1_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_stacked_disks_10_10_15_1_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Moderate_Shapes_1D/data_files/1D_stacked_disks_10_10_15_1_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_broad_peak_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_broad_peak_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_broad_peak_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_broad_peak_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_dab_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_dab_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_dab_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_dab_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_line_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_line_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_line_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_line_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_lorentz_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_lorentz_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_lorentz_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/1D_lorentz_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/META.txt +0 -13
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_broad_peak_1e-5_3_10_50_0.1_2.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_broad_peak_1e-5_3_10_50_0.1_2_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_broad_peak_1e-5_3_10_50_0.1_2_neutron_synth.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_broad_peak_1e-5_3_10_50_0.1_2_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_broad_peak_1e-5_3_10_50_0.1_2_xray_synth.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_dab_50_nosmearing.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_dab_50_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_dab_50_nosmearing_neutron_synth.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_dab_50_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_dab_50_nosmearing_xray_synth.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_line_1_1_nosmearing.txt +0 -51
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_line_1_1_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_line_1_1_nosmearing_neutron_synth.txt +0 -51
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_line_1_1_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_line_1_1_nosmearing_xray_synth.txt +0 -51
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_lorentz_50_nosmearing.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_lorentz_50_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_lorentz_50_nosmearing_neutron_synth.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_lorentz_50_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Shape_Independent_1D/data_files/1D_lorentz_50_nosmearing_xray_synth.txt +0 -50
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_cylinder_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_cylinder_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_cylinder_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_cylinder_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_ellipsoid_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_ellipsoid_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_ellipsoid_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_ellipsoid_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_sphere_neutron_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_sphere_neutron_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_sphere_x-ray_def0.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/1D_sphere_x-ray_def1.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/META.txt +0 -12
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_cylinder_20_400_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_cylinder_20_400_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_cylinder_20_400_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_cylinder_20_400_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_cylinder_20_400_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_ellipsoid_20_400_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_ellipsoid_20_400_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_ellipsoid_20_400_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_ellipsoid_20_400_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_ellipsoid_20_400_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_sphere_50_nosmearing.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_sphere_50_nosmearing_neutron_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_sphere_50_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_sphere_50_nosmearing_xray_synth.png +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/SAS_modelling/SASView_Simple_Shapes_1D/data_files/1D_sphere_50_nosmearing_xray_synth.txt +0 -256
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/BENNETT5.SIF +0 -458
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/BOXBOD.SIF +0 -143
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CERI651A.SIF +0 -594
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CERI651B.SIF +0 -609
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CERI651C.SIF +0 -581
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CERI651D.SIF +0 -613
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CERI651E.SIF +0 -604
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CHWIRUT1.SIF +0 -575
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/CHWIRUT2.SIF +0 -255
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/DANWOOD.SIF +0 -151
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/ECKERLE4.SIF +0 -230
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/ENSO.SIF +0 -567
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/GAUSS1.SIF +0 -697
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/GAUSS2.SIF +0 -697
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/GAUSS3.SIF +0 -696
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/HAHN1.SIF +0 -897
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/KIRBY2.SIF +0 -463
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/LANCZOS1.SIF +0 -224
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/LANCZOS2.SIF +0 -196
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/LANCZOS3.SIF +0 -196
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MGH09.SIF +0 -183
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MGH10.SIF +0 -179
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MGH17.SIF +0 -209
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MISRA1A.SIF +0 -158
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MISRA1B.SIF +0 -159
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MISRA1C.SIF +0 -159
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/MISRA1D.SIF +0 -163
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/RAT42.SIF +0 -168
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/RAT43.SIF +0 -209
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/ROSZMAN1.SIF +0 -206
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/THURBER.SIF +0 -261
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/VESUVIA.SIF +0 -3258
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/VESUVIO.SIF +0 -3260
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF/VESUVIOU.SIF +0 -2225
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/ECKERLE4.SIF +0 -235
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/META.txt +0 -4
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/MGH09.SIF +0 -177
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/MGH10.SIF +0 -179
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/RAT42.SIF +0 -173
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/RAT43.SIF +0 -217
- FitBenchmarking-1.0.0/examples/benchmark_problems/SIF_GO/THURBER.SIF +0 -274
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/README.md +0 -5
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/example_sasmodel/1D_core_shell_cylinder_20_20_400_nosmearing.txt +0 -512
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/experimental_neutron_sas/33837rear_1D_1.75_16.5_NXcanSAS.h5 +0 -0
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/experimental_xray_sas/100 and 200 nm Polystyrene NPs in Water.dat +0 -508
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/experimental_xray_sas/100 nm Polystyrene NPs in Water.dat +0 -508
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/experimental_xray_sas/200 nm Polystyrene NPs in Water.dat +0 -508
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/format_data_files.py +0 -42
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/generate_data_assim.py +0 -59
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/generate_simulated_bumps.py +0 -56
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/generate_simulated_mantid.py +0 -67
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/hessians/NIST_avg_difficulty_hessians.py +0 -121
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/hessians/NIST_high_difficulty_hessians.py +0 -106
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/hessians/NIST_low_difficulty_hessians.py +0 -107
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/parse_nxs.py +0 -31
- FitBenchmarking-1.0.0/examples/benchmark_problems/scripts/synth_sas.py +0 -702
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/META.txt +0 -3
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/cubic-fb.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/cubic-fba.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/cubic.dat +0 -215
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/data_files/cubic.txt +0 -156
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/data_files/gauss-exact.txt +0 -102
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/data_files/gauss-noisy.txt +0 -102
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/data_files/trig_exact.txt +0 -102
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/data_files/trig_noisy.txt +0 -102
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/gauss_exact-fb.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/gauss_exact-fba.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/gauss_exact.dat +0 -161
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/gauss_noisy-fb.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/gauss_noisy-fba.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/gauss_noisy.dat +0 -161
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/trig_exact-fb.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/trig_exact-fba.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/trig_exact.dat +0 -161
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/trig_noisy-fb.txt +0 -8
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/trig_noisy-fba.txt +0 -7
- FitBenchmarking-1.0.0/examples/benchmark_problems/simple_tests/trig_noisy.dat +0 -161
- FitBenchmarking-1.0.0/examples/options_template.ini +0 -39
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/ENSO.dat +0 -228
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Gauss3.dat +0 -310
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Hahn1.dat +0 -296
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Kirby2.dat +0 -211
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Lanczos1.dat +0 -84
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Lanczos2.dat +0 -84
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/META.txt +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/MGH17.dat +0 -93
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Misra1c.dat +0 -74
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/Misra1d.dat +0 -74
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/ENSO.jac +0 -13
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Gauss3.jac +0 -12
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Hahn1.jac +0 -9
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Kirby2.jac +0 -9
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Lanczos1.jac +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Lanczos2.jac +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/MGH17.jac +0 -9
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Misra1c.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Misra1d.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/Bennett5.dat +0 -214
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/BoxBOD.dat +0 -66
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/Eckerle4.dat +0 -95
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/META.txt +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/MGH09.dat +0 -71
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/MGH10.dat +0 -76
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/Rat42.dat +0 -69
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/Rat43.dat +0 -75
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/Thurber.dat +0 -97
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Bennett5.jac +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/BoxBOD.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Eckerle4.jac +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/MGH09.jac +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/MGH10.jac +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Rat42.jac +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Rat43.jac +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Thurber.jac +0 -11
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Chwirut1.dat +0 -274
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Chwirut2.dat +0 -114
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/DanWood.dat +0 -66
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Gauss1.dat +0 -310
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Gauss2.dat +0 -310
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Lanczos3.dat +0 -84
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/META.txt +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Misra1a.dat +0 -74
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/Misra1b.dat +0 -74
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Chwirut1.jac +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Chwirut2.jac +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/DanWood.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Gauss1.jac +0 -12
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Gauss2.jac +0 -12
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Lanczos3.jac +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Misra1a.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Misra1b.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/cli/checkpoint_handler.py +0 -132
- FitBenchmarking-1.0.0/fitbenchmarking/cli/tests/test_checkpoint_handler.py +0 -67
- FitBenchmarking-1.0.0/fitbenchmarking/cli/tests/test_exception_handler.py +0 -52
- FitBenchmarking-1.0.0/fitbenchmarking/cli/tests/test_main.py +0 -80
- FitBenchmarking-1.0.0/fitbenchmarking/controllers/tests/test_controllers.py +0 -1253
- FitBenchmarking-1.0.0/fitbenchmarking/core/fitting_benchmarking.py +0 -651
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_benchmark.py +0 -170
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_benchmark_problems.py +0 -152
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_hessians.py +0 -224
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_jacobians.py +0 -143
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_minimizers.py +0 -190
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_software.py +0 -214
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_fitting_benchmarking_starting_values.py +0 -171
- FitBenchmarking-1.0.0/fitbenchmarking/core/tests/test_results_output.py +0 -475
- FitBenchmarking-1.0.0/fitbenchmarking/cost_func/tests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/cost_func/tests/test_cost_func.py +0 -546
- FitBenchmarking-1.0.0/fitbenchmarking/hessian/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/hessian/tests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/hessian/tests/test_hessian.py +0 -356
- FitBenchmarking-1.0.0/fitbenchmarking/jacobian/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/jacobian/tests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/jacobian/tests/test_jacobian.py +0 -337
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/cutest_parser.py +0 -356
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/cutest/basic.SIF +0 -127
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/cutest/function_evaluations.json +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/cutest/jacobian_evaluations.json +0 -12
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/cutest/start_end_x.SIF +0 -1
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/expected/basic.json +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/expected/start_end_x.json +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/1D_Gaussian_2.txt +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/basic.txt +0 -1
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/data_files/testdata_multifit_1.mat +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/function_evaluations.json +0 -57
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/m_scripts/fb_simulate_IX_1D_test2.m +0 -13
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/m_scripts/fb_wye_IX_1D_test2.m +0 -15
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/m_scripts/mftest_gauss_bkgd.m +0 -25
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/horace/start_end_x.txt +0 -1
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/ivp/basic.txt +0 -1
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/ivp/data_files/simplified_anac.txt +0 -101
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/ivp/function_evaluations.json +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/ivp/functions/simplified_anac.py +0 -28
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/ivp/simplified_anac.txt +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/ivp/start_end_x.txt +0 -1
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/basic.txt +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/data_files/mantid_basic.dat +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/data_files/mantid_start_end_x.dat +0 -9
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/data_files/multifit1.txt +0 -20
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/data_files/multifit2.txt +0 -20
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/function_evaluations.json +0 -16
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/multifit.txt +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/mantid/start_end_x.txt +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/basic.dat +0 -46
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/data_files/NA.jac +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/data_files/basic.hes +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/data_files/basic.jac +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/function_evaluations.json +0 -9
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/hessian_evaluations.json +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/jacobian_evaluations.json +0 -10
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/nist/start_end_x.dat +0 -38
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/sasview/basic.txt +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/sasview/data_files/sasview_basic.dat +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/sasview/function_evaluations.json +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/sasview/start_end_x.txt +0 -1
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/test_fitting_problem.py +0 -254
- FitBenchmarking-1.0.0/fitbenchmarking/parsing/tests/test_parsers.py +0 -417
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/acc_table.py +0 -63
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/emissions_table.py +0 -74
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/performance_profiler.py +0 -216
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/plots.py +0 -320
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/runtime_table.py +0 -65
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/acc.csv +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/acc.html +0 -80
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/compare.csv +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/compare.html +0 -80
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/emissions.csv +0 -5
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/emissions.html +0 -59
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/local_min.csv +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/local_min.html +0 -53
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/minimizer_dropdown.html +0 -13
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/problem_dropdown.html +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/runtime.csv +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/expected_results/runtime.html +0 -77
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/test_base_table.py +0 -242
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/test_fitting_report.py +0 -133
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/test_performance_profiler.py +0 -116
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/test_plots.py +0 -128
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/test_problem_summary_page.py +0 -195
- FitBenchmarking-1.0.0/fitbenchmarking/results_processing/tests/test_tables.py +0 -216
- FitBenchmarking-1.0.0/fitbenchmarking/systests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/systests/linux_expected_results/all_parsers.csv +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/systests/linux_expected_results/default_parsers_set.csv +0 -5
- FitBenchmarking-1.0.0/fitbenchmarking/systests/linux_expected_results/matlab.csv +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/systests/linux_expected_results/multifit.csv +0 -4
- FitBenchmarking-1.0.0/fitbenchmarking/systests/test_regression.py +0 -294
- FitBenchmarking-1.0.0/fitbenchmarking/systests/test_usage_examples.py +0 -60
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/1D_sphere_neutron_def0.txt +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/DANWOOD.SIF +0 -151
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/DanWood.dat +0 -66
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/META.txt +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/data_files/1D_sphere_50_nosmearing_neutron_synth.txt +0 -256
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/data_files/DanWood.hes +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/data_files/DanWood.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/data_files/trig_noisy.txt +0 -102
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/all_parsers_set/trig_noisy-fba.txt +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/checkpoint.json +0 -436
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/cubic-fba-test-bounds.txt +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/cubic-fba-test-go.txt +0 -8
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/cubic.dat +0 -215
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/data_files/cubic.hes +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/data_files/cubic.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/data_files/cubic.txt +0 -156
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/default_parsers_set/META.txt +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/default_parsers_set/cubic.dat +0 -215
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/default_parsers_set/data_files/cubic.jac +0 -6
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/default_parsers_set/data_files/cyl_400_20.txt +0 -22
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/default_parsers_set/prob_def_1.txt +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/multifit_set/META.txt +0 -3
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/multifit_set/data_files/multifit1.txt +0 -20
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/multifit_set/data_files/multifit2.txt +0 -20
- FitBenchmarking-1.0.0/fitbenchmarking/test_files/multifit_set/multifit.txt +0 -7
- FitBenchmarking-1.0.0/fitbenchmarking/utils/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/__init__.py +0 -0
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_checkpoint.py +0 -215
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_create_dirs.py +0 -112
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_debug.py +0 -47
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_fitbm_result.py +0 -267
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_logger.py +0 -94
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_misc.py +0 -93
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_fitting.py +0 -256
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_generic.py +0 -152
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_hessian.py +0 -129
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_jacobian.py +0 -129
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_logging.py +0 -190
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_minimizers.py +0 -609
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_options_output.py +0 -258
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_output_grabber.py +0 -55
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_timer.py +0 -83
- FitBenchmarking-1.0.0/fitbenchmarking/utils/tests/test_write_files.py +0 -73
- FitBenchmarking-1.0.0/paper/figures/FitBenchmarkingConcept.png +0 -0
- FitBenchmarking-1.0.0/paper/figures/nmsimplex2_fit_for_EVS14188-90_processed_Gaussian_peaks_1_1.png +0 -0
- FitBenchmarking-1.0.0/paper/paper.bib +0 -114
- FitBenchmarking-1.0.0/paper/paper.md +0 -114
- FitBenchmarking-1.0.0/requirements.txt +0 -8
- FitBenchmarking-1.0.0/setup.cfg +0 -4
- FitBenchmarking-1.0.0/setup.py +0 -58
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/LICENSE.txt +0 -0
- {FitBenchmarking-1.0.0/examples/benchmark_problems → fitbenchmarking-1.1.0/fitbenchmarking}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/__main__.py +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/ENSO.dat +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty}/Gauss3.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/Hahn1.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/Kirby2.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/Lanczos1.dat +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty}/Lanczos2.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/META.txt +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/MGH17.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/Misra1c.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/Misra1d.dat +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/ENSO.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/ENSO.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Gauss3.hes +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty}/data_files/Gauss3.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Hahn1.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/Hahn1.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Kirby2.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/Kirby2.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Lanczos1.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/Lanczos1.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Lanczos2.hes +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/average_difficulty}/data_files/Lanczos2.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/MGH17.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/MGH17.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Misra1c.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/Misra1c.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/average_difficulty/data_files/Misra1d.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/average_difficulty/data_files/Misra1d.jac +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/Bennett5.dat +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty}/BoxBOD.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/Eckerle4.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/META.txt +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/MGH09.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/MGH10.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/Rat42.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/Rat43.dat +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty}/Thurber.dat +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Bennett5.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/data_files/Bennett5.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/BoxBOD.hes +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty}/data_files/BoxBOD.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Eckerle4.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/data_files/Eckerle4.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/MGH09.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/data_files/MGH09.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/MGH10.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/data_files/MGH10.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Rat42.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/data_files/Rat42.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Rat43.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/high_difficulty/data_files/Rat43.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/high_difficulty/data_files/Thurber.hes +0 -0
- {FitBenchmarking-1.0.0/docs/concept_figure/data → fitbenchmarking-1.1.0/fitbenchmarking/benchmark_problems/NIST/high_difficulty}/data_files/Thurber.jac +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Chwirut1.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Chwirut2.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/DanWood.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Gauss1.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Gauss2.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Lanczos3.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/META.txt +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Misra1a.dat +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/Misra1b.dat +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Chwirut1.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Chwirut1.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Chwirut2.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Chwirut2.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/DanWood.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/DanWood.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Gauss1.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Gauss1.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Gauss2.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Gauss2.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Lanczos3.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Lanczos3.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Misra1a.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Misra1a.jac +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/benchmark_problems/NIST/low_difficulty/data_files/Misra1b.hes +0 -0
- {FitBenchmarking-1.0.0/examples → fitbenchmarking-1.1.0/fitbenchmarking}/benchmark_problems/NIST/low_difficulty/data_files/Misra1b.jac +0 -0
- {FitBenchmarking-1.0.0/examples/benchmark_problems/scripts → fitbenchmarking-1.1.0/fitbenchmarking/cli}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cli/exception_handler.py +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking → fitbenchmarking-1.1.0/fitbenchmarking/controllers}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/controller_factory.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/matlab_curve_controller/eval_r.m +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/controllers/matlab_mixin.py +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/cli → fitbenchmarking-1.1.0/fitbenchmarking/core}/__init__.py +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/cli/tests → fitbenchmarking-1.1.0/fitbenchmarking/cost_func}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/cost_func_factory.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/hellinger_nlls_cost_func.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/nlls_cost_func.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/poisson_cost_func.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/cost_func/weighted_nlls_cost_func.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-Bold.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-BoldItalic.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-Italic.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-Light.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-LightItalic.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-Medium.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-MediumItalic.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/eot/FiraSans-Regular.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-Bold.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-BoldItalic.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-Italic.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-Light.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-LightItalic.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-Medium.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-MediumItalic.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/ttf/FiraSans-Regular.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-Bold.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-BoldItalic.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-Italic.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-Light.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-LightItalic.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-Medium.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-MediumItalic.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff/FiraSans-Regular.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-Bold.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-BoldItalic.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-Italic.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-Light.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-LightItalic.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-Medium.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-MediumItalic.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FiraSans/woff2/FiraSans-Regular.woff2 +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FontAwesome/fontawesome-webfont.eot +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FontAwesome/fontawesome-webfont.svg +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FontAwesome/fontawesome-webfont.ttf +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FontAwesome/fontawesome-webfont.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/fonts/FontAwesome/fontawesome-webfont.woff2 +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/controllers → fitbenchmarking-1.1.0/fitbenchmarking/hessian}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/hessian/analytic_hessian.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/hessian/base_hessian.py +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/controllers/tests → fitbenchmarking-1.1.0/fitbenchmarking/jacobian}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/analytic_jacobian.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/base_jacobian.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/default_jacobian.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/numdifftools_jacobian.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/scipy_jacobian.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/jacobian/scripts/NIST-Jacobians.nb +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/core → fitbenchmarking-1.1.0/fitbenchmarking/parsing}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/fitbenchmark_parser.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/horace_parser.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/ivp_parser.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/nist_data_functions.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/nist_parser.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/parsing/sasview_parser.py +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/core/tests → fitbenchmarking-1.1.0/fitbenchmarking/results_processing}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/css/dropdown_style.css +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/css/math_style.css +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/index_page.html +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/dropdown.js +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/js/tex-mml-chtml.js +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/problem_index_page.html +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/style_sheet.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/templates/table_descriptions.rst +0 -0
- {FitBenchmarking-1.0.0/fitbenchmarking/cost_func → fitbenchmarking-1.1.0/fitbenchmarking/utils}/__init__.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/create_dirs.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/debug.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/exceptions.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/log.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/matlab_engine.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/output_grabber.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/timer.py +0 -0
- {FitBenchmarking-1.0.0 → fitbenchmarking-1.1.0}/fitbenchmarking/utils/write_files.py +0 -0
|
@@ -4,10 +4,14 @@ logs/
|
|
|
4
4
|
.idea/
|
|
5
5
|
build/build.log
|
|
6
6
|
FitBenchmarking.egg-info/
|
|
7
|
-
build/lib/
|
|
7
|
+
build/lib/
|
|
8
8
|
dist/
|
|
9
9
|
docs/build
|
|
10
10
|
docs/source/_build
|
|
11
11
|
docs/source/contributors/module_index
|
|
12
12
|
*.log
|
|
13
|
-
*.DS_Store
|
|
13
|
+
*.DS_Store
|
|
14
|
+
.vscode/
|
|
15
|
+
.eggs/
|
|
16
|
+
*.out
|
|
17
|
+
powermetrics_log.txt
|
|
@@ -1,30 +1,80 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: FitBenchmarking
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: FitBenchmarking: A tool for comparing fitting software
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Project-URL: Homepage, https://fitbenchmarking.github.io
|
|
6
|
+
Project-URL: Documentation, https://fitbenchmarking.readthedocs.io/en/stable
|
|
7
|
+
Project-URL: Repository, https://github.com/fitbenchmarking/fitbenchmarking
|
|
8
|
+
Project-URL: Release Notes, https://github.com/fitbenchmarking/fitbenchmarking/releases
|
|
9
|
+
Project-URL: Issues, https://github.com/fitbenchmarking/fitbenchmarking/issues
|
|
10
|
+
Author: FitBenchmarkign Team
|
|
11
|
+
License-File: LICENSE.txt
|
|
12
|
+
Keywords: benchmark,comparison,fitting,least squares,optimisation
|
|
13
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
16
|
Requires-Python: >=3.7.1
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
Requires-Dist: codecarbon>=2.3.4
|
|
18
|
+
Requires-Dist: configparser
|
|
19
|
+
Requires-Dist: dash
|
|
20
|
+
Requires-Dist: docutils
|
|
21
|
+
Requires-Dist: jinja2
|
|
22
|
+
Requires-Dist: lxml
|
|
23
|
+
Requires-Dist: matplotlib>=2.0
|
|
24
|
+
Requires-Dist: numpy<1.24
|
|
25
|
+
Requires-Dist: pandas>=1.3
|
|
26
|
+
Requires-Dist: plotly>=5.0.0
|
|
27
|
+
Requires-Dist: scipy>=0.18
|
|
28
|
+
Requires-Dist: tqdm>=4.60
|
|
14
29
|
Provides-Extra: bumps
|
|
15
|
-
|
|
30
|
+
Requires-Dist: bumps>=0.9.0; extra == 'bumps'
|
|
31
|
+
Provides-Extra: dev
|
|
32
|
+
Requires-Dist: coverage[toml]>=6.3; extra == 'dev'
|
|
33
|
+
Requires-Dist: coveralls; extra == 'dev'
|
|
34
|
+
Requires-Dist: flake8==3.9.2; extra == 'dev'
|
|
35
|
+
Requires-Dist: iminuit>=2.25.2; extra == 'dev'
|
|
36
|
+
Requires-Dist: pandas; extra == 'dev'
|
|
37
|
+
Requires-Dist: parameterized; extra == 'dev'
|
|
38
|
+
Requires-Dist: pre-commit; extra == 'dev'
|
|
39
|
+
Requires-Dist: pylint-exit; extra == 'dev'
|
|
40
|
+
Requires-Dist: pylint==2.9.5; extra == 'dev'
|
|
41
|
+
Requires-Dist: pytest; extra == 'dev'
|
|
42
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
43
|
+
Provides-Extra: dfo
|
|
44
|
+
Requires-Dist: dfo-ls; extra == 'dfo'
|
|
45
|
+
Requires-Dist: dfogn; extra == 'dfo'
|
|
46
|
+
Provides-Extra: gofit
|
|
47
|
+
Requires-Dist: gofit; extra == 'gofit'
|
|
48
|
+
Provides-Extra: gradient-free
|
|
49
|
+
Requires-Dist: gradient-free-optimizers; extra == 'gradient-free'
|
|
50
|
+
Provides-Extra: hogben
|
|
51
|
+
Requires-Dist: hogben; extra == 'hogben'
|
|
16
52
|
Provides-Extra: levmar
|
|
53
|
+
Requires-Dist: levmar; extra == 'levmar'
|
|
17
54
|
Provides-Extra: lmfit
|
|
55
|
+
Requires-Dist: emcee>=3.1.0; extra == 'lmfit'
|
|
56
|
+
Requires-Dist: lmfit; extra == 'lmfit'
|
|
18
57
|
Provides-Extra: mantid
|
|
58
|
+
Requires-Dist: h5py<3,>=2.10.0; extra == 'mantid'
|
|
59
|
+
Requires-Dist: pyyaml>=5.4.1; extra == 'mantid'
|
|
19
60
|
Provides-Extra: matlab
|
|
61
|
+
Requires-Dist: dill; extra == 'matlab'
|
|
62
|
+
Provides-Extra: minuit
|
|
63
|
+
Requires-Dist: iminuit>=2.0; extra == 'minuit'
|
|
20
64
|
Provides-Extra: nlopt
|
|
21
|
-
|
|
22
|
-
Provides-Extra:
|
|
23
|
-
|
|
65
|
+
Requires-Dist: nlopt; extra == 'nlopt'
|
|
66
|
+
Provides-Extra: numdifftools
|
|
67
|
+
Requires-Dist: numdifftools; extra == 'numdifftools'
|
|
68
|
+
Provides-Extra: paramonte
|
|
69
|
+
Requires-Dist: paramonte; extra == 'paramonte'
|
|
70
|
+
Provides-Extra: sas
|
|
71
|
+
Requires-Dist: sasmodels; extra == 'sas'
|
|
72
|
+
Requires-Dist: tinycc; (platform_system == 'Windows') and extra == 'sas'
|
|
73
|
+
Description-Content-Type: text/markdown
|
|
24
74
|
|
|
25
|
-
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/release.yml?query=branch%3Av1.
|
|
26
|
-
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/main.yml?query=branch%3Av1.
|
|
27
|
-
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/release.yml?query=branch%3Av1.1.0)
|
|
76
|
+
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/main.yml?query=branch%3Av1.1.0)
|
|
77
|
+
[](https://fitbenchmarking.readthedocs.io/en/v1.1.0)
|
|
28
78
|
[](https://coveralls.io/github/fitbenchmarking/fitbenchmarking)
|
|
29
79
|
[](https://slack.com/)
|
|
30
80
|
[](https://doi.org/10.5281/zenodo.6597790)
|
|
@@ -33,10 +83,10 @@ License-File: LICENSE.txt
|
|
|
33
83
|
|
|
34
84
|
FitBenchmarking is an open source tool for comparing different minimizers/fitting frameworks. FitBenchmarking is cross platform and we support Windows, Linux and Mac OS. For questions, feature requests or any other inquiries, please open an issue on GitHub, or send us an e-mail at support@fitbenchmarking.com.
|
|
35
85
|
|
|
36
|
-
- **Installation Instructions:** https://fitbenchmarking.readthedocs.io/en/v1.
|
|
37
|
-
- **User Documentation & Example Usage:** https://fitbenchmarking.readthedocs.io/en/v1.
|
|
38
|
-
- **Community Guidelines:** https://fitbenchmarking.readthedocs.io/en/v1.
|
|
39
|
-
- **Automated Tests:** Run via GitHub Actions, https://github.com/fitbenchmarking/fitbenchmarking/actions, and tests are documented at https://fitbenchmarking.readthedocs.io/en/v1.
|
|
86
|
+
- **Installation Instructions:** https://fitbenchmarking.readthedocs.io/en/v1.1.0/users/install_instructions/index.html
|
|
87
|
+
- **User Documentation & Example Usage:** https://fitbenchmarking.readthedocs.io/en/v1.1.0/users/index.html
|
|
88
|
+
- **Community Guidelines:** https://fitbenchmarking.readthedocs.io/en/v1.1.0/contributors/guidelines.html
|
|
89
|
+
- **Automated Tests:** Run via GitHub Actions, https://github.com/fitbenchmarking/fitbenchmarking/actions, and tests are documented at https://fitbenchmarking.readthedocs.io/en/v1.1.0/users/tests.html
|
|
40
90
|
|
|
41
91
|
The package is the result of a collaboration between STFC’s Scientific Computing Department and ISIS Neutron and Muon Facility and the Diamond Light Source. We also would like to acknowledge support from:
|
|
42
92
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/release.yml?query=branch%3Av1.
|
|
2
|
-
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/main.yml?query=branch%3Av1.
|
|
3
|
-
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/release.yml?query=branch%3Av1.1.0)
|
|
2
|
+
[](https://github.com/fitbenchmarking/fitbenchmarking/actions/workflows/main.yml?query=branch%3Av1.1.0)
|
|
3
|
+
[](https://fitbenchmarking.readthedocs.io/en/v1.1.0)
|
|
4
4
|
[](https://coveralls.io/github/fitbenchmarking/fitbenchmarking)
|
|
5
5
|
[](https://slack.com/)
|
|
6
6
|
[](https://doi.org/10.5281/zenodo.6597790)
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
|
|
10
10
|
FitBenchmarking is an open source tool for comparing different minimizers/fitting frameworks. FitBenchmarking is cross platform and we support Windows, Linux and Mac OS. For questions, feature requests or any other inquiries, please open an issue on GitHub, or send us an e-mail at support@fitbenchmarking.com.
|
|
11
11
|
|
|
12
|
-
- **Installation Instructions:** https://fitbenchmarking.readthedocs.io/en/v1.
|
|
13
|
-
- **User Documentation & Example Usage:** https://fitbenchmarking.readthedocs.io/en/v1.
|
|
14
|
-
- **Community Guidelines:** https://fitbenchmarking.readthedocs.io/en/v1.
|
|
15
|
-
- **Automated Tests:** Run via GitHub Actions, https://github.com/fitbenchmarking/fitbenchmarking/actions, and tests are documented at https://fitbenchmarking.readthedocs.io/en/v1.
|
|
12
|
+
- **Installation Instructions:** https://fitbenchmarking.readthedocs.io/en/v1.1.0/users/install_instructions/index.html
|
|
13
|
+
- **User Documentation & Example Usage:** https://fitbenchmarking.readthedocs.io/en/v1.1.0/users/index.html
|
|
14
|
+
- **Community Guidelines:** https://fitbenchmarking.readthedocs.io/en/v1.1.0/contributors/guidelines.html
|
|
15
|
+
- **Automated Tests:** Run via GitHub Actions, https://github.com/fitbenchmarking/fitbenchmarking/actions, and tests are documented at https://fitbenchmarking.readthedocs.io/en/v1.1.0/users/tests.html
|
|
16
16
|
|
|
17
17
|
The package is the result of a collaboration between STFC’s Scientific Computing Department and ISIS Neutron and Muon Facility and the Diamond Light Source. We also would like to acknowledge support from:
|
|
18
18
|
|
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This is a command line tool for handling checkpoint files for the
|
|
3
|
+
FitBenchmarking software package.
|
|
4
|
+
For more information on usage type fitbenchmarking --help
|
|
5
|
+
or for more general information, see the online docs at
|
|
6
|
+
docs.fitbenchmarking.com.
|
|
7
|
+
"""
|
|
8
|
+
import json
|
|
9
|
+
import os
|
|
10
|
+
import sys
|
|
11
|
+
import textwrap
|
|
12
|
+
from argparse import ArgumentParser, RawDescriptionHelpFormatter
|
|
13
|
+
|
|
14
|
+
from fitbenchmarking.cli.exception_handler import exception_handler
|
|
15
|
+
from fitbenchmarking.core.results_output import (create_index_page,
|
|
16
|
+
open_browser, save_results)
|
|
17
|
+
from fitbenchmarking.utils.checkpoint import Checkpoint
|
|
18
|
+
from fitbenchmarking.utils.options import find_options_file
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def get_parser() -> ArgumentParser:
|
|
22
|
+
"""
|
|
23
|
+
Creates and returns a parser for the args.
|
|
24
|
+
|
|
25
|
+
:return: Configured argument parser
|
|
26
|
+
:rtype: ArgumentParser
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
description = (
|
|
30
|
+
'This is a tool for working with checkpoint files generated during a '
|
|
31
|
+
'FitBenchmarking run.'
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
parser = ArgumentParser(
|
|
35
|
+
prog='fitbenchmarking-cp', add_help=True, description=description,
|
|
36
|
+
formatter_class=RawDescriptionHelpFormatter)
|
|
37
|
+
parser.add_argument('-d', '--debug-mode',
|
|
38
|
+
default=False,
|
|
39
|
+
action='store_true',
|
|
40
|
+
help='Enable debug mode (prints traceback).',)
|
|
41
|
+
|
|
42
|
+
subparsers = parser.add_subparsers(
|
|
43
|
+
metavar='ACTION',
|
|
44
|
+
dest='subprog',
|
|
45
|
+
help='Which action should be performed? '
|
|
46
|
+
'For more information on options use '
|
|
47
|
+
'`fitbenchmarking-cp ACTION -h`')
|
|
48
|
+
|
|
49
|
+
report_epilog = textwrap.dedent('''
|
|
50
|
+
Usage Examples:
|
|
51
|
+
|
|
52
|
+
$ fitbenchmarking-cp report
|
|
53
|
+
$ fitbenchmarking-cp report -o examples/options_template.ini
|
|
54
|
+
$ fitbenchmarking-cp report -f results/checkpoint
|
|
55
|
+
''')
|
|
56
|
+
report = subparsers.add_parser(
|
|
57
|
+
'report',
|
|
58
|
+
description='Generate a report from a checkpoint file',
|
|
59
|
+
help='Generate a report from a checkpoint file',
|
|
60
|
+
epilog=report_epilog)
|
|
61
|
+
report.add_argument('-f', '--filename',
|
|
62
|
+
metavar='CHECKPOINT_FILE',
|
|
63
|
+
default='',
|
|
64
|
+
help='The path to a fitbenchmarking checkpoint file. '
|
|
65
|
+
'If omitted, this will be taken from the options '
|
|
66
|
+
'file.')
|
|
67
|
+
report.add_argument('-o', '--options-file',
|
|
68
|
+
metavar='OPTIONS_FILE',
|
|
69
|
+
default='',
|
|
70
|
+
help='The path to a fitbenchmarking options file')
|
|
71
|
+
|
|
72
|
+
merge_epilog = textwrap.dedent('''
|
|
73
|
+
Usage Examples:
|
|
74
|
+
|
|
75
|
+
$ fitbenchmarking-cp merge -f old_results/checkpoint.json \
|
|
76
|
+
to_add/checkpoint.json
|
|
77
|
+
$ fitbenchmarking-cp merge -f cp1 cp2 cp3 cp4 -o \
|
|
78
|
+
new_results/checkpoint.json
|
|
79
|
+
''')
|
|
80
|
+
merge_parser = subparsers.add_parser(
|
|
81
|
+
'merge',
|
|
82
|
+
description='Merge multiple checkpoint files into one',
|
|
83
|
+
help='Merge multiple checkpoint files into one',
|
|
84
|
+
epilog=merge_epilog)
|
|
85
|
+
merge_parser.add_argument('-f', '--files',
|
|
86
|
+
metavar='FILES',
|
|
87
|
+
nargs='+',
|
|
88
|
+
help='The checkpoint files to merge'
|
|
89
|
+
)
|
|
90
|
+
merge_parser.add_argument('-o', '--output-filename',
|
|
91
|
+
metavar='OUTPUT',
|
|
92
|
+
default='checkpoint.json',
|
|
93
|
+
help='The name of the merged checkpoint file')
|
|
94
|
+
merge_parser.add_argument(
|
|
95
|
+
'-s', '--strategy',
|
|
96
|
+
metavar='STRATEGY',
|
|
97
|
+
default='first',
|
|
98
|
+
choices=['first', 'last', 'accuracy', 'runtime', 'emissions'],
|
|
99
|
+
help='The merge strategy to use when dealing with conflicts.'
|
|
100
|
+
'Selecting accuracy, emissions, or runtime will select for the '
|
|
101
|
+
'lowest from conflicting runs.')
|
|
102
|
+
return parser
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
@exception_handler
|
|
106
|
+
def generate_report(options_file='', additional_options=None, debug=False):
|
|
107
|
+
# pylint: disable=unused-argument
|
|
108
|
+
"""
|
|
109
|
+
Generate the fitting reports and tables for a checkpoint file.
|
|
110
|
+
|
|
111
|
+
:param options_file: Path to an options file, defaults to ''
|
|
112
|
+
:type options_file: str, optional
|
|
113
|
+
:param additional_options: Extra options for the reporting.
|
|
114
|
+
Available keys are:
|
|
115
|
+
filename (str): The checkpoint file to use.
|
|
116
|
+
:type additional_options: dict, optional
|
|
117
|
+
"""
|
|
118
|
+
if additional_options is None:
|
|
119
|
+
additional_options = {}
|
|
120
|
+
|
|
121
|
+
options = find_options_file(options_file=options_file,
|
|
122
|
+
additional_options=additional_options)
|
|
123
|
+
|
|
124
|
+
checkpoint = Checkpoint(options=options)
|
|
125
|
+
results, unselected_minimizers, failed_problems = checkpoint.load()
|
|
126
|
+
|
|
127
|
+
all_dirs = []
|
|
128
|
+
pp_dfs_all_prob_sets = {}
|
|
129
|
+
for label in results: # pylint: disable=consider-using-dict-items
|
|
130
|
+
directory, pp_dfs = save_results(
|
|
131
|
+
group_name=label,
|
|
132
|
+
results=results[label],
|
|
133
|
+
options=options,
|
|
134
|
+
failed_problems=failed_problems[label],
|
|
135
|
+
unselected_minimizers=unselected_minimizers[label])
|
|
136
|
+
|
|
137
|
+
pp_dfs_all_prob_sets[label] = pp_dfs
|
|
138
|
+
|
|
139
|
+
directory = os.path.relpath(path=directory, start=options.results_dir)
|
|
140
|
+
all_dirs.append(directory)
|
|
141
|
+
|
|
142
|
+
index_page = create_index_page(options, list(results), all_dirs)
|
|
143
|
+
open_browser(index_page, options, pp_dfs_all_prob_sets)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
@exception_handler
|
|
147
|
+
def merge_data_sets(files: 'list[str]', output: 'str',
|
|
148
|
+
strategy: 'str' = 'first',
|
|
149
|
+
debug: 'bool' = False):
|
|
150
|
+
# pylint: disable=unused-argument
|
|
151
|
+
"""
|
|
152
|
+
Combine multiple checkpoint files into one following these rules:
|
|
153
|
+
1) The output will be the same as combining them one at a time in
|
|
154
|
+
sequence. i.e. A + B + C = (A + B) + C
|
|
155
|
+
The rules from here on will only reference A and B as the relation is
|
|
156
|
+
recursive.
|
|
157
|
+
2) Datasets
|
|
158
|
+
2a) Datasets in A and B are identical if they agree on the label
|
|
159
|
+
2b) If A and B contain identical datasets, the problems and results
|
|
160
|
+
are combined as below.
|
|
161
|
+
The remainder of these rules assume that A and B are identical
|
|
162
|
+
datasets as the alternative is trivial.
|
|
163
|
+
3) Problems
|
|
164
|
+
3a) If problems in A and B agree on name, ini_params, ini_y, x, y,
|
|
165
|
+
and e then these problems are considered identical.
|
|
166
|
+
3b) If A and B share identical problems, the details not specified in
|
|
167
|
+
3a are taken from A.
|
|
168
|
+
3c) If problems in A and B are not identical but share a name, the
|
|
169
|
+
name of the project in B should be updated to "<problem_name>*".
|
|
170
|
+
4) Results
|
|
171
|
+
4a) If results in A and B have identical problems and agree on name,
|
|
172
|
+
software_tag, minimizer_tag, jacobian_tag, hessian_tag, and
|
|
173
|
+
costfun_tag they are considered identical.
|
|
174
|
+
4b) If A an B share identical results, the details not specified in 4a
|
|
175
|
+
are taken from A if strategy is 'first', or B if strategy is
|
|
176
|
+
'last'.
|
|
177
|
+
5) As tables are grids of results, combining arbitrary results can lead to
|
|
178
|
+
un-table-able checkpoint files.
|
|
179
|
+
This occurs when the problems in A and B are not all identical and the
|
|
180
|
+
set of combinations of software_tag, minimizer_tag, jacobian_tag,
|
|
181
|
+
hessian_tag, and costfun_tag for which there are results in each of A
|
|
182
|
+
and B are not identical.
|
|
183
|
+
E.g. B has a problem not in A and uses a minimizer for which there are
|
|
184
|
+
no results in A.
|
|
185
|
+
5a) If the resulting checkpoint file would have the above issue, the
|
|
186
|
+
checkpoints are incompatible.
|
|
187
|
+
5b) Incompatible checkpoint files can be combined but should raise
|
|
188
|
+
warnings and mark the dataset in the checkpoint file.
|
|
189
|
+
Note: Some datasets may be incompatible where others can be
|
|
190
|
+
successfully combined.
|
|
191
|
+
6) Unselected minimizers and failed problems will be discarded when
|
|
192
|
+
combining.
|
|
193
|
+
|
|
194
|
+
:param files: The files to combine.
|
|
195
|
+
:type files: list[str]
|
|
196
|
+
:param output: The name for the new checkpoint file.
|
|
197
|
+
:type output: str
|
|
198
|
+
:param strategy: The stategy for merging identical elements.
|
|
199
|
+
Options are 'first' or 'last'.
|
|
200
|
+
:type strategy: str
|
|
201
|
+
:param debug: Enable debugging output.
|
|
202
|
+
:type debug: bool
|
|
203
|
+
"""
|
|
204
|
+
if len(files) < 2:
|
|
205
|
+
return
|
|
206
|
+
|
|
207
|
+
print(f"Loading {files[0]}...")
|
|
208
|
+
with open(files[0], 'r', encoding='utf-8') as f:
|
|
209
|
+
A = json.load(f)
|
|
210
|
+
for to_merge in files[1:]:
|
|
211
|
+
print(f"Merging {to_merge}...")
|
|
212
|
+
with open(to_merge, 'r', encoding='utf-8') as f:
|
|
213
|
+
B = json.load(f)
|
|
214
|
+
A = merge(A, B, strategy=strategy)
|
|
215
|
+
|
|
216
|
+
print(f'Writing to {output}...')
|
|
217
|
+
with open(output, 'w', encoding='utf-8') as f:
|
|
218
|
+
json.dump(A, f, indent=2)
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
def merge(A, B, strategy):
|
|
222
|
+
"""
|
|
223
|
+
Merge the results from A and B
|
|
224
|
+
This function can corrupt A and B, they should be discarded after calling.
|
|
225
|
+
|
|
226
|
+
:param A: The first set of results to merge
|
|
227
|
+
:type A: dict[str, list[FittingResult]]
|
|
228
|
+
:param B: The set to merge into A
|
|
229
|
+
:type B: dict[str, list[FittingResult]]
|
|
230
|
+
:param strategy: The strategy to use to merge the results
|
|
231
|
+
:type strategy: str
|
|
232
|
+
|
|
233
|
+
:return: The merged checkpoint data.
|
|
234
|
+
:rtype: dict[str, any]
|
|
235
|
+
"""
|
|
236
|
+
if strategy == 'last':
|
|
237
|
+
A, B = B, A
|
|
238
|
+
for k in B:
|
|
239
|
+
if k not in A:
|
|
240
|
+
A[k] = B[k]
|
|
241
|
+
continue
|
|
242
|
+
A[k]['problems'], update_names = merge_problems(A[k]['problems'],
|
|
243
|
+
B[k]['problems'])
|
|
244
|
+
if update_names:
|
|
245
|
+
for r in B[k]['results']:
|
|
246
|
+
if r['name'] in update_names:
|
|
247
|
+
r['name'] = update_names[r['name']]
|
|
248
|
+
A[k]['results'] = merge_results(A[k]['results'], B[k]['results'],
|
|
249
|
+
strategy=strategy)
|
|
250
|
+
A[k]['failed_problems'] = []
|
|
251
|
+
A[k]['unselected_minimisers'] = {r['software_tag']: []
|
|
252
|
+
for r in A[k]['results']}
|
|
253
|
+
|
|
254
|
+
return A
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
def merge_problems(A: 'dict[str, dict]', B: 'dict[str, dict]'):
|
|
258
|
+
"""
|
|
259
|
+
Merge the problem sections of 2 checkpoint files.
|
|
260
|
+
If problems have matching names but different values, the problem from
|
|
261
|
+
B will be suffixed with a "*".
|
|
262
|
+
|
|
263
|
+
In some cases this could lead to problems with several "*"s although this
|
|
264
|
+
seems unlikely for most use cases.
|
|
265
|
+
|
|
266
|
+
:param A: The first checkpoint problems dict to merge
|
|
267
|
+
:type A: dict[str, dict]
|
|
268
|
+
:param B: The second checkpoint problems dict to merge
|
|
269
|
+
:type B: dict[str, dict]
|
|
270
|
+
|
|
271
|
+
:return: The merged checkpoint problems and a list of problems that have
|
|
272
|
+
been renamed
|
|
273
|
+
:rtype: tuple[dict[str, dict[str, any]], list[str]]
|
|
274
|
+
"""
|
|
275
|
+
update_keys = {}
|
|
276
|
+
for k, prob in B.items():
|
|
277
|
+
# Handle case where A/B contains k, k*, k**, ... from previous merges
|
|
278
|
+
orig_k = k
|
|
279
|
+
k = k.rstrip('*')
|
|
280
|
+
prob['name'] = prob['name'].rstrip('*')
|
|
281
|
+
prob['problem_tag'] = prob['problem_tag'].rstrip('*')
|
|
282
|
+
while k in A:
|
|
283
|
+
A_prob = A[k]
|
|
284
|
+
# Identical - take problem from A
|
|
285
|
+
if (A_prob['ini_params'] == prob['ini_params']
|
|
286
|
+
and A_prob['ini_y'] == prob['ini_y']
|
|
287
|
+
and A_prob['x'] == prob['x']
|
|
288
|
+
and A_prob['y'] == prob['y']
|
|
289
|
+
and A_prob['e'] == prob['e']):
|
|
290
|
+
if orig_k != k:
|
|
291
|
+
update_keys[orig_k] = k
|
|
292
|
+
break
|
|
293
|
+
|
|
294
|
+
# Agree on name but aren't identical
|
|
295
|
+
name_change = '{}*'
|
|
296
|
+
k = name_change.format(k)
|
|
297
|
+
prob['name'] = name_change.format(prob['name'])
|
|
298
|
+
prob['problem_tag'] = name_change.format(prob['problem_tag'])
|
|
299
|
+
|
|
300
|
+
else: # k not in A (no break called)
|
|
301
|
+
A[k] = prob
|
|
302
|
+
if orig_k != k:
|
|
303
|
+
update_keys[orig_k] = k
|
|
304
|
+
continue
|
|
305
|
+
|
|
306
|
+
return A, update_keys
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
def merge_results(A: 'list[dict]', B: 'list[dict]', strategy: str):
|
|
310
|
+
"""
|
|
311
|
+
Merge the results sections of 2 checkpoint files.
|
|
312
|
+
|
|
313
|
+
:param A: The first checkpoint results list to merge
|
|
314
|
+
:type A: list[dict[str, any]]
|
|
315
|
+
:param B: The second checkpoint results list to merge
|
|
316
|
+
:type B: list[dict[str, any]]
|
|
317
|
+
:param strategy: The merge strategy (which one to take in the case of
|
|
318
|
+
conflicts)
|
|
319
|
+
:type strategy: str
|
|
320
|
+
|
|
321
|
+
:return: Merged results list
|
|
322
|
+
:rtype: list[dict[str, any]]
|
|
323
|
+
"""
|
|
324
|
+
def key_gen(k: 'dict'):
|
|
325
|
+
"""
|
|
326
|
+
Get a uid for a result entry in cp file.
|
|
327
|
+
"""
|
|
328
|
+
return (k['name'],
|
|
329
|
+
k['software_tag'],
|
|
330
|
+
k['minimizer_tag'],
|
|
331
|
+
k['jacobian_tag'],
|
|
332
|
+
k['hessian_tag'],
|
|
333
|
+
k['costfun_tag'])
|
|
334
|
+
|
|
335
|
+
A_key = {key_gen(r): i for i, r in enumerate(A)}
|
|
336
|
+
|
|
337
|
+
for res in B:
|
|
338
|
+
key = key_gen(res)
|
|
339
|
+
if key in A_key:
|
|
340
|
+
if (strategy in ['accuracy', 'emissions', 'runtime']
|
|
341
|
+
and A[A_key[key]][strategy] > res[strategy]):
|
|
342
|
+
A[A_key[key]] = res
|
|
343
|
+
else:
|
|
344
|
+
A_key[key] = len(A)
|
|
345
|
+
A.append(res)
|
|
346
|
+
|
|
347
|
+
return A
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
def main():
|
|
351
|
+
"""
|
|
352
|
+
Entry point exposed as the `fitbenchmarking-cp` command.
|
|
353
|
+
"""
|
|
354
|
+
parser = get_parser()
|
|
355
|
+
|
|
356
|
+
args = parser.parse_args(sys.argv[1:])
|
|
357
|
+
|
|
358
|
+
additional_options = {}
|
|
359
|
+
|
|
360
|
+
if args.subprog == 'report':
|
|
361
|
+
if args.filename:
|
|
362
|
+
additional_options['checkpoint_filename'] = args.filename
|
|
363
|
+
generate_report(args.options_file,
|
|
364
|
+
additional_options,
|
|
365
|
+
debug=args.debug_mode)
|
|
366
|
+
elif args.subprog == 'merge':
|
|
367
|
+
merge_data_sets(files=args.files,
|
|
368
|
+
output=args.output_filename,
|
|
369
|
+
strategy=args.strategy,
|
|
370
|
+
debug=args.debug_mode)
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
if __name__ == '__main__':
|
|
374
|
+
main()
|