agox 3.7.0__tar.gz → 3.7.0rc1__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.7.0/agox.egg-info → agox-3.7.0rc1}/PKG-INFO +1 -1
- {agox-3.7.0 → agox-3.7.0rc1/agox.egg-info}/PKG-INFO +1 -1
- {agox-3.7.0 → agox-3.7.0rc1}/LICENSE.txt +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/MANIFEST.in +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/README.md +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/acquisitors/ABC_acquisitor.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/acquisitors/EI.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/acquisitors/LCB.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/acquisitors/LCB_power.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/acquisitors/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/candidates/ABC_candidate.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/candidates/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/candidates/standard.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/cli_analysis.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/cli_convert.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/cli_example.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/cli_graph_sorting.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/cli_notebook.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/cli/main.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/collectors/ABC_collector.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/collectors/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/collectors/ray_collector.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/collectors/standard.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/databases/ABC_database.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/databases/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/databases/concurrent_ordered.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/databases/database.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/databases/database_concurrent.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/databases/database_utilities.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/environments/ABC_environment.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/environments/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/environments/environment.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/evaluators/ABC_evaluator.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/evaluators/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/evaluators/local_optimization.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/evaluators/rattle.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/evaluators/single_point.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/ABC_generator.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/MD.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/block_generators/ABC_block.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/block_generators/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/block_generators/random.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/block_generators/rattle.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/ce_generator.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/cog.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/ABC_attractors.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_another_structure.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_current_structure.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_interpolation.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_kmeans.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/ce_calculators.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/permutation.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/random.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/rattle.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/replace.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/reuse.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/sampling.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/steepest_descent.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/symmetry_permutation.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/symmetry_rattle.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/symmetry_utils/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/symmetry_utils/symmetry_enforcer.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/generators/symmetry_utils/symmetry_groups.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/helpers/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/helpers/confinement.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/helpers/gpaw_io.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/helpers/gpaw_subprocess.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/main.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/ABC_model.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/GPR.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/kernels/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/kernels/kernels.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/local_mean.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/priors/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/priors/repulsive.c +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/priors/repulsive.pyx +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/priors/setup.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/sGPR.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/GPR/sGPR_ensemble.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/datasets/Ag5O3-dataset.traj +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/datasets/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/datasets/loader.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/ABC_descriptor.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/acsf.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/exponential_density.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/fingerprint.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/fingerprint_cython/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.c +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.pyx +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/fingerprint_cython/setup.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/scale_select_descriptor.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/simple_fingerprint.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/soap.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/spectral_graph_descriptor.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/type_descriptor.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/descriptors/voronoi.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/priors/constant.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/schnetpack/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/models/schnetpack/schnetpack.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/module.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/observer.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/ABC_postprocess.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/centering.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/disjoint_filtering.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/immunizer.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/minimum_dist.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/optimizers/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/optimizers/safe_bfgs.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/ray_relax.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/relax.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/postprocessors/wrap.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/ABC_sampler.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/fixed_sampler.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/genetic.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/kernel_similarity.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/kmeans.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/metropolis.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/parallel_tempering_sampler.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/samplers/spectral_graph.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/.coveragerc +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/acquisitor_test/test_lcb.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/conftest.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/database_tests/database_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/datasets/AgO-dataset.traj +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/datasets/B12-dataset.traj +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/datasets/C30-dataset.traj +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/datasets/databases/mos2_databases/db1.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/datasets/databases/mos2_databases/db2.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/descriptor_tests/expected_outputs/SOAP_AgO.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/descriptor_tests/expected_outputs/SOAP_B12.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/descriptor_tests/expected_outputs/SOAP_C30.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/descriptor_tests/soap_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/descriptor_tests/spectral_graph_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/empty_cache.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/environment_tests/environment_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/conftest.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter2.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataAgO_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataB12_parameter1.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/for_docs/nonseeded_script.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/for_docs/seeded_script.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/for_docs/test_doc_scripts.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/generator_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/generator_utils.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_cog.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_generators.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_permutation.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_random.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_rattle.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_replace.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_sampling.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_steepest_descent.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_symmetry_2.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/generator_tests/test_symmetry_3.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/descriptors_api.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataAgO_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataB12_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataC30_parameter0.pckl +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/gpr_api.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/load_api.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/model_utils.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/sgpr_api.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/sgpr_api_forces.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_api.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_global_gpr.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_global_sparse_gpr.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_global_sparse_gpr_force_training.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_load.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_local_gpr.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_local_gpr_force_training.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_ray_gpr.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_ray_sgpr_ensemble_local.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_ray_sgpr_global.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_ray_sgpr_local.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/model_tests/test_sgpr_sparse_schedule.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/modifying_examples/confinement_examples.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/modifying_examples/plots/cluster_confinement.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/modifying_examples/plots/surface_cluster_confinement.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/modifying_examples/plots/surface_film_confinement.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/modifying_examples/plots/surface_toplayer_unc.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/modifying_examples/plots/two_d_environment.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/postprocessor_tests/disjoint_filtering_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/postprocessor_tests/model_results_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/postprocessor_tests/postprocessor_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/postprocessor_tests/test_survive_empty.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/run_utils.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_cluster_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_bulk_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_bulk_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_bulk_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_bulk_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_cluster_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_cluster_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_cluster_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_cluster_orca.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_cluster_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_surface_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_surface_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_surface_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/script_bh_surface_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test/automagic_analysis.ipynb +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test/dbs/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test/dbs/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_bh/test_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/expected_outputs/block_bh_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/expected_outputs/block_bh_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/expected_outputs/block_rss_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/expected_outputs/block_rss_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/script_block_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/script_block_rss.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/test_block_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_block/test_block_rss.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/confinement_plot_ComplementaryEnergyGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/expected_outputs/ce_gofee_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/script_ce_default_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/script_ce_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/test_ce_default_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ce/test_ce_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ea/expected_outputs/ea_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ea/expected_outputs/ea_test/population_5.traj +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ea/script_ea.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_ea/test_ea.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/confinement_plot_RattleGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_orca.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_surface_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_surface_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_surface_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/script_gofee_surface_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_gofee/test_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_graph_filt/expected_outputs/graph_filtering_gofee_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_graph_filt/expected_outputs/graph_filtering_gofee_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_graph_filt/script_graph_filtering_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_graph_filt/test_graph_filtering_gofee.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_lgpr_bh/expected_outputs/lgpr_bh_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_lgpr_bh/script_lgpr_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_lgpr_bh/test_lgpr_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/confinement_plot_MDgenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_md/script_md_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_md/test_md_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_pt/expected_outputs/pt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_pt/script_pt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_pt/test_pt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_2d_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_2d_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/confinement_plot_RandomGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_2d.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_bulk_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_bulk_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_bulk_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_bulk_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_cluster_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_cluster_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_cluster_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_cluster_orca.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_cluster_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_surface_chgnet.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_surface_emt.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_surface_gpaw.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/script_rss_surface_vasp.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_rss/test_rss.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_schnet/script_schnet_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_schnet/test_schnet_bh.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/confinement_plot_RattleGeneratorSym.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/confinement_plot_SymmetryGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/confinement_plot_RattleGeneratorSym.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/confinement_plot_SymmetryGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/confinement_plot_SymmetryGenerator.png +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/db0.db +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/db0_tracker.npz +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/script_gofee_cluster_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/script_gofee_slab_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/script_rss_cluster_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/test_gofee_cluster_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/test_gofee_slab_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/run_tests/tests_symmetry/test_rss_cluster_symmetry.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/sampler_tests/sampler_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/test_utils.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/analysis_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/cache_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/plot_tests/colors_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/plot_tests/plot_atoms_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/plot_tests/plot_cell_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/plot_tests/utils_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/test_feature_dist_filter.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/test_filters.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/test_sparsifiers.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/test/utils_tests/tracker_test.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/tracker.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/batch_analysis.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/cache.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/constraints/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/constraints/box_constraint.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/convert_database.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/data_selection.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/decorators.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/ABC_filter.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/all.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/energy.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/feature_distance.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/filter.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/kmeans_energy.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/none.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/random.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/sparse_filter.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/filters/voronoi.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/graph_sorting.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/jupyter_interactive.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/matplotlib_utils.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/metrics/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/metrics/calibration.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/metrics/metrics.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/numerical_derivative.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/plot/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/plot/colors.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/plot/plot_atoms.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/plot/plot_cell.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/plot/plot_parity.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/plot/utils.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/actor.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/pool.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/pool_startup.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/pool_user.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/startup.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/testing/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/testing/log_reader.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/ray/testing/slurm_test_functions.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/sparsifiers/ABC_sparsifier.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/sparsifiers/CUR.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/sparsifiers/CUR_old.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/sparsifiers/MBkmeans.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/sparsifiers/__init__.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/utils/sparsifiers/random.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox/writer.py +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox.egg-info/SOURCES.txt +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox.egg-info/dependency_links.txt +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox.egg-info/entry_points.txt +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox.egg-info/requires.txt +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/agox.egg-info/top_level.txt +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/pyproject.toml +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/setup.cfg +0 -0
- {agox-3.7.0 → agox-3.7.0rc1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: agox
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.0rc1
|
|
4
4
|
Summary: Atomistic Global Optimziation X is a framework for structure optimization in materials science.
|
|
5
5
|
Author: AGOX Developers
|
|
6
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>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: agox
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.0rc1
|
|
4
4
|
Summary: Atomistic Global Optimziation X is a framework for structure optimization in materials science.
|
|
5
5
|
Author: AGOX Developers
|
|
6
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>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{agox-3.7.0 → agox-3.7.0rc1}/agox/generators/complementary_energy/attractor_methods/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|