agox 3.11.0__tar.gz → 3.11.1__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.
- agox-3.11.1/.gitignore +28 -0
- agox-3.11.1/.gitlab/build.yml +29 -0
- agox-3.11.1/.gitlab/docs.yml +33 -0
- agox-3.11.1/.gitlab/tests.yml +57 -0
- agox-3.11.1/CHANGELOG.md +256 -0
- agox-3.11.1/PKG-INFO +111 -0
- agox-3.11.1/README.md +54 -0
- agox-3.11.1/agox/acquisitors/EI.py +54 -0
- agox-3.11.1/agox/algorithms/__init__.py +39 -0
- agox-3.11.1/agox/algorithms/algorithm.py +576 -0
- agox-3.11.1/agox/algorithms/api.py +15 -0
- agox-3.11.1/agox/algorithms/basin_hopping.py +28 -0
- agox-3.11.1/agox/algorithms/basin_hopping_surrogate.py +47 -0
- agox-3.11.1/agox/algorithms/config/__init__.py +59 -0
- agox-3.11.1/agox/algorithms/config/base.py +106 -0
- agox-3.11.1/agox/algorithms/config/module/acquisitor_config.py +60 -0
- agox-3.11.1/agox/algorithms/config/module/collector_config.py +74 -0
- agox-3.11.1/agox/algorithms/config/module/descriptor_config.py +107 -0
- agox-3.11.1/agox/algorithms/config/module/evaluator_config.py +36 -0
- agox-3.11.1/agox/algorithms/config/module/generator_config.py +295 -0
- agox-3.11.1/agox/algorithms/config/module/model_config.py +189 -0
- agox-3.11.1/agox/algorithms/config/module/postprocess_config.py +35 -0
- agox-3.11.1/agox/algorithms/config/module/sampler_config.py +85 -0
- agox-3.11.1/agox/algorithms/config/problem.py +84 -0
- agox-3.11.1/agox/algorithms/config/run.py +26 -0
- agox-3.11.1/agox/algorithms/config/utils/__init__.py +1 -0
- agox-3.11.1/agox/algorithms/config/utils/introspect.py +125 -0
- agox-3.11.1/agox/algorithms/config/utils/subset_spec.py +35 -0
- agox-3.11.1/agox/algorithms/factory/acquisitor_factory.py +58 -0
- agox-3.11.1/agox/algorithms/factory/collector_factory.py +114 -0
- agox-3.11.1/agox/algorithms/factory/descriptor_factory.py +98 -0
- agox-3.11.1/agox/algorithms/factory/evaluator_factory.py +53 -0
- agox-3.11.1/agox/algorithms/factory/generator_factory.py +359 -0
- agox-3.11.1/agox/algorithms/factory/model_factory.py +197 -0
- agox-3.11.1/agox/algorithms/factory/relaxer_factory.py +56 -0
- agox-3.11.1/agox/algorithms/factory/sampler_factory.py +83 -0
- agox-3.11.1/agox/algorithms/gofee.py +68 -0
- agox-3.11.1/agox/algorithms/parallel_composable.py +31 -0
- agox-3.11.1/agox/algorithms/replica_exchange.py +66 -0
- agox-3.11.1/agox/algorithms/rss.py +42 -0
- agox-3.11.1/agox/algorithms/rss_surrogate.py +55 -0
- agox-3.11.1/agox/cli/cli_analysis.py +226 -0
- agox-3.11.1/agox/cli/main.py +21 -0
- agox-3.11.1/agox/collectors/replica_exchange.py +225 -0
- agox-3.11.1/agox/generators/ABC_generator.py +322 -0
- agox-3.11.1/agox/generators/MD.py +149 -0
- agox-3.11.1/agox/generators/__init__.py +58 -0
- agox-3.11.1/agox/generators/block_generators/rattle.py +87 -0
- agox-3.11.1/agox/generators/mixed.py +63 -0
- agox-3.11.1/agox/generators/preference.py +54 -0
- agox-3.11.1/agox/generators/random.py +74 -0
- agox-3.11.1/agox/generators/rattle.py +72 -0
- agox-3.11.1/agox/generators/symmetry.py +304 -0
- agox-3.11.1/agox/generators/symmetry_rattle.py +391 -0
- agox-3.11.1/agox/main/agox.py +229 -0
- agox-3.11.1/agox/models/GPR/priors/repulsive.c +16131 -0
- agox-3.11.1/agox/models/GPR/priors/repulsive.pyx +230 -0
- agox-3.11.1/agox/models/descriptors/exponential_density.py +134 -0
- agox-3.11.1/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.c +22726 -0
- agox-3.11.1/agox/postprocessors/relax.py +87 -0
- agox-3.11.1/agox/samplers/spectral_graph.py +157 -0
- agox-3.11.1/agox/test/algorithm_tests/conftest.py +68 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/algorithms_show_options.py +4 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/bh_example.py +23 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/bh_surrogate_example.py +27 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_ce_example.py +30 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_example.py +23 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_example_change.py +35 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_voronoi_example.py +28 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/list_algorithms.py +13 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/list_modules.py +6 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/rex_example.py +23 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/rss_example.py +25 -0
- agox-3.11.1/agox/test/algorithm_tests/doc_tests/test_scripts.py +32 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/acquisitor_factory_test.py +46 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/collector_factory_test.py +52 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/conftest.py +58 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/descriptor_factory_test.py +50 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/evaluator_factory_test.py +54 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/generator_factory_test.py +75 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/model_factory_test.py +42 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/postprocess_factory_test.py +50 -0
- agox-3.11.1/agox/test/algorithm_tests/factory_tests/sampler_factory_test.py +52 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_default.py +57 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_comp_energy_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ei_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ei_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ensemble_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ensemble_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_md_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_md_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_pretrained_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_pretrained_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_prior_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_prior_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_comp_energy_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ei_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ei_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ensemble_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ensemble_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_md_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_md_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_pretrained_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_pretrained_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_prior_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_prior_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_comp_energy_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_ei_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_ei_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_ensemble_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_md_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_pretrained_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_pretrained_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_prior_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_prior_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_symmetry_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_symmetry_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_comp_energy_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_ei_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_ei_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_ensemble_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_md_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_md_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_pretrained_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_pretrained_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_prior_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_prior_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_comp_energy_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ei_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ei_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ensemble_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ensemble_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_md_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_md_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_pretrained_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_pretrained_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_prior_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_prior_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_comp_energy_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_ei_gofee_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_ei_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_ensemble_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_md_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_md_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_pretrained_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_pretrained_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_prior_rex_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_prior_rex_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_bh_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_bh_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_random_cluster_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_symmetry_gofee_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_symmetry_random_slab_.npz +0 -0
- agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run.py +357 -0
- agox-3.11.1/agox/test/algorithm_tests/test_introspect.py +16 -0
- agox-3.11.1/agox/test/conftest.py +116 -0
- agox-3.11.1/agox/test/run_tests/tests_rss/test.py +0 -0
- agox-3.11.1/agox/test/utils_specs.py +48 -0
- agox-3.11.1/agox.egg-info/PKG-INFO +111 -0
- agox-3.11.1/agox.egg-info/SOURCES.txt +891 -0
- agox-3.11.1/agox.egg-info/requires.txt +40 -0
- agox-3.11.1/docs/.nojekyll +0 -0
- agox-3.11.1/docs/Makefile +28 -0
- agox-3.11.1/docs/README.md +46 -0
- agox-3.11.1/docs/source/_static/.gitkeep +0 -0
- agox-3.11.1/docs/source/agox_framework/modularity.rst +60 -0
- agox-3.11.1/docs/source/agox_framework/observers.rst +94 -0
- agox-3.11.1/docs/source/algorithms/algorithms.rst +70 -0
- agox-3.11.1/docs/source/algorithms/api/api.md +68 -0
- agox-3.11.1/docs/source/algorithms/api/api_configs.md +92 -0
- agox-3.11.1/docs/source/algorithms/api/api_extending.md +172 -0
- agox-3.11.1/docs/source/algorithms/api/api_rss_example.md +121 -0
- agox-3.11.1/docs/source/algorithms/bh.rst +149 -0
- agox-3.11.1/docs/source/algorithms/gofee.rst +172 -0
- agox-3.11.1/docs/source/algorithms/gofee_ce.rst +51 -0
- agox-3.11.1/docs/source/algorithms/gofee_graph_filtering.rst +45 -0
- agox-3.11.1/docs/source/algorithms/lgpr_bh.rst +37 -0
- agox-3.11.1/docs/source/algorithms/rex.rst +61 -0
- agox-3.11.1/docs/source/algorithms/rss.rst +174 -0
- agox-3.11.1/docs/source/conf.py +158 -0
- agox-3.11.1/docs/source/getting_started/rss_script_slurm.py +71 -0
- agox-3.11.1/docs/source/installation.rst +49 -0
- agox-3.11.1/pyproject.toml +101 -0
- agox-3.11.1/releasing.md +84 -0
- agox-3.11.1/uv.lock +4378 -0
- agox-3.11.0/.gitignore +0 -29
- agox-3.11.0/.gitlab/build.yml +0 -27
- agox-3.11.0/.gitlab/docs.yml +0 -28
- agox-3.11.0/.gitlab/tests.yml +0 -55
- agox-3.11.0/CHANGELOG.md +0 -254
- agox-3.11.0/PKG-INFO +0 -91
- agox-3.11.0/README.md +0 -41
- agox-3.11.0/agox/acquisitors/EI.py +0 -51
- agox-3.11.0/agox/cli/cli_analysis.py +0 -226
- agox-3.11.0/agox/cli/cli_notebook.py +0 -108
- agox-3.11.0/agox/cli/main.py +0 -23
- agox-3.11.0/agox/collectors/replica_exchange.py +0 -223
- agox-3.11.0/agox/generators/ABC_generator.py +0 -312
- agox-3.11.0/agox/generators/MD.py +0 -147
- agox-3.11.0/agox/generators/__init__.py +0 -54
- agox-3.11.0/agox/generators/block_generators/rattle.py +0 -82
- agox-3.11.0/agox/generators/random.py +0 -74
- agox-3.11.0/agox/generators/rattle.py +0 -70
- agox-3.11.0/agox/generators/symmetry.py +0 -302
- agox-3.11.0/agox/generators/symmetry_rattle.py +0 -386
- agox-3.11.0/agox/main/agox.py +0 -228
- agox-3.11.0/agox/models/GPR/priors/repulsive.c +0 -11496
- agox-3.11.0/agox/models/GPR/priors/repulsive.pyx +0 -230
- agox-3.11.0/agox/models/descriptors/acsf.py +0 -198
- agox-3.11.0/agox/models/descriptors/exponential_density.py +0 -131
- agox-3.11.0/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.c +0 -18053
- agox-3.11.0/agox/postprocessors/relax.py +0 -87
- agox-3.11.0/agox/samplers/spectral_graph.py +0 -158
- agox-3.11.0/agox/test/conftest.py +0 -113
- agox-3.11.0/agox/test/run_tests/tests_bh/test/automagic_analysis.ipynb +0 -203
- agox-3.11.0/agox.egg-info/PKG-INFO +0 -91
- agox-3.11.0/agox.egg-info/SOURCES.txt +0 -671
- agox-3.11.0/agox.egg-info/requires.txt +0 -36
- agox-3.11.0/docs/Makefile +0 -25
- agox-3.11.0/docs/README.rst +0 -4
- agox-3.11.0/docs/make_gitlab.sh +0 -2
- agox-3.11.0/docs/source/agox_framework/modularity.rst +0 -54
- agox-3.11.0/docs/source/agox_framework/observers.rst +0 -87
- agox-3.11.0/docs/source/algorithms/algorithms.rst +0 -58
- agox-3.11.0/docs/source/algorithms/bh.rst +0 -128
- agox-3.11.0/docs/source/algorithms/gofee.rst +0 -148
- agox-3.11.0/docs/source/algorithms/gofee_ce.rst +0 -29
- agox-3.11.0/docs/source/algorithms/gofee_graph_filtering.rst +0 -21
- agox-3.11.0/docs/source/algorithms/lgpr_bh.rst +0 -14
- agox-3.11.0/docs/source/algorithms/rex.rst +0 -39
- agox-3.11.0/docs/source/algorithms/rss.rst +0 -149
- agox-3.11.0/docs/source/conf.py +0 -146
- agox-3.11.0/docs/source/getting_started/rss_script_slurm.py +0 -63
- agox-3.11.0/docs/source/installation.rst +0 -49
- agox-3.11.0/pyproject.toml +0 -94
- {agox-3.11.0 → agox-3.11.1}/.gitlab/defaults.yml +0 -0
- {agox-3.11.0 → agox-3.11.1}/.gitlab/publish.yml +0 -0
- {agox-3.11.0 → agox-3.11.1}/.gitlab/verify.yml +0 -0
- {agox-3.11.0 → agox-3.11.1}/.gitlab-ci.yml +0 -0
- {agox-3.11.0 → agox-3.11.1}/LICENSE.txt +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/ABC_acquisitor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/GFE_aquisitor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/LCB.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/LCB_penalty.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/LCB_power.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/meta_acquisitor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/replica_exchange/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/replica_exchange/default.py +0 -0
- {agox-3.11.0/agox/cli → agox-3.11.1/agox/algorithms/config/module}/__init__.py +0 -0
- {agox-3.11.0/agox/generators/complementary_energy → agox-3.11.1/agox/algorithms/factory}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/base_criterion/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/base_criterion/base_criterion.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/base_criterion/discrete_distribution.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/distance.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/threshold.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/plot/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/plot/property_plot.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/plot/success_plot.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/descriptor_property.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/energy.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/free_energy.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/property.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/search_analysis.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/analysis/search_data.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/candidates/ABC_candidate.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/candidates/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/candidates/standard.py +0 -0
- {agox-3.11.0/agox/generators/complementary_energy/attractor_methods → agox-3.11.1/agox/cli}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/cli/cli_convert.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/cli/cli_graph_sorting.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/cli/cli_plot.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/collectors/ABC_collector.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/collectors/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/collectors/ray_collector.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/collectors/standard.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/databases/ABC_database.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/databases/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/databases/concurrent_ordered.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/databases/database.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/databases/database_concurrent.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/databases/database_utilities.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/environments/ABC_environment.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/environments/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/environments/environment.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/evaluators/ABC_evaluator.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/evaluators/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/evaluators/local_optimization.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/evaluators/rattle.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/evaluators/single_point.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/add_remove.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/ABC_block.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/block_potential.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/random.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/ce_generator.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/cog.py +0 -0
- {agox-3.11.0/agox/generators/symmetry_utils → agox-3.11.1/agox/generators/complementary_energy}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ABC_attractors.py +0 -0
- {agox-3.11.0/agox/models/descriptors/fingerprint_cython → agox-3.11.1/agox/generators/complementary_energy/attractor_methods}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_another_structure.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_current_structure.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_interpolation.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_kmeans.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/ce_calculators.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/permutation.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/replace.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/reuse.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/sampling.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/steepest_descent.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/symmetry_permutation.py +0 -0
- {agox-3.11.0/agox/models/schnetpack → agox-3.11.1/agox/generators/symmetry_utils}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/symmetry_utils/symmetry_enforcer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/generators/symmetry_utils/symmetry_groups.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/helpers/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/helpers/confinement.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/helpers/gpaw_io.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/helpers/gpaw_subprocess.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/main/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/main/state.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/ABC_model.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/GPR.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/kernels/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/kernels/kernels.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/local_mean.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/priors/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/priors/setup.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/sGPR.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/sGPR_ensemble.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/ase_model.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/composition_model.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/datasets/Ag5O3-dataset.traj +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/datasets/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/datasets/loader.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/ABC_descriptor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint.py +0 -0
- {agox-3.11.0/agox/test → agox-3.11.1/agox/models/descriptors/fingerprint_cython}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.pyx +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_cython/compile.sh +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_cython/setup.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_jax/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_jax/fingerprint_jax.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_jax/utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/scale_select_descriptor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/simple_fingerprint.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/soap.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/spectral_graph_descriptor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/type_descriptor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/voronoi.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/voronoi_site.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/priors/constant.py +0 -0
- {agox-3.11.0/agox/test/model_tests → agox-3.11.1/agox/models/schnetpack}/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/models/schnetpack/schnetpack.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/module.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/observer/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/observer/finalization_handler.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/observer/observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/observer/observer_handler.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/observer/observer_method.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ABC_postprocess.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/centering.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/disjoint_filtering.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/minimum_dist.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax/ray_relax.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax/remote_relax.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/surface_centering.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/wrap.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/ABC_sampler.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/concurrent_tempering.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/fixed_sampler.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/genetic.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/gfe_kmeans.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/gfe_sampler.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/kernel_similarity.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/kmeans.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/metropolis.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/rate_tracker.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/replica_exchange.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/sample.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/.coveragerc +0 -0
- /agox-3.11.0/agox/test/run_tests/tests_rss/test.py → /agox-3.11.1/agox/test/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/acquisitor_test/test_lcb.py +0 -0
- /agox-3.11.0/docs/.nojekyll → /agox-3.11.1/agox/test/algorithm_tests/factory_tests/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/conftest.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_criterion.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_descriptor_property.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_energy_property.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_free_energy_property.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_property_plot.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_restart_data.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_search_collection.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_search_data.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_succces_plot.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/conftest.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_analysis_cli.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_convert_cli.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_graph_sort_cli.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_main_cli.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_plot_cli.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/conftest.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/database_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/database_test_memory.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/database_test_written.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/AgO-dataset.traj +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/B12-dataset.traj +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/C30-dataset.traj +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db1.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db2.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db3.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db4.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db5.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/experiment.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/mos2_databases/db1.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/mos2_databases/db2.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db1.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db2.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db3.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db4.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/experiment.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/expected_outputs/SOAP_AgO.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/expected_outputs/SOAP_B12.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/expected_outputs/SOAP_C30.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/soap_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/spectral_graph_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/empty_cache.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/environment_tests/environment_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/evaluator_tests/check_callback_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/conftest.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/for_docs/nonseeded_script.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/for_docs/seeded_script.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/for_docs/test_doc_scripts.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/generator_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/generator_utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_cog.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_generators.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_permutation.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_random.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_rattle.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_replace.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_sampling.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_steepest_descent.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_symmetry_2.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_symmetry_3.py +0 -0
- /agox-3.11.0/docs/source/_static/.gitkeep → /agox-3.11.1/agox/test/model_tests/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/descriptors_api.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPRJax_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPRJax_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPRJax_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataAgO_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataB12_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataC30_parameter0.pckl +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/gpr_api.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/load_api.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/model_utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/sgpr_api.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/sgpr_api_forces.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_api.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_calculator_model.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_composition_model.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_gpr.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_gpr_jax.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_sparse_gpr.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_sparse_gpr_force_training.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_load.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_local_gpr.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_local_gpr_force_training.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_gpr.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_sgpr_ensemble_local.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_sgpr_global.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_sgpr_local.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_sgpr_sparse_schedule.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/confinement_examples.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/cluster_confinement.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/surface_cluster_confinement.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/surface_film_confinement.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/surface_toplayer_unc.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/two_d_environment.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/disjoint_filtering_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/model_results_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/postprocessor_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/ray_relax.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/surface_centering_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/test_survive_empty.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/replica_exchange/conftest.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/replica_exchange/test_sample.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/replica_exchange/test_sampler.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/run_utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_cluster_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_orca.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/test_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_bh_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_bh_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_rss_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_rss_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/script_block_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/script_block_rss.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/test_block_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/test_block_rss.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/confinement_plot_ComplementaryEnergyGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_gofee_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/script_ce_default_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/script_ce_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/test_ce_default_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/test_ce_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ct/expected_outputs/ct_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ct/script_ct.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ct/test_ct.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/expected_outputs/ea_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/expected_outputs/ea_test/population_5.traj +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/script_ea.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/test_ea.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/confinement_plot_AdditionRemovalGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/thermo_data.json +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/script_gcgo_dft.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/script_gcgo_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/test.txt +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/test_gcgo.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_orca.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/test_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/confinement_plot_AdditionRemovalGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/script_gc.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/test_gc.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_graph_filt/expected_outputs/graph_filtering_gofee_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_graph_filt/expected_outputs/graph_filtering_gofee_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_graph_filt/script_graph_filtering_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_graph_filt/test_graph_filtering_gofee.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_lgpr_bh/expected_outputs/lgpr_bh_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_lgpr_bh/script_lgpr_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_lgpr_bh/test_lgpr_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/confinement_plot_MDgenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/script_md_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/test_md_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/expected_outputs/rex_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/expected_outputs/rex_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/expected_outputs/rex_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/script_rex_dft.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/script_rex_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/test_replica.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_2d_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_2d_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_2d.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_orca.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_chgnet.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_emt.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_gpaw.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_vasp.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/test_rss.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_schnet/script_schnet_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_schnet/test_schnet_bh.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/confinement_plot_RattleGeneratorSym.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/confinement_plot_SymmetryGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/confinement_plot_RattleGeneratorSym.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/confinement_plot_SymmetryGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/confinement_plot_SymmetryGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/db0.db +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/db0_tracker.npz +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/script_gofee_cluster_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/script_gofee_slab_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/script_rss_cluster_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/test_gofee_cluster_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/test_gofee_slab_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/test_rss_cluster_symmetry.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/sampler_tests/sampler_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/test_fixtures.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/test_utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/cache_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/colors_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/plot_atoms_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/plot_cell_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/utils_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/test_feature_dist_filter.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/test_filters.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/test_sparsifiers.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/thermodynamics_test/conftest.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/thermodynamics_test/test_gibbs.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/thermodynamics_test/test_thermodata.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/cache.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/constraints/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/constraints/box_constraint.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/constraints/constraint_manager.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/convert_database.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/decorators.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/ABC_filter.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/all.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/energy.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/feature_distance.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/filter.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/kmeans_energy.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/none.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/random.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/sparse_filter.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/voronoi.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/graph_sorting.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/jupyter_interactive.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/matplotlib_utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/metrics/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/metrics/calibration.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/metrics/metrics.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/numerical_derivative.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/colors.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/plot_atoms.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/plot_cell.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/plot_parity.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/actor.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/pool.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/pool_startup.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/pool_user.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/startup.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/ABC_sparsifier.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/CUR.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/CUR_old.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/MBkmeans.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/random.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/thermodynamics/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/thermodynamics/gibbs.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/utils/thermodynamics/thermodynamics_data.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/writer/__init__.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/writer/utils.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox/writer/writer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox.egg-info/dependency_links.txt +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox.egg-info/entry_points.txt +0 -0
- {agox-3.11.0 → agox-3.11.1}/agox.egg-info/top_level.txt +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/attribute.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/class.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/data.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/exception.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/function.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/method.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/module.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/package.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/property.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/make.bat +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/A.ico +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/agox_framework/agox_framework.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/agox_framework/dataflow.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/algorithms/ea.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/algorithms/gcgo.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/algorithms/search_generator.rst.old +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/actor_ray_example.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/analyzing_databases.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/basic_ray_example.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/bonus_topics.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/evaluator_callback.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/parallel_add.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/parallel_network.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/parallelization.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_analysis.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_convert.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_graph.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_plot.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/command_line_new.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/generators/generators.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/generators/generators_overview.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/generators/using_generators.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/generators/writing_generators.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_other_algorithms.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_running_agox.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_slurm.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_statistics.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_understanding_the_script.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_script_serial.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_script_serial.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_script_single.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_serial_compare.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_simple_single.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/slurm.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/submission.sh +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/index.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/logos/DG_logo.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/logos/INTERCAT_RGB_ONLINE.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/logos/logo-carbon.gif +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/logos/logo-nickel.gif +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/logos/villum_foundation.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/descriptor.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/gpr.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/models.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/scripts/lgpr_load.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/scripts/lgpr_train.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/scripts/parity.png +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/models/sgpr.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/modifying_algorithms.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/potential.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/search.rst.unfinished +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/system.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/references/agox_citation.txt +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/references/references.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/basic_observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/basic_observer.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_and_main_observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_and_main_observer.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_observer.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_observer_test.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_basic_observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_basic_observer.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_sets_basic_observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_sets_basic_observer.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/two_methods_observer.py +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/two_methods_observer.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/writing_modules.rst +0 -0
- {agox-3.11.0 → agox-3.11.1}/setup.cfg +0 -0
- {agox-3.11.0 → agox-3.11.1}/setup.py +0 -0
agox-3.11.1/.gitignore
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Python related:
|
|
2
|
+
**/__pycache__
|
|
3
|
+
.ipynb_checkpoints/
|
|
4
|
+
pip-wheel-metadata/
|
|
5
|
+
agox.egg-info
|
|
6
|
+
|
|
7
|
+
# Cython related
|
|
8
|
+
*.c
|
|
9
|
+
*.so
|
|
10
|
+
.o
|
|
11
|
+
|
|
12
|
+
# Documentation related:
|
|
13
|
+
docs/build/
|
|
14
|
+
docs/_build/
|
|
15
|
+
docs/source/autoapi
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# Test related:
|
|
19
|
+
agox/test/run_tests/expected_outputs/*/*.png
|
|
20
|
+
BA_data/
|
|
21
|
+
|
|
22
|
+
# VSCode related:
|
|
23
|
+
.vscode/
|
|
24
|
+
.venv
|
|
25
|
+
.venv/
|
|
26
|
+
|
|
27
|
+
# CI Related
|
|
28
|
+
.gitlab-ci-local/
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
build-dist:
|
|
2
|
+
stage: build
|
|
3
|
+
image: python:3.11
|
|
4
|
+
rules:
|
|
5
|
+
- if: $CI_COMMIT_TAG
|
|
6
|
+
allow_failure: false
|
|
7
|
+
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
8
|
+
when: manual
|
|
9
|
+
allow_failure: true
|
|
10
|
+
# If you also want this on main to catch issues early, add:
|
|
11
|
+
# - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
12
|
+
variables:
|
|
13
|
+
GIT_STRATEGY: fetch
|
|
14
|
+
GIT_DEPTH: "0" # make tags visible to hatch-vcs / setuptools-scm
|
|
15
|
+
before_script:
|
|
16
|
+
- apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
|
17
|
+
- python -m pip install -U pip build twine
|
|
18
|
+
script:
|
|
19
|
+
- git describe --tags --always || true
|
|
20
|
+
- python -m build --sdist --wheel --outdir dist
|
|
21
|
+
- twine check dist/*
|
|
22
|
+
# Sanity: print the version inside the built wheel
|
|
23
|
+
- python -c "import importlib.metadata as m; print('wheel version:', m.version('agox'))"
|
|
24
|
+
artifacts:
|
|
25
|
+
paths: [dist/]
|
|
26
|
+
expire_in: 1 week
|
|
27
|
+
needs:
|
|
28
|
+
- job: tests
|
|
29
|
+
optional: true # if your tests job exists; remove if not needed
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
build_pages:
|
|
2
|
+
stage: docs
|
|
3
|
+
extends: .install_docs
|
|
4
|
+
needs: []
|
|
5
|
+
image: python:3.10
|
|
6
|
+
script:
|
|
7
|
+
- make -C docs html
|
|
8
|
+
artifacts:
|
|
9
|
+
paths:
|
|
10
|
+
- docs/build/html/
|
|
11
|
+
expire_in: 3 days
|
|
12
|
+
expose_as: "Docs preview"
|
|
13
|
+
rules:
|
|
14
|
+
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
15
|
+
when: manual
|
|
16
|
+
|
|
17
|
+
pages:
|
|
18
|
+
stage: docs
|
|
19
|
+
extends: .install_docs
|
|
20
|
+
image: python:3.10
|
|
21
|
+
needs:
|
|
22
|
+
- test-python3.10
|
|
23
|
+
script:
|
|
24
|
+
- coverage html -d docs/source/_static/htmlcov
|
|
25
|
+
- make -C docs html
|
|
26
|
+
when: on_success
|
|
27
|
+
artifacts:
|
|
28
|
+
paths:
|
|
29
|
+
- docs/build/html
|
|
30
|
+
publish: docs/build/html
|
|
31
|
+
rules:
|
|
32
|
+
- if: $CI_COMMIT_BRANCH == 'dev'
|
|
33
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.test:
|
|
2
|
+
extends: .install_agox
|
|
3
|
+
stage: test
|
|
4
|
+
script:
|
|
5
|
+
- coverage run -m pytest -rsv --junit-xml=report.xml # Generate test report in junit format
|
|
6
|
+
- coverage report # for displaying coverage in job logs
|
|
7
|
+
- coverage xml # for generating coverage.xml report
|
|
8
|
+
coverage: '/^TOTAL.+?(\d+\%)$/'
|
|
9
|
+
artifacts:
|
|
10
|
+
when: always
|
|
11
|
+
reports:
|
|
12
|
+
coverage_report:
|
|
13
|
+
coverage_format: cobertura
|
|
14
|
+
path: coverage.xml
|
|
15
|
+
junit: report.xml
|
|
16
|
+
interruptible: true
|
|
17
|
+
rules:
|
|
18
|
+
# Scheduled pipelines: required
|
|
19
|
+
- if: $CI_PIPELINE_SOURCE == 'schedule'
|
|
20
|
+
allow_failure: false
|
|
21
|
+
# Pre-releases (required on tags)
|
|
22
|
+
- if: '$CI_COMMIT_TAG =~ /^v.*(a|b|rc)\d+$/'
|
|
23
|
+
allow_failure: false
|
|
24
|
+
# Stable releases (required on tags)
|
|
25
|
+
- if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'
|
|
26
|
+
allow_failure: false
|
|
27
|
+
# Merge requests: optional/manual
|
|
28
|
+
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
29
|
+
when: manual
|
|
30
|
+
allow_failure: true
|
|
31
|
+
|
|
32
|
+
test-python3.10:
|
|
33
|
+
extends: .test
|
|
34
|
+
image: python:3.10
|
|
35
|
+
rules:
|
|
36
|
+
- if: $CI_COMMIT_BRANCH == 'dev'
|
|
37
|
+
- if: $CI_PIPELINE_SOURCE == 'merge_request_event'
|
|
38
|
+
- if: $CI_PIPELINE_SOURCE == 'schedule'
|
|
39
|
+
- if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/'
|
|
40
|
+
- if: '$CI_COMMIT_TAG =~ /^v.*(a|b|rc)\d+$/'
|
|
41
|
+
artifacts:
|
|
42
|
+
paths:
|
|
43
|
+
- .coverage
|
|
44
|
+
|
|
45
|
+
test-python3.11:
|
|
46
|
+
extends: .test
|
|
47
|
+
image: python:3.11
|
|
48
|
+
|
|
49
|
+
test-python3.12:
|
|
50
|
+
extends: .test
|
|
51
|
+
image: python:3.12
|
|
52
|
+
|
|
53
|
+
test-python3.13:
|
|
54
|
+
extends: .test
|
|
55
|
+
image: python:3.13
|
|
56
|
+
when: manual
|
|
57
|
+
allow_failure: true
|
agox-3.11.1/CHANGELOG.md
ADDED
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
* Removed upperbound on NumPy, affects only sparingly used matscipy neighbourlist that will fallback to using ASE.
|
|
11
|
+
|
|
12
|
+
## [3.11.0] - 2025-08-15
|
|
13
|
+
|
|
14
|
+
* Moved build system to CI for making it easier to manage releases.
|
|
15
|
+
* Added Grand Canonical modules.
|
|
16
|
+
|
|
17
|
+
## [3.10.2] - 2025-06-24
|
|
18
|
+
|
|
19
|
+
* Fixed issue with package discovery breaking non-editable installs.
|
|
20
|
+
|
|
21
|
+
## [3.10.1] - 2025-06-24
|
|
22
|
+
|
|
23
|
+
* Yanked this release.
|
|
24
|
+
* Failure
|
|
25
|
+
|
|
26
|
+
## [3.10.0]
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
|
|
30
|
+
* `CalculatorModel` and `CompositionModel` both intended for use with universal potentials.
|
|
31
|
+
* Added replica exchange modules: a sampler, a collector and an acquisitor.
|
|
32
|
+
* Added replica exchange documentation with two scripts: one short test script and one real DFT script.
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
* Fixed LCB-penalty acquisition function after changes in 3.9.0
|
|
37
|
+
* Added `check_callback` to allow calculations to be discarded according to user defined criteria.
|
|
38
|
+
|
|
39
|
+
## [3.9.0] - 2024-10-23
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
|
|
43
|
+
* Analysis code refactored into several modules and classes, rather than monolithic `batch_analysis`
|
|
44
|
+
* Analysis code has almost full test coverage now.
|
|
45
|
+
* Updated CLI tools to use `click` rather than `ArgumentParser` some changes to flags.
|
|
46
|
+
* Python version requirement increased to `3.10` or higher. Tests will run on `3.10` for merge requests to `dev` or `stable` and weekly tests will run `3.10`, `3.11`, `3.12`. Motivated by newest Scipy and Numpy
|
|
47
|
+
version not support `3.8` or `3.9`.
|
|
48
|
+
* Numpy version locked to `<2` at least until `GPAW` releases a version that allows `>2`.
|
|
49
|
+
* Added ruff rules to `pyproject.toml`
|
|
50
|
+
* Refactoring of Observer code into several modules and some clean up of the logic, should be more approachable now.
|
|
51
|
+
* Removal of 'Tracker' as it was an entirely unused feature.
|
|
52
|
+
* Rewritten and simplified `Writer` using `rich` for easy construction of more elaborate output layouts.
|
|
53
|
+
* Refactoring of `Confinement`-class - is now not inherited from but created by classes that use it. Simplifies inheritance patterns and
|
|
54
|
+
makes the `Confinement`-class more versatile.
|
|
55
|
+
* Installation problem fixed with changes to `pyproject.toml`.
|
|
56
|
+
|
|
57
|
+
## [3.8.0] - 2024-8-26
|
|
58
|
+
|
|
59
|
+
### Added
|
|
60
|
+
|
|
61
|
+
* Added surface centering postprocessor
|
|
62
|
+
* Added adsorption site-aware Voronoi graph descriptor
|
|
63
|
+
* Added LCB-penalty acquisition function
|
|
64
|
+
* Added Ray-based Parallel Tempering implementation and renamed old implementation to Concurrent Tempering.
|
|
65
|
+
|
|
66
|
+
## [3.7.0] - 2024-8-2
|
|
67
|
+
|
|
68
|
+
### Added
|
|
69
|
+
|
|
70
|
+
* Improved Ray stability by trying to avoid asking for too many resources at once and refactored a bit more.
|
|
71
|
+
* Added additional plotting utility to more easily create plots with custom color schemes.
|
|
72
|
+
* Fixed issue with BoxConstraint lacking methods used by ASE's VASP calculator.
|
|
73
|
+
* Added parity plot functionality and some simple metrics.
|
|
74
|
+
* Revamped some tests and added examples with different calculators to documentation.
|
|
75
|
+
* Added Ensemble LGPR model.
|
|
76
|
+
|
|
77
|
+
## [3.6.0] - 2024-4-2
|
|
78
|
+
|
|
79
|
+
### Added
|
|
80
|
+
|
|
81
|
+
* Added symmetry generators.
|
|
82
|
+
* Changed the internal workings of generators & samplers. Better support for generators that have multiple parents.
|
|
83
|
+
* Removed use of custom docker image for testing, added testing pipelines for other python versions.
|
|
84
|
+
* Scheduling functionality for the SparseGPR to control how often sparsification is done during a search.
|
|
85
|
+
* Printing of git commit sha with the version with the AGOX logo at the start of a run.
|
|
86
|
+
* Sparse GPR no longer trains projected process uncertainty by default, as it can be very slow.
|
|
87
|
+
* Sparse GPR saves fewer attributes with model.save, resulting in much smaller files.
|
|
88
|
+
* Plots produced by generators now indicate atoms that are fixed.
|
|
89
|
+
* Block generators added that place blocks of atoms (rattle and random
|
|
90
|
+
implemented)
|
|
91
|
+
* MD generator added.
|
|
92
|
+
|
|
93
|
+
### Changed
|
|
94
|
+
|
|
95
|
+
* Changelog using Keep a Changelog guidelines.
|
|
96
|
+
|
|
97
|
+
### Fixed
|
|
98
|
+
|
|
99
|
+
* Fixed bug in visual ordering of atoms plotted with `plot_atoms` when the `repeat` option is used.
|
|
100
|
+
|
|
101
|
+
## [3.5.3] - 2023-12-19
|
|
102
|
+
|
|
103
|
+
### Added
|
|
104
|
+
|
|
105
|
+
* Added wrap keyword in BoxConstraint to control if atoms are wrapped
|
|
106
|
+
inside periodic confinement directions. Default is false to conform
|
|
107
|
+
with BFGS.
|
|
108
|
+
|
|
109
|
+
## [3.5.2] - 2023-11-16
|
|
110
|
+
|
|
111
|
+
### Added
|
|
112
|
+
|
|
113
|
+
* Added SafeBFGS which fixes an issue where relaxations take an indefinite amount of time due the Hessian becoming singular and the optimization step containing nans.
|
|
114
|
+
|
|
115
|
+
## [3.5.1] - 2023-11-15
|
|
116
|
+
|
|
117
|
+
### Fixed
|
|
118
|
+
|
|
119
|
+
* Fixes issue where jobs using Ray often crash at the very beginning of the run.
|
|
120
|
+
|
|
121
|
+
## [3.5.0] - 2023-11-07
|
|
122
|
+
|
|
123
|
+
### Changed
|
|
124
|
+
|
|
125
|
+
* Small updates to Ray, but installing Ray with more dependencies easist option is to do `pip install ray[default]`.
|
|
126
|
+
|
|
127
|
+
## [3.4.0] - 2023-10-26
|
|
128
|
+
|
|
129
|
+
### Added
|
|
130
|
+
|
|
131
|
+
* Added a postprocessor to filter disjoint candidates.
|
|
132
|
+
|
|
133
|
+
## [3.3.0] - 2023-10-17
|
|
134
|
+
|
|
135
|
+
### Added
|
|
136
|
+
|
|
137
|
+
* Added coverage report to gitlab CI.
|
|
138
|
+
|
|
139
|
+
## [3.2.5] - 2023-10-17
|
|
140
|
+
|
|
141
|
+
### Added
|
|
142
|
+
|
|
143
|
+
* Added a method to make it easier handle transfer and regular data with the sparse GPR.
|
|
144
|
+
|
|
145
|
+
## [3.2.4] - 2023-10-16
|
|
146
|
+
|
|
147
|
+
### Changed
|
|
148
|
+
|
|
149
|
+
* Minor documentation fixes.
|
|
150
|
+
|
|
151
|
+
## [3.2.3] - 2023-10-09
|
|
152
|
+
|
|
153
|
+
### Fixed
|
|
154
|
+
|
|
155
|
+
* Bug fixes for sparsifiers and added a test for sparsifiers.
|
|
156
|
+
|
|
157
|
+
## [3.2.2] - 2023-09-22
|
|
158
|
+
|
|
159
|
+
### Fixed
|
|
160
|
+
|
|
161
|
+
* Bug fixes related to Cython release of 3+
|
|
162
|
+
|
|
163
|
+
## [3.2.1] - 2023-09-14
|
|
164
|
+
|
|
165
|
+
### Changed
|
|
166
|
+
|
|
167
|
+
* Pin Cython to 0.29.36
|
|
168
|
+
|
|
169
|
+
## [3.2.0] - 2023-09-08
|
|
170
|
+
|
|
171
|
+
### Added
|
|
172
|
+
|
|
173
|
+
* Added possibility to train sparse GPRs on energies and forces.
|
|
174
|
+
|
|
175
|
+
## [3.1.2] - 2023-09-08
|
|
176
|
+
|
|
177
|
+
### Fixed
|
|
178
|
+
|
|
179
|
+
* Fixed bug where the DescriptorBaseClass takes kwargs and therefore wouldnt throw an error for unused keyword arguments leading to unintended behaviour.
|
|
180
|
+
|
|
181
|
+
## [3.1.1] - 2023-08-07
|
|
182
|
+
|
|
183
|
+
### Fixed
|
|
184
|
+
|
|
185
|
+
* Bugfix for `_make_local_sigma` method
|
|
186
|
+
|
|
187
|
+
## [3.1.0] - 2023-07-18
|
|
188
|
+
|
|
189
|
+
### Added
|
|
190
|
+
|
|
191
|
+
* Updated documentation about Ray and about using filters to analyze structures, both are in bonus topics.
|
|
192
|
+
* Added FeatureDistanceFilter and a test for it.
|
|
193
|
+
|
|
194
|
+
## [3.0.0] - 2023-07-10
|
|
195
|
+
|
|
196
|
+
### Changed
|
|
197
|
+
|
|
198
|
+
* Rewritten GPR and SparseGPR models able to handle both global and local descriptors
|
|
199
|
+
* GPR kernels inheriting from Scikit-learn, but with added functionality
|
|
200
|
+
* Descriptor initialization has changed to better fit into standard AGOX use.
|
|
201
|
+
|
|
202
|
+
### Added
|
|
203
|
+
|
|
204
|
+
* Parallel hyperparameter optimization using Ray.
|
|
205
|
+
* Filters and sparsifiers to use with GPR models
|
|
206
|
+
* Ability to add validation data to models.
|
|
207
|
+
* New and improved save/load format for models
|
|
208
|
+
* Analytical forces
|
|
209
|
+
* Uncertainty quantification with projected process for Sparse GPR
|
|
210
|
+
* Analytical uncertainty forces
|
|
211
|
+
* Marginal likelihood for Sparse GPR
|
|
212
|
+
* Monte Carlo hyperparameter optimization for Sparse GPR
|
|
213
|
+
|
|
214
|
+
## [2.3.0] - 2023-05-02
|
|
215
|
+
|
|
216
|
+
### Changed
|
|
217
|
+
|
|
218
|
+
* Gitlab CI now enabled.
|
|
219
|
+
* Plotting code cleaned up.
|
|
220
|
+
* Replaced the logger with a more general tracker module.
|
|
221
|
+
|
|
222
|
+
### Fixed
|
|
223
|
+
|
|
224
|
+
* GPAW_IO bug fixes.
|
|
225
|
+
* Bug fixes for parallel collector with updatable generators.
|
|
226
|
+
|
|
227
|
+
### Added
|
|
228
|
+
|
|
229
|
+
* Complemenetary Energy Generator added.
|
|
230
|
+
* Cache for e.g. descriptors added.
|
|
231
|
+
|
|
232
|
+
### Removed
|
|
233
|
+
|
|
234
|
+
* Removed 'test_scripts' directory which was not supposed to be used anymore.
|
|
235
|
+
|
|
236
|
+
[Unreleased]: https://gitlab.com/agox/agox/-/compare/v3.9.0...dev
|
|
237
|
+
[3.9.0]: https://gitlab.com/agox/agox/-/compare/v3.8.0...v3.9.0
|
|
238
|
+
[3.8.0]: https://gitlab.com/agox/agox/-/compare/v3.7.0...v3.8.0
|
|
239
|
+
[3.7.0]: https://gitlab.com/agox/agox/-/compare/v3.6.0...v3.7.0
|
|
240
|
+
[3.6.0]: https://gitlab.com/agox/agox/-/compare/v3.5.2...v3.6.0
|
|
241
|
+
[3.5.2]: https://gitlab.com/agox/agox/-/compare/v3.5.1...v3.5.2
|
|
242
|
+
[3.5.1]: https://gitlab.com/agox/agox/-/compare/v3.5.0...v3.5.1
|
|
243
|
+
[3.5.0]: https://gitlab.com/agox/agox/-/compare/v3.4.0...v3.5.0
|
|
244
|
+
[3.4.0]: https://gitlab.com/agox/agox/-/compare/v3.3.0...v3.4.0
|
|
245
|
+
[3.3.0]: https://gitlab.com/agox/agox/-/compare/v3.2.5...v3.3.0
|
|
246
|
+
[3.2.5]: https://gitlab.com/agox/agox/-/compare/v3.2.4...v3.2.5
|
|
247
|
+
[3.2.4]: https://gitlab.com/agox/agox/-/compare/v3.2.3...v3.2.4
|
|
248
|
+
[3.2.3]: https://gitlab.com/agox/agox/-/compare/v3.2.2...v3.2.3
|
|
249
|
+
[3.2.2]: https://gitlab.com/agox/agox/-/compare/v3.2.1...v3.2.2
|
|
250
|
+
[3.2.1]: https://gitlab.com/agox/agox/-/compare/v3.2.0...v3.2.1
|
|
251
|
+
[3.2.0]: https://gitlab.com/agox/agox/-/compare/v3.1.2...v3.2.0
|
|
252
|
+
[3.1.2]: https://gitlab.com/agox/agox/-/compare/v3.1.1...v3.1.2
|
|
253
|
+
[3.1.1]: https://gitlab.com/agox/agox/-/compare/v3.1.0...v3.1.1
|
|
254
|
+
[3.1.0]: https://gitlab.com/agox/agox/-/compare/v3.0.0...v3.1.0
|
|
255
|
+
[3.0.0]: https://gitlab.com/agox/agox/-/compare/v2.3.0...v3.0.0
|
|
256
|
+
[2.3.0]: https://gitlab.com/agox/agox/-/compare/v2.2.1...v2.3.0
|
agox-3.11.1/PKG-INFO
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agox
|
|
3
|
+
Version: 3.11.1
|
|
4
|
+
Summary: Atomistic Global Optimziation X is a framework for structure optimization in materials science.
|
|
5
|
+
Author: AGOX Developers
|
|
6
|
+
Author-email: "Mads-Peter V. Christiansen" <machri@phys.au.dk>, Nikolaj Rønne <nronne@phys.au.dk>, Bjørk Hammer <hammer@phys.au.dk>
|
|
7
|
+
License-Expression: GPL-3.0-only
|
|
8
|
+
Project-URL: homepage, https://agox.gitlab.io/agox/
|
|
9
|
+
Project-URL: Repository, https://gitlab.com/agox/agox
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE.txt
|
|
20
|
+
Requires-Dist: numpy>=2
|
|
21
|
+
Requires-Dist: scipy
|
|
22
|
+
Requires-Dist: ase
|
|
23
|
+
Requires-Dist: matplotlib
|
|
24
|
+
Requires-Dist: cymem
|
|
25
|
+
Requires-Dist: scikit-learn
|
|
26
|
+
Requires-Dist: h5py
|
|
27
|
+
Requires-Dist: dscribe>=2.0.0
|
|
28
|
+
Requires-Dist: ray
|
|
29
|
+
Requires-Dist: rich-click>=1.8.3
|
|
30
|
+
Requires-Dist: pydantic>=2.11.7
|
|
31
|
+
Requires-Dist: ase-ga>=1.0.3
|
|
32
|
+
Provides-Extra: test
|
|
33
|
+
Requires-Dist: pytest; extra == "test"
|
|
34
|
+
Requires-Dist: pytest-mock; extra == "test"
|
|
35
|
+
Requires-Dist: pytest-regressions; extra == "test"
|
|
36
|
+
Provides-Extra: docs
|
|
37
|
+
Requires-Dist: sphinx; extra == "docs"
|
|
38
|
+
Requires-Dist: furo; extra == "docs"
|
|
39
|
+
Requires-Dist: sphinx-autoapi; extra == "docs"
|
|
40
|
+
Requires-Dist: sphinx-copybutton; extra == "docs"
|
|
41
|
+
Requires-Dist: sphinx-tabs; extra == "docs"
|
|
42
|
+
Requires-Dist: sphinx-design; extra == "docs"
|
|
43
|
+
Requires-Dist: sphinx-autobuild; extra == "docs"
|
|
44
|
+
Requires-Dist: myst-parser; extra == "docs"
|
|
45
|
+
Requires-Dist: myst-nb; extra == "docs"
|
|
46
|
+
Requires-Dist: sphinx-substitution-extensions; extra == "docs"
|
|
47
|
+
Requires-Dist: ipywidgets; extra == "docs"
|
|
48
|
+
Provides-Extra: torchjax
|
|
49
|
+
Requires-Dist: torch; extra == "torchjax"
|
|
50
|
+
Requires-Dist: jax; extra == "torchjax"
|
|
51
|
+
Requires-Dist: jaxlib; extra == "torchjax"
|
|
52
|
+
Requires-Dist: typing_extensions; extra == "torchjax"
|
|
53
|
+
Requires-Dist: matscipy; extra == "torchjax"
|
|
54
|
+
Provides-Extra: all
|
|
55
|
+
Requires-Dist: agox[docs,test]; extra == "all"
|
|
56
|
+
Dynamic: license-file
|
|
57
|
+
|
|
58
|
+
# Atomistic Global Optimization X (AGOX)
|
|
59
|
+
|
|
60
|
+

|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
AGOX is a package for global optimization of atomic system using e.g. the energy
|
|
64
|
+
calculated from density functional theory as the objective function. AGOX interfaces
|
|
65
|
+
with the Atomistic Simulation Environment (ASE) and as such supports any of
|
|
66
|
+
calculators in ASE as objectives for optimization.
|
|
67
|
+
|
|
68
|
+
AGOX is built to be flexible, consisting of modules that can be put together to
|
|
69
|
+
create an optimization algorithm, from simple random searches to Bayesian searches
|
|
70
|
+
guided by a surrogate model and many more.
|
|
71
|
+
|
|
72
|
+
Check out the documentation at
|
|
73
|
+
|
|
74
|
+
https://agox.gitlab.io/agox/
|
|
75
|
+
|
|
76
|
+
## Installation
|
|
77
|
+
|
|
78
|
+
AGOX can be installed from PyPI
|
|
79
|
+
|
|
80
|
+
```
|
|
81
|
+
pip install agox
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Or from source by cloning the repo.
|
|
85
|
+
|
|
86
|
+
## Contributions & Issues
|
|
87
|
+
|
|
88
|
+
Feel free to make a fork and submit a merge request!
|
|
89
|
+
|
|
90
|
+
If you have an issue or a question please post it on the issue board!
|
|
91
|
+
|
|
92
|
+
## Authors
|
|
93
|
+
|
|
94
|
+
The main AGOX framework has been written by
|
|
95
|
+
* Mads-Peter Verner Christiansen
|
|
96
|
+
* Nikolaj Rønne
|
|
97
|
+
* Bjørk Hammer
|
|
98
|
+
|
|
99
|
+
with inspiration and help from current and previous members of the Hammer group at Aarhus University, Denmark.
|
|
100
|
+
Parts of the code have been contributed by
|
|
101
|
+
|
|
102
|
+
* Andreas Slavensky (Complementary Energy Generator)
|
|
103
|
+
* Florian Brix (Symmetry generators)
|
|
104
|
+
* Joe Pitfield (Replica-exchange)
|
|
105
|
+
* Jon Eunan Quinlivan Dominguez (Grand canonical)
|
|
106
|
+
|
|
107
|
+
## License
|
|
108
|
+
|
|
109
|
+
AGOX is released under the GPLv3 license.
|
|
110
|
+
|
|
111
|
+
|
agox-3.11.1/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Atomistic Global Optimization X (AGOX)
|
|
2
|
+
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
AGOX is a package for global optimization of atomic system using e.g. the energy
|
|
7
|
+
calculated from density functional theory as the objective function. AGOX interfaces
|
|
8
|
+
with the Atomistic Simulation Environment (ASE) and as such supports any of
|
|
9
|
+
calculators in ASE as objectives for optimization.
|
|
10
|
+
|
|
11
|
+
AGOX is built to be flexible, consisting of modules that can be put together to
|
|
12
|
+
create an optimization algorithm, from simple random searches to Bayesian searches
|
|
13
|
+
guided by a surrogate model and many more.
|
|
14
|
+
|
|
15
|
+
Check out the documentation at
|
|
16
|
+
|
|
17
|
+
https://agox.gitlab.io/agox/
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
AGOX can be installed from PyPI
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
pip install agox
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Or from source by cloning the repo.
|
|
28
|
+
|
|
29
|
+
## Contributions & Issues
|
|
30
|
+
|
|
31
|
+
Feel free to make a fork and submit a merge request!
|
|
32
|
+
|
|
33
|
+
If you have an issue or a question please post it on the issue board!
|
|
34
|
+
|
|
35
|
+
## Authors
|
|
36
|
+
|
|
37
|
+
The main AGOX framework has been written by
|
|
38
|
+
* Mads-Peter Verner Christiansen
|
|
39
|
+
* Nikolaj Rønne
|
|
40
|
+
* Bjørk Hammer
|
|
41
|
+
|
|
42
|
+
with inspiration and help from current and previous members of the Hammer group at Aarhus University, Denmark.
|
|
43
|
+
Parts of the code have been contributed by
|
|
44
|
+
|
|
45
|
+
* Andreas Slavensky (Complementary Energy Generator)
|
|
46
|
+
* Florian Brix (Symmetry generators)
|
|
47
|
+
* Joe Pitfield (Replica-exchange)
|
|
48
|
+
* Jon Eunan Quinlivan Dominguez (Grand canonical)
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
AGOX is released under the GPLv3 license.
|
|
53
|
+
|
|
54
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import numpy as np
|
|
2
|
+
from scipy.stats import norm
|
|
3
|
+
|
|
4
|
+
from agox.acquisitors import AcquisitorBaseClass
|
|
5
|
+
from agox.observer import Observer
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ExpectedImprovementAcquisitor(AcquisitorBaseClass):
|
|
9
|
+
name = "EIAcquisitor"
|
|
10
|
+
|
|
11
|
+
def __init__(self, model, database, xi=0.01, **kwargs):
|
|
12
|
+
super().__init__(**kwargs)
|
|
13
|
+
self.model = model
|
|
14
|
+
self.xi = xi
|
|
15
|
+
self.lowest_energy = 10e10
|
|
16
|
+
self.add_observer_method(self.update, sets={}, gets={}, order=0, handler_identifier="database")
|
|
17
|
+
self.attach(database)
|
|
18
|
+
|
|
19
|
+
def calculate_acquisition_function(self, candidates):
|
|
20
|
+
fitness = np.zeros(len(candidates))
|
|
21
|
+
for i, candidate in enumerate(candidates):
|
|
22
|
+
E, sigma = self.model.predict_energy_and_uncertainty(candidate)
|
|
23
|
+
fitness[i] = self.acquisition_function(E, sigma)
|
|
24
|
+
candidate.add_meta_information("model_energy", E)
|
|
25
|
+
candidate.add_meta_information("uncertainty", sigma)
|
|
26
|
+
return fitness
|
|
27
|
+
|
|
28
|
+
def acquisition_function(self, E, sigma):
|
|
29
|
+
mu = E
|
|
30
|
+
mu_opt = self.lowest_energy
|
|
31
|
+
with np.errstate(divide="warn"):
|
|
32
|
+
imp = mu_opt - mu - self.xi
|
|
33
|
+
Z = imp / sigma
|
|
34
|
+
ei = imp * norm.cdf(Z) + sigma * norm.pdf(Z)
|
|
35
|
+
return -ei
|
|
36
|
+
|
|
37
|
+
def print_information(self, candidates, acquisition_values):
|
|
38
|
+
if self.do_check():
|
|
39
|
+
for i, candidate in enumerate(candidates):
|
|
40
|
+
fitness = acquisition_values[i]
|
|
41
|
+
E = candidate.get_meta_information("model_energy")
|
|
42
|
+
sigma = candidate.get_meta_information("uncertainty")
|
|
43
|
+
self.writer(f"Candidate {i}: E = {E:8.3f}, s = {sigma:8.3f}, EI = {fitness:8.6f}")
|
|
44
|
+
|
|
45
|
+
@Observer.observer_method
|
|
46
|
+
def update(self, database, state):
|
|
47
|
+
self.lowest_energy = database.get_best_energy()
|
|
48
|
+
self.writer("Lowest energy: {}".format(self.lowest_energy))
|
|
49
|
+
|
|
50
|
+
def do_check(self, **kwargs):
|
|
51
|
+
return self.model.ready_state
|
|
52
|
+
|
|
53
|
+
def get_acquisition_calculator(self):
|
|
54
|
+
return self.model
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# ruff: noqa: I001, E402
|
|
2
|
+
from agox.algorithms.config import ProblemConfig, RunConfig, BaseConfig
|
|
3
|
+
|
|
4
|
+
from agox.algorithms.parallel_composable import ParallelAlgorithm
|
|
5
|
+
from agox.algorithms.algorithm import Algorithm, AlgorithmConfig
|
|
6
|
+
|
|
7
|
+
from agox.algorithms.rss import RandomStructureSearch, RandomSearchConfig
|
|
8
|
+
from agox.algorithms.rss_surrogate import SurrogateRandomStructureSearch, SurrogateRandomSearchConfig
|
|
9
|
+
from agox.algorithms.gofee import GOFEE, GOFEEConfig
|
|
10
|
+
from agox.algorithms.basin_hopping import BasinHopping, BasinHoppingConfig
|
|
11
|
+
from agox.algorithms.basin_hopping_surrogate import SurrogateBasinHopping, SurrogateBasinHoppingConfig
|
|
12
|
+
from agox.algorithms.replica_exchange import ReplicaExchange, ReplicaExchangeConfig
|
|
13
|
+
|
|
14
|
+
from agox.algorithms.api import create_search
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
# Algorithm configurations
|
|
18
|
+
'BaseConfig',
|
|
19
|
+
'ProblemConfig',
|
|
20
|
+
'RunConfig',
|
|
21
|
+
'AlgorithmConfig',
|
|
22
|
+
'ParallelAlgorithm',
|
|
23
|
+
'Algorithm',
|
|
24
|
+
# Algorithm implementations
|
|
25
|
+
'RandomStructureSearch',
|
|
26
|
+
'RandomSearchConfig',
|
|
27
|
+
'SurrogateRandomStructureSearch',
|
|
28
|
+
'SurrogateRandomSearchConfig',
|
|
29
|
+
'GOFEE',
|
|
30
|
+
'GOFEEConfig',
|
|
31
|
+
'BasinHopping',
|
|
32
|
+
'BasinHoppingConfig',
|
|
33
|
+
'SurrogateBasinHopping',
|
|
34
|
+
'SurrogateBasinHoppingConfig',
|
|
35
|
+
'ReplicaExchange',
|
|
36
|
+
'ReplicaExchangeConfig',
|
|
37
|
+
# Algorithm API
|
|
38
|
+
'create_search'
|
|
39
|
+
]
|