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.
Files changed (943) hide show
  1. agox-3.11.1/.gitignore +28 -0
  2. agox-3.11.1/.gitlab/build.yml +29 -0
  3. agox-3.11.1/.gitlab/docs.yml +33 -0
  4. agox-3.11.1/.gitlab/tests.yml +57 -0
  5. agox-3.11.1/CHANGELOG.md +256 -0
  6. agox-3.11.1/PKG-INFO +111 -0
  7. agox-3.11.1/README.md +54 -0
  8. agox-3.11.1/agox/acquisitors/EI.py +54 -0
  9. agox-3.11.1/agox/algorithms/__init__.py +39 -0
  10. agox-3.11.1/agox/algorithms/algorithm.py +576 -0
  11. agox-3.11.1/agox/algorithms/api.py +15 -0
  12. agox-3.11.1/agox/algorithms/basin_hopping.py +28 -0
  13. agox-3.11.1/agox/algorithms/basin_hopping_surrogate.py +47 -0
  14. agox-3.11.1/agox/algorithms/config/__init__.py +59 -0
  15. agox-3.11.1/agox/algorithms/config/base.py +106 -0
  16. agox-3.11.1/agox/algorithms/config/module/acquisitor_config.py +60 -0
  17. agox-3.11.1/agox/algorithms/config/module/collector_config.py +74 -0
  18. agox-3.11.1/agox/algorithms/config/module/descriptor_config.py +107 -0
  19. agox-3.11.1/agox/algorithms/config/module/evaluator_config.py +36 -0
  20. agox-3.11.1/agox/algorithms/config/module/generator_config.py +295 -0
  21. agox-3.11.1/agox/algorithms/config/module/model_config.py +189 -0
  22. agox-3.11.1/agox/algorithms/config/module/postprocess_config.py +35 -0
  23. agox-3.11.1/agox/algorithms/config/module/sampler_config.py +85 -0
  24. agox-3.11.1/agox/algorithms/config/problem.py +84 -0
  25. agox-3.11.1/agox/algorithms/config/run.py +26 -0
  26. agox-3.11.1/agox/algorithms/config/utils/__init__.py +1 -0
  27. agox-3.11.1/agox/algorithms/config/utils/introspect.py +125 -0
  28. agox-3.11.1/agox/algorithms/config/utils/subset_spec.py +35 -0
  29. agox-3.11.1/agox/algorithms/factory/acquisitor_factory.py +58 -0
  30. agox-3.11.1/agox/algorithms/factory/collector_factory.py +114 -0
  31. agox-3.11.1/agox/algorithms/factory/descriptor_factory.py +98 -0
  32. agox-3.11.1/agox/algorithms/factory/evaluator_factory.py +53 -0
  33. agox-3.11.1/agox/algorithms/factory/generator_factory.py +359 -0
  34. agox-3.11.1/agox/algorithms/factory/model_factory.py +197 -0
  35. agox-3.11.1/agox/algorithms/factory/relaxer_factory.py +56 -0
  36. agox-3.11.1/agox/algorithms/factory/sampler_factory.py +83 -0
  37. agox-3.11.1/agox/algorithms/gofee.py +68 -0
  38. agox-3.11.1/agox/algorithms/parallel_composable.py +31 -0
  39. agox-3.11.1/agox/algorithms/replica_exchange.py +66 -0
  40. agox-3.11.1/agox/algorithms/rss.py +42 -0
  41. agox-3.11.1/agox/algorithms/rss_surrogate.py +55 -0
  42. agox-3.11.1/agox/cli/cli_analysis.py +226 -0
  43. agox-3.11.1/agox/cli/main.py +21 -0
  44. agox-3.11.1/agox/collectors/replica_exchange.py +225 -0
  45. agox-3.11.1/agox/generators/ABC_generator.py +322 -0
  46. agox-3.11.1/agox/generators/MD.py +149 -0
  47. agox-3.11.1/agox/generators/__init__.py +58 -0
  48. agox-3.11.1/agox/generators/block_generators/rattle.py +87 -0
  49. agox-3.11.1/agox/generators/mixed.py +63 -0
  50. agox-3.11.1/agox/generators/preference.py +54 -0
  51. agox-3.11.1/agox/generators/random.py +74 -0
  52. agox-3.11.1/agox/generators/rattle.py +72 -0
  53. agox-3.11.1/agox/generators/symmetry.py +304 -0
  54. agox-3.11.1/agox/generators/symmetry_rattle.py +391 -0
  55. agox-3.11.1/agox/main/agox.py +229 -0
  56. agox-3.11.1/agox/models/GPR/priors/repulsive.c +16131 -0
  57. agox-3.11.1/agox/models/GPR/priors/repulsive.pyx +230 -0
  58. agox-3.11.1/agox/models/descriptors/exponential_density.py +134 -0
  59. agox-3.11.1/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.c +22726 -0
  60. agox-3.11.1/agox/postprocessors/relax.py +87 -0
  61. agox-3.11.1/agox/samplers/spectral_graph.py +157 -0
  62. agox-3.11.1/agox/test/algorithm_tests/conftest.py +68 -0
  63. agox-3.11.1/agox/test/algorithm_tests/doc_tests/algorithms_show_options.py +4 -0
  64. agox-3.11.1/agox/test/algorithm_tests/doc_tests/bh_example.py +23 -0
  65. agox-3.11.1/agox/test/algorithm_tests/doc_tests/bh_surrogate_example.py +27 -0
  66. agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_ce_example.py +30 -0
  67. agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_example.py +23 -0
  68. agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_example_change.py +35 -0
  69. agox-3.11.1/agox/test/algorithm_tests/doc_tests/gofee_voronoi_example.py +28 -0
  70. agox-3.11.1/agox/test/algorithm_tests/doc_tests/list_algorithms.py +13 -0
  71. agox-3.11.1/agox/test/algorithm_tests/doc_tests/list_modules.py +6 -0
  72. agox-3.11.1/agox/test/algorithm_tests/doc_tests/rex_example.py +23 -0
  73. agox-3.11.1/agox/test/algorithm_tests/doc_tests/rss_example.py +25 -0
  74. agox-3.11.1/agox/test/algorithm_tests/doc_tests/test_scripts.py +32 -0
  75. agox-3.11.1/agox/test/algorithm_tests/factory_tests/acquisitor_factory_test.py +46 -0
  76. agox-3.11.1/agox/test/algorithm_tests/factory_tests/collector_factory_test.py +52 -0
  77. agox-3.11.1/agox/test/algorithm_tests/factory_tests/conftest.py +58 -0
  78. agox-3.11.1/agox/test/algorithm_tests/factory_tests/descriptor_factory_test.py +50 -0
  79. agox-3.11.1/agox/test/algorithm_tests/factory_tests/evaluator_factory_test.py +54 -0
  80. agox-3.11.1/agox/test/algorithm_tests/factory_tests/generator_factory_test.py +75 -0
  81. agox-3.11.1/agox/test/algorithm_tests/factory_tests/model_factory_test.py +42 -0
  82. agox-3.11.1/agox/test/algorithm_tests/factory_tests/postprocess_factory_test.py +50 -0
  83. agox-3.11.1/agox/test/algorithm_tests/factory_tests/sampler_factory_test.py +52 -0
  84. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_default.py +57 -0
  85. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_bh_cluster_.npz +0 -0
  86. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_bh_slab_.npz +0 -0
  87. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_gofee_cluster_.npz +0 -0
  88. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_gofee_slab_.npz +0 -0
  89. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_random_cluster_.npz +0 -0
  90. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_random_slab_.npz +0 -0
  91. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_rex_cluster_.npz +0 -0
  92. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_basic_rex_slab_.npz +0 -0
  93. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_comp_energy_gofee_slab_.npz +0 -0
  94. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ei_gofee_cluster_.npz +0 -0
  95. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ei_gofee_slab_.npz +0 -0
  96. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ensemble_gofee_cluster_.npz +0 -0
  97. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_ensemble_gofee_slab_.npz +0 -0
  98. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_md_surrogate_bh_cluster_.npz +0 -0
  99. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_md_surrogate_bh_slab_.npz +0 -0
  100. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_pretrained_rex_cluster_.npz +0 -0
  101. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_pretrained_rex_slab_.npz +0 -0
  102. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_prior_rex_cluster_.npz +0 -0
  103. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_prior_rex_slab_.npz +0 -0
  104. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_bh_cluster_.npz +0 -0
  105. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_bh_slab_.npz +0 -0
  106. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_random_cluster_.npz +0 -0
  107. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_surrogate_random_slab_.npz +0 -0
  108. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_gofee_cluster_.npz +0 -0
  109. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_gofee_slab_.npz +0 -0
  110. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_random_cluster_.npz +0 -0
  111. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_com_regression_symmetry_random_slab_.npz +0 -0
  112. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_bh_cluster_.npz +0 -0
  113. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_bh_slab_.npz +0 -0
  114. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_gofee_cluster_.npz +0 -0
  115. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_gofee_slab_.npz +0 -0
  116. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_random_cluster_.npz +0 -0
  117. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_random_slab_.npz +0 -0
  118. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_rex_cluster_.npz +0 -0
  119. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_basic_rex_slab_.npz +0 -0
  120. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_comp_energy_gofee_slab_.npz +0 -0
  121. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ei_gofee_cluster_.npz +0 -0
  122. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ei_gofee_slab_.npz +0 -0
  123. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ensemble_gofee_cluster_.npz +0 -0
  124. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_ensemble_gofee_slab_.npz +0 -0
  125. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_md_surrogate_bh_cluster_.npz +0 -0
  126. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_md_surrogate_bh_slab_.npz +0 -0
  127. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_pretrained_rex_cluster_.npz +0 -0
  128. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_pretrained_rex_slab_.npz +0 -0
  129. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_prior_rex_cluster_.npz +0 -0
  130. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_prior_rex_slab_.npz +0 -0
  131. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_bh_cluster_.npz +0 -0
  132. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_bh_slab_.npz +0 -0
  133. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_random_cluster_.npz +0 -0
  134. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_surrogate_random_slab_.npz +0 -0
  135. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_gofee_cluster_.npz +0 -0
  136. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_gofee_slab_.npz +0 -0
  137. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_random_cluster_.npz +0 -0
  138. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_energy_regression_symmetry_random_slab_.npz +0 -0
  139. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_bh_cluster_.npz +0 -0
  140. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_bh_slab_.npz +0 -0
  141. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_gofee_cluster_.npz +0 -0
  142. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_gofee_slab_.npz +0 -0
  143. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_random_cluster_.npz +0 -0
  144. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_random_slab_.npz +0 -0
  145. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_rex_cluster_.npz +0 -0
  146. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_basic_rex_slab_.npz +0 -0
  147. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_comp_energy_gofee_slab_.npz +0 -0
  148. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_ei_gofee_cluster_.npz +0 -0
  149. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_ei_gofee_slab_.npz +0 -0
  150. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_ensemble_gofee_slab_.npz +0 -0
  151. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_md_surrogate_bh_slab_.npz +0 -0
  152. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_pretrained_rex_cluster_.npz +0 -0
  153. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_pretrained_rex_slab_.npz +0 -0
  154. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_prior_rex_cluster_.npz +0 -0
  155. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_prior_rex_slab_.npz +0 -0
  156. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_bh_cluster_.npz +0 -0
  157. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_bh_slab_.npz +0 -0
  158. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_random_cluster_.npz +0 -0
  159. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_surrogate_random_slab_.npz +0 -0
  160. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_symmetry_gofee_slab_.npz +0 -0
  161. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_force_regression_symmetry_random_slab_.npz +0 -0
  162. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_bh_cluster_.npz +0 -0
  163. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_bh_slab_.npz +0 -0
  164. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_gofee_cluster_.npz +0 -0
  165. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_gofee_slab_.npz +0 -0
  166. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_random_cluster_.npz +0 -0
  167. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_random_slab_.npz +0 -0
  168. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_rex_cluster_.npz +0 -0
  169. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_basic_rex_slab_.npz +0 -0
  170. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_comp_energy_gofee_slab_.npz +0 -0
  171. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_ei_gofee_cluster_.npz +0 -0
  172. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_ei_gofee_slab_.npz +0 -0
  173. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_ensemble_gofee_slab_.npz +0 -0
  174. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_md_surrogate_bh_cluster_.npz +0 -0
  175. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_md_surrogate_bh_slab_.npz +0 -0
  176. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_pretrained_rex_cluster_.npz +0 -0
  177. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_pretrained_rex_slab_.npz +0 -0
  178. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_prior_rex_cluster_.npz +0 -0
  179. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_prior_rex_slab_.npz +0 -0
  180. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_bh_cluster_.npz +0 -0
  181. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_bh_slab_.npz +0 -0
  182. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_random_cluster_.npz +0 -0
  183. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_surrogate_random_slab_.npz +0 -0
  184. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_gofee_cluster_.npz +0 -0
  185. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_gofee_slab_.npz +0 -0
  186. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_random_cluster_.npz +0 -0
  187. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_max_force_regression_symmetry_random_slab_.npz +0 -0
  188. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_bh_cluster_.npz +0 -0
  189. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_bh_slab_.npz +0 -0
  190. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_gofee_cluster_.npz +0 -0
  191. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_gofee_slab_.npz +0 -0
  192. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_random_cluster_.npz +0 -0
  193. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_random_slab_.npz +0 -0
  194. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_rex_cluster_.npz +0 -0
  195. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_basic_rex_slab_.npz +0 -0
  196. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_comp_energy_gofee_slab_.npz +0 -0
  197. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ei_gofee_cluster_.npz +0 -0
  198. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ei_gofee_slab_.npz +0 -0
  199. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ensemble_gofee_cluster_.npz +0 -0
  200. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_ensemble_gofee_slab_.npz +0 -0
  201. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_md_surrogate_bh_cluster_.npz +0 -0
  202. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_md_surrogate_bh_slab_.npz +0 -0
  203. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_pretrained_rex_cluster_.npz +0 -0
  204. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_pretrained_rex_slab_.npz +0 -0
  205. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_prior_rex_cluster_.npz +0 -0
  206. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_prior_rex_slab_.npz +0 -0
  207. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_bh_cluster_.npz +0 -0
  208. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_bh_slab_.npz +0 -0
  209. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_random_cluster_.npz +0 -0
  210. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_surrogate_random_slab_.npz +0 -0
  211. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_gofee_cluster_.npz +0 -0
  212. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_gofee_slab_.npz +0 -0
  213. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_random_cluster_.npz +0 -0
  214. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_order_regression_symmetry_random_slab_.npz +0 -0
  215. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_bh_cluster_.npz +0 -0
  216. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_bh_slab_.npz +0 -0
  217. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_gofee_cluster_.npz +0 -0
  218. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_gofee_slab_.npz +0 -0
  219. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_random_cluster_.npz +0 -0
  220. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_random_slab_.npz +0 -0
  221. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_rex_cluster_.npz +0 -0
  222. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_basic_rex_slab_.npz +0 -0
  223. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_comp_energy_gofee_slab_.npz +0 -0
  224. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_ei_gofee_cluster_.npz +0 -0
  225. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_ei_gofee_slab_.npz +0 -0
  226. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_ensemble_gofee_slab_.npz +0 -0
  227. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_md_surrogate_bh_cluster_.npz +0 -0
  228. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_md_surrogate_bh_slab_.npz +0 -0
  229. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_pretrained_rex_cluster_.npz +0 -0
  230. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_pretrained_rex_slab_.npz +0 -0
  231. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_prior_rex_cluster_.npz +0 -0
  232. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_prior_rex_slab_.npz +0 -0
  233. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_bh_cluster_.npz +0 -0
  234. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_bh_slab_.npz +0 -0
  235. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_random_cluster_.npz +0 -0
  236. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_surrogate_random_slab_.npz +0 -0
  237. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_symmetry_gofee_slab_.npz +0 -0
  238. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run/test_position_regression_symmetry_random_slab_.npz +0 -0
  239. agox-3.11.1/agox/test/algorithm_tests/test_algorithms_run.py +357 -0
  240. agox-3.11.1/agox/test/algorithm_tests/test_introspect.py +16 -0
  241. agox-3.11.1/agox/test/conftest.py +116 -0
  242. agox-3.11.1/agox/test/run_tests/tests_rss/test.py +0 -0
  243. agox-3.11.1/agox/test/utils_specs.py +48 -0
  244. agox-3.11.1/agox.egg-info/PKG-INFO +111 -0
  245. agox-3.11.1/agox.egg-info/SOURCES.txt +891 -0
  246. agox-3.11.1/agox.egg-info/requires.txt +40 -0
  247. agox-3.11.1/docs/.nojekyll +0 -0
  248. agox-3.11.1/docs/Makefile +28 -0
  249. agox-3.11.1/docs/README.md +46 -0
  250. agox-3.11.1/docs/source/_static/.gitkeep +0 -0
  251. agox-3.11.1/docs/source/agox_framework/modularity.rst +60 -0
  252. agox-3.11.1/docs/source/agox_framework/observers.rst +94 -0
  253. agox-3.11.1/docs/source/algorithms/algorithms.rst +70 -0
  254. agox-3.11.1/docs/source/algorithms/api/api.md +68 -0
  255. agox-3.11.1/docs/source/algorithms/api/api_configs.md +92 -0
  256. agox-3.11.1/docs/source/algorithms/api/api_extending.md +172 -0
  257. agox-3.11.1/docs/source/algorithms/api/api_rss_example.md +121 -0
  258. agox-3.11.1/docs/source/algorithms/bh.rst +149 -0
  259. agox-3.11.1/docs/source/algorithms/gofee.rst +172 -0
  260. agox-3.11.1/docs/source/algorithms/gofee_ce.rst +51 -0
  261. agox-3.11.1/docs/source/algorithms/gofee_graph_filtering.rst +45 -0
  262. agox-3.11.1/docs/source/algorithms/lgpr_bh.rst +37 -0
  263. agox-3.11.1/docs/source/algorithms/rex.rst +61 -0
  264. agox-3.11.1/docs/source/algorithms/rss.rst +174 -0
  265. agox-3.11.1/docs/source/conf.py +158 -0
  266. agox-3.11.1/docs/source/getting_started/rss_script_slurm.py +71 -0
  267. agox-3.11.1/docs/source/installation.rst +49 -0
  268. agox-3.11.1/pyproject.toml +101 -0
  269. agox-3.11.1/releasing.md +84 -0
  270. agox-3.11.1/uv.lock +4378 -0
  271. agox-3.11.0/.gitignore +0 -29
  272. agox-3.11.0/.gitlab/build.yml +0 -27
  273. agox-3.11.0/.gitlab/docs.yml +0 -28
  274. agox-3.11.0/.gitlab/tests.yml +0 -55
  275. agox-3.11.0/CHANGELOG.md +0 -254
  276. agox-3.11.0/PKG-INFO +0 -91
  277. agox-3.11.0/README.md +0 -41
  278. agox-3.11.0/agox/acquisitors/EI.py +0 -51
  279. agox-3.11.0/agox/cli/cli_analysis.py +0 -226
  280. agox-3.11.0/agox/cli/cli_notebook.py +0 -108
  281. agox-3.11.0/agox/cli/main.py +0 -23
  282. agox-3.11.0/agox/collectors/replica_exchange.py +0 -223
  283. agox-3.11.0/agox/generators/ABC_generator.py +0 -312
  284. agox-3.11.0/agox/generators/MD.py +0 -147
  285. agox-3.11.0/agox/generators/__init__.py +0 -54
  286. agox-3.11.0/agox/generators/block_generators/rattle.py +0 -82
  287. agox-3.11.0/agox/generators/random.py +0 -74
  288. agox-3.11.0/agox/generators/rattle.py +0 -70
  289. agox-3.11.0/agox/generators/symmetry.py +0 -302
  290. agox-3.11.0/agox/generators/symmetry_rattle.py +0 -386
  291. agox-3.11.0/agox/main/agox.py +0 -228
  292. agox-3.11.0/agox/models/GPR/priors/repulsive.c +0 -11496
  293. agox-3.11.0/agox/models/GPR/priors/repulsive.pyx +0 -230
  294. agox-3.11.0/agox/models/descriptors/acsf.py +0 -198
  295. agox-3.11.0/agox/models/descriptors/exponential_density.py +0 -131
  296. agox-3.11.0/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.c +0 -18053
  297. agox-3.11.0/agox/postprocessors/relax.py +0 -87
  298. agox-3.11.0/agox/samplers/spectral_graph.py +0 -158
  299. agox-3.11.0/agox/test/conftest.py +0 -113
  300. agox-3.11.0/agox/test/run_tests/tests_bh/test/automagic_analysis.ipynb +0 -203
  301. agox-3.11.0/agox.egg-info/PKG-INFO +0 -91
  302. agox-3.11.0/agox.egg-info/SOURCES.txt +0 -671
  303. agox-3.11.0/agox.egg-info/requires.txt +0 -36
  304. agox-3.11.0/docs/Makefile +0 -25
  305. agox-3.11.0/docs/README.rst +0 -4
  306. agox-3.11.0/docs/make_gitlab.sh +0 -2
  307. agox-3.11.0/docs/source/agox_framework/modularity.rst +0 -54
  308. agox-3.11.0/docs/source/agox_framework/observers.rst +0 -87
  309. agox-3.11.0/docs/source/algorithms/algorithms.rst +0 -58
  310. agox-3.11.0/docs/source/algorithms/bh.rst +0 -128
  311. agox-3.11.0/docs/source/algorithms/gofee.rst +0 -148
  312. agox-3.11.0/docs/source/algorithms/gofee_ce.rst +0 -29
  313. agox-3.11.0/docs/source/algorithms/gofee_graph_filtering.rst +0 -21
  314. agox-3.11.0/docs/source/algorithms/lgpr_bh.rst +0 -14
  315. agox-3.11.0/docs/source/algorithms/rex.rst +0 -39
  316. agox-3.11.0/docs/source/algorithms/rss.rst +0 -149
  317. agox-3.11.0/docs/source/conf.py +0 -146
  318. agox-3.11.0/docs/source/getting_started/rss_script_slurm.py +0 -63
  319. agox-3.11.0/docs/source/installation.rst +0 -49
  320. agox-3.11.0/pyproject.toml +0 -94
  321. {agox-3.11.0 → agox-3.11.1}/.gitlab/defaults.yml +0 -0
  322. {agox-3.11.0 → agox-3.11.1}/.gitlab/publish.yml +0 -0
  323. {agox-3.11.0 → agox-3.11.1}/.gitlab/verify.yml +0 -0
  324. {agox-3.11.0 → agox-3.11.1}/.gitlab-ci.yml +0 -0
  325. {agox-3.11.0 → agox-3.11.1}/LICENSE.txt +0 -0
  326. {agox-3.11.0 → agox-3.11.1}/agox/__init__.py +0 -0
  327. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/ABC_acquisitor.py +0 -0
  328. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/GFE_aquisitor.py +0 -0
  329. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/LCB.py +0 -0
  330. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/LCB_penalty.py +0 -0
  331. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/LCB_power.py +0 -0
  332. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/__init__.py +0 -0
  333. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/meta_acquisitor.py +0 -0
  334. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/replica_exchange/__init__.py +0 -0
  335. {agox-3.11.0 → agox-3.11.1}/agox/acquisitors/replica_exchange/default.py +0 -0
  336. {agox-3.11.0/agox/cli → agox-3.11.1/agox/algorithms/config/module}/__init__.py +0 -0
  337. {agox-3.11.0/agox/generators/complementary_energy → agox-3.11.1/agox/algorithms/factory}/__init__.py +0 -0
  338. {agox-3.11.0 → agox-3.11.1}/agox/analysis/__init__.py +0 -0
  339. {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/__init__.py +0 -0
  340. {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/base_criterion/__init__.py +0 -0
  341. {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/base_criterion/base_criterion.py +0 -0
  342. {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/base_criterion/discrete_distribution.py +0 -0
  343. {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/distance.py +0 -0
  344. {agox-3.11.0 → agox-3.11.1}/agox/analysis/criterion/threshold.py +0 -0
  345. {agox-3.11.0 → agox-3.11.1}/agox/analysis/plot/__init__.py +0 -0
  346. {agox-3.11.0 → agox-3.11.1}/agox/analysis/plot/property_plot.py +0 -0
  347. {agox-3.11.0 → agox-3.11.1}/agox/analysis/plot/success_plot.py +0 -0
  348. {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/__init__.py +0 -0
  349. {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/descriptor_property.py +0 -0
  350. {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/energy.py +0 -0
  351. {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/free_energy.py +0 -0
  352. {agox-3.11.0 → agox-3.11.1}/agox/analysis/property/property.py +0 -0
  353. {agox-3.11.0 → agox-3.11.1}/agox/analysis/search_analysis.py +0 -0
  354. {agox-3.11.0 → agox-3.11.1}/agox/analysis/search_data.py +0 -0
  355. {agox-3.11.0 → agox-3.11.1}/agox/candidates/ABC_candidate.py +0 -0
  356. {agox-3.11.0 → agox-3.11.1}/agox/candidates/__init__.py +0 -0
  357. {agox-3.11.0 → agox-3.11.1}/agox/candidates/standard.py +0 -0
  358. {agox-3.11.0/agox/generators/complementary_energy/attractor_methods → agox-3.11.1/agox/cli}/__init__.py +0 -0
  359. {agox-3.11.0 → agox-3.11.1}/agox/cli/cli_convert.py +0 -0
  360. {agox-3.11.0 → agox-3.11.1}/agox/cli/cli_graph_sorting.py +0 -0
  361. {agox-3.11.0 → agox-3.11.1}/agox/cli/cli_plot.py +0 -0
  362. {agox-3.11.0 → agox-3.11.1}/agox/collectors/ABC_collector.py +0 -0
  363. {agox-3.11.0 → agox-3.11.1}/agox/collectors/__init__.py +0 -0
  364. {agox-3.11.0 → agox-3.11.1}/agox/collectors/ray_collector.py +0 -0
  365. {agox-3.11.0 → agox-3.11.1}/agox/collectors/standard.py +0 -0
  366. {agox-3.11.0 → agox-3.11.1}/agox/databases/ABC_database.py +0 -0
  367. {agox-3.11.0 → agox-3.11.1}/agox/databases/__init__.py +0 -0
  368. {agox-3.11.0 → agox-3.11.1}/agox/databases/concurrent_ordered.py +0 -0
  369. {agox-3.11.0 → agox-3.11.1}/agox/databases/database.py +0 -0
  370. {agox-3.11.0 → agox-3.11.1}/agox/databases/database_concurrent.py +0 -0
  371. {agox-3.11.0 → agox-3.11.1}/agox/databases/database_utilities.py +0 -0
  372. {agox-3.11.0 → agox-3.11.1}/agox/environments/ABC_environment.py +0 -0
  373. {agox-3.11.0 → agox-3.11.1}/agox/environments/__init__.py +0 -0
  374. {agox-3.11.0 → agox-3.11.1}/agox/environments/environment.py +0 -0
  375. {agox-3.11.0 → agox-3.11.1}/agox/evaluators/ABC_evaluator.py +0 -0
  376. {agox-3.11.0 → agox-3.11.1}/agox/evaluators/__init__.py +0 -0
  377. {agox-3.11.0 → agox-3.11.1}/agox/evaluators/local_optimization.py +0 -0
  378. {agox-3.11.0 → agox-3.11.1}/agox/evaluators/rattle.py +0 -0
  379. {agox-3.11.0 → agox-3.11.1}/agox/evaluators/single_point.py +0 -0
  380. {agox-3.11.0 → agox-3.11.1}/agox/generators/add_remove.py +0 -0
  381. {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/ABC_block.py +0 -0
  382. {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/__init__.py +0 -0
  383. {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/block_potential.py +0 -0
  384. {agox-3.11.0 → agox-3.11.1}/agox/generators/block_generators/random.py +0 -0
  385. {agox-3.11.0 → agox-3.11.1}/agox/generators/ce_generator.py +0 -0
  386. {agox-3.11.0 → agox-3.11.1}/agox/generators/cog.py +0 -0
  387. {agox-3.11.0/agox/generators/symmetry_utils → agox-3.11.1/agox/generators/complementary_energy}/__init__.py +0 -0
  388. {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ABC_attractors.py +0 -0
  389. {agox-3.11.0/agox/models/descriptors/fingerprint_cython → agox-3.11.1/agox/generators/complementary_energy/attractor_methods}/__init__.py +0 -0
  390. {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_another_structure.py +0 -0
  391. {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_current_structure.py +0 -0
  392. {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_interpolation.py +0 -0
  393. {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/attractor_methods/ce_attractors_kmeans.py +0 -0
  394. {agox-3.11.0 → agox-3.11.1}/agox/generators/complementary_energy/ce_calculators.py +0 -0
  395. {agox-3.11.0 → agox-3.11.1}/agox/generators/permutation.py +0 -0
  396. {agox-3.11.0 → agox-3.11.1}/agox/generators/replace.py +0 -0
  397. {agox-3.11.0 → agox-3.11.1}/agox/generators/reuse.py +0 -0
  398. {agox-3.11.0 → agox-3.11.1}/agox/generators/sampling.py +0 -0
  399. {agox-3.11.0 → agox-3.11.1}/agox/generators/steepest_descent.py +0 -0
  400. {agox-3.11.0 → agox-3.11.1}/agox/generators/symmetry_permutation.py +0 -0
  401. {agox-3.11.0/agox/models/schnetpack → agox-3.11.1/agox/generators/symmetry_utils}/__init__.py +0 -0
  402. {agox-3.11.0 → agox-3.11.1}/agox/generators/symmetry_utils/symmetry_enforcer.py +0 -0
  403. {agox-3.11.0 → agox-3.11.1}/agox/generators/symmetry_utils/symmetry_groups.py +0 -0
  404. {agox-3.11.0 → agox-3.11.1}/agox/helpers/__init__.py +0 -0
  405. {agox-3.11.0 → agox-3.11.1}/agox/helpers/confinement.py +0 -0
  406. {agox-3.11.0 → agox-3.11.1}/agox/helpers/gpaw_io.py +0 -0
  407. {agox-3.11.0 → agox-3.11.1}/agox/helpers/gpaw_subprocess.py +0 -0
  408. {agox-3.11.0 → agox-3.11.1}/agox/main/__init__.py +0 -0
  409. {agox-3.11.0 → agox-3.11.1}/agox/main/state.py +0 -0
  410. {agox-3.11.0 → agox-3.11.1}/agox/models/ABC_model.py +0 -0
  411. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/GPR.py +0 -0
  412. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/__init__.py +0 -0
  413. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/kernels/__init__.py +0 -0
  414. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/kernels/kernels.py +0 -0
  415. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/local_mean.py +0 -0
  416. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/priors/__init__.py +0 -0
  417. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/priors/setup.py +0 -0
  418. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/sGPR.py +0 -0
  419. {agox-3.11.0 → agox-3.11.1}/agox/models/GPR/sGPR_ensemble.py +0 -0
  420. {agox-3.11.0 → agox-3.11.1}/agox/models/__init__.py +0 -0
  421. {agox-3.11.0 → agox-3.11.1}/agox/models/ase_model.py +0 -0
  422. {agox-3.11.0 → agox-3.11.1}/agox/models/composition_model.py +0 -0
  423. {agox-3.11.0 → agox-3.11.1}/agox/models/datasets/Ag5O3-dataset.traj +0 -0
  424. {agox-3.11.0 → agox-3.11.1}/agox/models/datasets/__init__.py +0 -0
  425. {agox-3.11.0 → agox-3.11.1}/agox/models/datasets/loader.py +0 -0
  426. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/ABC_descriptor.py +0 -0
  427. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/__init__.py +0 -0
  428. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint.py +0 -0
  429. {agox-3.11.0/agox/test → agox-3.11.1/agox/models/descriptors/fingerprint_cython}/__init__.py +0 -0
  430. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_cython/angular_fingerprintFeature_cy.pyx +0 -0
  431. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_cython/compile.sh +0 -0
  432. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_cython/setup.py +0 -0
  433. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_jax/__init__.py +0 -0
  434. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_jax/fingerprint_jax.py +0 -0
  435. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/fingerprint_jax/utils.py +0 -0
  436. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/scale_select_descriptor.py +0 -0
  437. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/simple_fingerprint.py +0 -0
  438. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/soap.py +0 -0
  439. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/spectral_graph_descriptor.py +0 -0
  440. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/type_descriptor.py +0 -0
  441. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/voronoi.py +0 -0
  442. {agox-3.11.0 → agox-3.11.1}/agox/models/descriptors/voronoi_site.py +0 -0
  443. {agox-3.11.0 → agox-3.11.1}/agox/models/priors/constant.py +0 -0
  444. {agox-3.11.0/agox/test/model_tests → agox-3.11.1/agox/models/schnetpack}/__init__.py +0 -0
  445. {agox-3.11.0 → agox-3.11.1}/agox/models/schnetpack/schnetpack.py +0 -0
  446. {agox-3.11.0 → agox-3.11.1}/agox/module.py +0 -0
  447. {agox-3.11.0 → agox-3.11.1}/agox/observer/__init__.py +0 -0
  448. {agox-3.11.0 → agox-3.11.1}/agox/observer/finalization_handler.py +0 -0
  449. {agox-3.11.0 → agox-3.11.1}/agox/observer/observer.py +0 -0
  450. {agox-3.11.0 → agox-3.11.1}/agox/observer/observer_handler.py +0 -0
  451. {agox-3.11.0 → agox-3.11.1}/agox/observer/observer_method.py +0 -0
  452. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ABC_postprocess.py +0 -0
  453. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/__init__.py +0 -0
  454. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/centering.py +0 -0
  455. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/disjoint_filtering.py +0 -0
  456. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/minimum_dist.py +0 -0
  457. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax/__init__.py +0 -0
  458. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax/ray_relax.py +0 -0
  459. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax/remote_relax.py +0 -0
  460. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/ray_relax.py +0 -0
  461. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/surface_centering.py +0 -0
  462. {agox-3.11.0 → agox-3.11.1}/agox/postprocessors/wrap.py +0 -0
  463. {agox-3.11.0 → agox-3.11.1}/agox/samplers/ABC_sampler.py +0 -0
  464. {agox-3.11.0 → agox-3.11.1}/agox/samplers/__init__.py +0 -0
  465. {agox-3.11.0 → agox-3.11.1}/agox/samplers/concurrent_tempering.py +0 -0
  466. {agox-3.11.0 → agox-3.11.1}/agox/samplers/fixed_sampler.py +0 -0
  467. {agox-3.11.0 → agox-3.11.1}/agox/samplers/genetic.py +0 -0
  468. {agox-3.11.0 → agox-3.11.1}/agox/samplers/gfe_kmeans.py +0 -0
  469. {agox-3.11.0 → agox-3.11.1}/agox/samplers/gfe_sampler.py +0 -0
  470. {agox-3.11.0 → agox-3.11.1}/agox/samplers/kernel_similarity.py +0 -0
  471. {agox-3.11.0 → agox-3.11.1}/agox/samplers/kmeans.py +0 -0
  472. {agox-3.11.0 → agox-3.11.1}/agox/samplers/metropolis.py +0 -0
  473. {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/__init__.py +0 -0
  474. {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/rate_tracker.py +0 -0
  475. {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/replica_exchange.py +0 -0
  476. {agox-3.11.0 → agox-3.11.1}/agox/samplers/replica_exchange/sample.py +0 -0
  477. {agox-3.11.0 → agox-3.11.1}/agox/test/.coveragerc +0 -0
  478. /agox-3.11.0/agox/test/run_tests/tests_rss/test.py → /agox-3.11.1/agox/test/__init__.py +0 -0
  479. {agox-3.11.0 → agox-3.11.1}/agox/test/acquisitor_test/test_lcb.py +0 -0
  480. /agox-3.11.0/docs/.nojekyll → /agox-3.11.1/agox/test/algorithm_tests/factory_tests/__init__.py +0 -0
  481. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/conftest.py +0 -0
  482. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_criterion.py +0 -0
  483. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_descriptor_property.py +0 -0
  484. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_energy_property.py +0 -0
  485. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_free_energy_property.py +0 -0
  486. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_property_plot.py +0 -0
  487. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_restart_data.py +0 -0
  488. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_search_collection.py +0 -0
  489. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_search_data.py +0 -0
  490. {agox-3.11.0 → agox-3.11.1}/agox/test/analysis_tests/test_succces_plot.py +0 -0
  491. {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/conftest.py +0 -0
  492. {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_analysis_cli.py +0 -0
  493. {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_convert_cli.py +0 -0
  494. {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_graph_sort_cli.py +0 -0
  495. {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_main_cli.py +0 -0
  496. {agox-3.11.0 → agox-3.11.1}/agox/test/cli_tests/test_plot_cli.py +0 -0
  497. {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/conftest.py +0 -0
  498. {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/database_test.py +0 -0
  499. {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/database_test_memory.py +0 -0
  500. {agox-3.11.0 → agox-3.11.1}/agox/test/database_tests/database_test_written.py +0 -0
  501. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/AgO-dataset.traj +0 -0
  502. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/B12-dataset.traj +0 -0
  503. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/C30-dataset.traj +0 -0
  504. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db1.db +0 -0
  505. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db2.db +0 -0
  506. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db3.db +0 -0
  507. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db4.db +0 -0
  508. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/db5.db +0 -0
  509. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/bh_test_databases/experiment.pckl +0 -0
  510. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/mos2_databases/db1.db +0 -0
  511. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/mos2_databases/db2.db +0 -0
  512. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db1.db +0 -0
  513. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db2.db +0 -0
  514. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db3.db +0 -0
  515. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/db4.db +0 -0
  516. {agox-3.11.0 → agox-3.11.1}/agox/test/datasets/databases/rss_test_databases/experiment.pckl +0 -0
  517. {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/expected_outputs/SOAP_AgO.pckl +0 -0
  518. {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/expected_outputs/SOAP_B12.pckl +0 -0
  519. {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/expected_outputs/SOAP_C30.pckl +0 -0
  520. {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/soap_test.py +0 -0
  521. {agox-3.11.0 → agox-3.11.1}/agox/test/descriptor_tests/spectral_graph_test.py +0 -0
  522. {agox-3.11.0 → agox-3.11.1}/agox/test/empty_cache.py +0 -0
  523. {agox-3.11.0 → agox-3.11.1}/agox/test/environment_tests/environment_test.py +0 -0
  524. {agox-3.11.0 → agox-3.11.1}/agox/test/evaluator_tests/check_callback_test.py +0 -0
  525. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/conftest.py +0 -0
  526. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter0.pckl +0 -0
  527. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter1.pckl +0 -0
  528. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataAgO_parameter2.pckl +0 -0
  529. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter0.pckl +0 -0
  530. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter1.pckl +0 -0
  531. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataB12_parameter2.pckl +0 -0
  532. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter0.pckl +0 -0
  533. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter1.pckl +0 -0
  534. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/CenterOfGeometryGenerator_dataC30_parameter2.pckl +0 -0
  535. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter0.pckl +0 -0
  536. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter1.pckl +0 -0
  537. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/PermutationGenerator_dataAgO_parameter2.pckl +0 -0
  538. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter0.pckl +0 -0
  539. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter1.pckl +0 -0
  540. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataAgO_parameter2.pckl +0 -0
  541. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter0.pckl +0 -0
  542. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter1.pckl +0 -0
  543. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataB12_parameter2.pckl +0 -0
  544. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter0.pckl +0 -0
  545. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter1.pckl +0 -0
  546. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RandomGenerator_dataC30_parameter2.pckl +0 -0
  547. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter0.pckl +0 -0
  548. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter1.pckl +0 -0
  549. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataAgO_parameter2.pckl +0 -0
  550. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter0.pckl +0 -0
  551. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter1.pckl +0 -0
  552. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataB12_parameter2.pckl +0 -0
  553. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter0.pckl +0 -0
  554. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter1.pckl +0 -0
  555. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/RattleGenerator_dataC30_parameter2.pckl +0 -0
  556. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter0.pckl +0 -0
  557. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter1.pckl +0 -0
  558. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataAgO_parameter2.pckl +0 -0
  559. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter0.pckl +0 -0
  560. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter1.pckl +0 -0
  561. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataB12_parameter2.pckl +0 -0
  562. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter0.pckl +0 -0
  563. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter1.pckl +0 -0
  564. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/ReplaceGenerator_dataC30_parameter2.pckl +0 -0
  565. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataAgO_parameter0.pckl +0 -0
  566. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataB12_parameter0.pckl +0 -0
  567. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SamplingGenerator_dataC30_parameter0.pckl +0 -0
  568. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataAgO_parameter0.pckl +0 -0
  569. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataB12_parameter0.pckl +0 -0
  570. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SteepestDescentGenerator_dataC30_parameter0.pckl +0 -0
  571. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataAgO_parameter0.pckl +0 -0
  572. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataAgO_parameter1.pckl +0 -0
  573. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataB12_parameter0.pckl +0 -0
  574. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/expected_outputs/SymmetryGenerator_dataB12_parameter1.pckl +0 -0
  575. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/for_docs/nonseeded_script.py +0 -0
  576. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/for_docs/seeded_script.py +0 -0
  577. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/for_docs/test_doc_scripts.py +0 -0
  578. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/generator_test.py +0 -0
  579. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/generator_utils.py +0 -0
  580. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_cog.py +0 -0
  581. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_generators.py +0 -0
  582. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_permutation.py +0 -0
  583. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_random.py +0 -0
  584. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_rattle.py +0 -0
  585. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_replace.py +0 -0
  586. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_sampling.py +0 -0
  587. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_steepest_descent.py +0 -0
  588. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_symmetry.py +0 -0
  589. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_symmetry_2.py +0 -0
  590. {agox-3.11.0 → agox-3.11.1}/agox/test/generator_tests/test_symmetry_3.py +0 -0
  591. /agox-3.11.0/docs/source/_static/.gitkeep → /agox-3.11.1/agox/test/model_tests/__init__.py +0 -0
  592. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/descriptors_api.py +0 -0
  593. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPRJax_dataAgO_parameter0.pckl +0 -0
  594. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPRJax_dataB12_parameter0.pckl +0 -0
  595. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPRJax_dataC30_parameter0.pckl +0 -0
  596. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataAgO_parameter0.pckl +0 -0
  597. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataB12_parameter0.pckl +0 -0
  598. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/GlobalGPR_dataC30_parameter0.pckl +0 -0
  599. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataAgO_parameter0.pckl +0 -0
  600. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataB12_parameter0.pckl +0 -0
  601. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPRForces_dataC30_parameter0.pckl +0 -0
  602. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataAgO_parameter0.pckl +0 -0
  603. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataB12_parameter0.pckl +0 -0
  604. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/LocalSparseGPR_dataC30_parameter0.pckl +0 -0
  605. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataAgO_parameter0.pckl +0 -0
  606. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataB12_parameter0.pckl +0 -0
  607. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPRForces_dataC30_parameter0.pckl +0 -0
  608. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataAgO_parameter0.pckl +0 -0
  609. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataB12_parameter0.pckl +0 -0
  610. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/expected_outputs/globalSparseGPR_dataC30_parameter0.pckl +0 -0
  611. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/gpr_api.py +0 -0
  612. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/load_api.py +0 -0
  613. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/model_utils.py +0 -0
  614. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/sgpr_api.py +0 -0
  615. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/sgpr_api_forces.py +0 -0
  616. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_api.py +0 -0
  617. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_calculator_model.py +0 -0
  618. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_composition_model.py +0 -0
  619. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_gpr.py +0 -0
  620. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_gpr_jax.py +0 -0
  621. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_sparse_gpr.py +0 -0
  622. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_global_sparse_gpr_force_training.py +0 -0
  623. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_load.py +0 -0
  624. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_local_gpr.py +0 -0
  625. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_local_gpr_force_training.py +0 -0
  626. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_gpr.py +0 -0
  627. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_sgpr_ensemble_local.py +0 -0
  628. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_sgpr_global.py +0 -0
  629. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_ray_sgpr_local.py +0 -0
  630. {agox-3.11.0 → agox-3.11.1}/agox/test/model_tests/test_sgpr_sparse_schedule.py +0 -0
  631. {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/confinement_examples.py +0 -0
  632. {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/cluster_confinement.png +0 -0
  633. {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/surface_cluster_confinement.png +0 -0
  634. {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/surface_film_confinement.png +0 -0
  635. {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/surface_toplayer_unc.png +0 -0
  636. {agox-3.11.0 → agox-3.11.1}/agox/test/modifying_examples/plots/two_d_environment.png +0 -0
  637. {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/disjoint_filtering_test.py +0 -0
  638. {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/model_results_test.py +0 -0
  639. {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/postprocessor_test.py +0 -0
  640. {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/ray_relax.py +0 -0
  641. {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/surface_centering_test.py +0 -0
  642. {agox-3.11.0 → agox-3.11.1}/agox/test/postprocessor_tests/test_survive_empty.py +0 -0
  643. {agox-3.11.0 → agox-3.11.1}/agox/test/replica_exchange/conftest.py +0 -0
  644. {agox-3.11.0 → agox-3.11.1}/agox/test/replica_exchange/test_sample.py +0 -0
  645. {agox-3.11.0 → agox-3.11.1}/agox/test/replica_exchange/test_sampler.py +0 -0
  646. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/run_utils.py +0 -0
  647. {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
  648. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_bulk_emt_test/db0.db +0 -0
  649. {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
  650. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_cluster_emt_test/db0.db +0 -0
  651. {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
  652. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/expected_outputs/bh_surface_emt_test/db0.db +0 -0
  653. {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
  654. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_chgnet.py +0 -0
  655. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_emt.py +0 -0
  656. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_gpaw.py +0 -0
  657. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_bulk_vasp.py +0 -0
  658. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_chgnet.py +0 -0
  659. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_emt.py +0 -0
  660. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_gpaw.py +0 -0
  661. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_orca.py +0 -0
  662. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_cluster_vasp.py +0 -0
  663. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_chgnet.py +0 -0
  664. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_emt.py +0 -0
  665. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_gpaw.py +0 -0
  666. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/script_bh_surface_vasp.py +0 -0
  667. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_bh/test_bh.py +0 -0
  668. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_bh_test/db0.db +0 -0
  669. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_bh_test/db0_tracker.npz +0 -0
  670. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_rss_test/db0.db +0 -0
  671. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/expected_outputs/block_rss_test/db0_tracker.npz +0 -0
  672. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/script_block_bh.py +0 -0
  673. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/script_block_rss.py +0 -0
  674. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/test_block_bh.py +0 -0
  675. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_block/test_block_rss.py +0 -0
  676. {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
  677. {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
  678. {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
  679. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_default_gofee_test/db0.db +0 -0
  680. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/expected_outputs/ce_gofee_test/db0.db +0 -0
  681. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/script_ce_default_gofee.py +0 -0
  682. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/script_ce_gofee.py +0 -0
  683. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/test_ce_default_gofee.py +0 -0
  684. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ce/test_ce_gofee.py +0 -0
  685. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ct/expected_outputs/ct_test/db0.db +0 -0
  686. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ct/script_ct.py +0 -0
  687. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ct/test_ct.py +0 -0
  688. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/expected_outputs/ea_test/db0.db +0 -0
  689. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/expected_outputs/ea_test/population_5.traj +0 -0
  690. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/script_ea.py +0 -0
  691. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_ea/test_ea.py +0 -0
  692. {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
  693. {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
  694. {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
  695. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/db0.db +0 -0
  696. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/expected_outputs/gcgo_emt_test/thermo_data.json +0 -0
  697. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/script_gcgo_dft.py +0 -0
  698. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/script_gcgo_emt.py +0 -0
  699. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/test.txt +0 -0
  700. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gcgo/test_gcgo.py +0 -0
  701. {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
  702. {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
  703. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_bulk_emt_test/db0.db +0 -0
  704. {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
  705. {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
  706. {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
  707. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_cluster_emt_test/db0.db +0 -0
  708. {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
  709. {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
  710. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/expected_outputs/gofee_surface_emt_test/db0.db +0 -0
  711. {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
  712. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_chgnet.py +0 -0
  713. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_emt.py +0 -0
  714. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_gpaw.py +0 -0
  715. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_bulk_vasp.py +0 -0
  716. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_chgnet.py +0 -0
  717. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_emt.py +0 -0
  718. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_gpaw.py +0 -0
  719. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_orca.py +0 -0
  720. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_cluster_vasp.py +0 -0
  721. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_chgnet.py +0 -0
  722. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_emt.py +0 -0
  723. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_gpaw.py +0 -0
  724. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/script_gofee_surface_vasp.py +0 -0
  725. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_gofee/test_gofee.py +0 -0
  726. {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
  727. {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
  728. {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
  729. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/db0.db +0 -0
  730. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/expected_outputs/gc_test/db0_tracker.npz +0 -0
  731. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/script_gc.py +0 -0
  732. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_grand_canonical/test_gc.py +0 -0
  733. {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
  734. {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
  735. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_graph_filt/script_graph_filtering_gofee.py +0 -0
  736. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_graph_filt/test_graph_filtering_gofee.py +0 -0
  737. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_lgpr_bh/expected_outputs/lgpr_bh_test/db0.db +0 -0
  738. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_lgpr_bh/script_lgpr_bh.py +0 -0
  739. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_lgpr_bh/test_lgpr_bh.py +0 -0
  740. {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
  741. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/db0.db +0 -0
  742. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/expected_outputs/md_bh_test/db0_tracker.npz +0 -0
  743. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/script_md_bh.py +0 -0
  744. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_md/test_md_bh.py +0 -0
  745. {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
  746. {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
  747. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/expected_outputs/rex_emt_test/db0.db +0 -0
  748. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/script_rex_dft.py +0 -0
  749. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/script_rex_emt.py +0 -0
  750. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rex/test_replica.py +0 -0
  751. {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
  752. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_2d_test/db0.db +0 -0
  753. {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
  754. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_bulk_emt_test/db0.db +0 -0
  755. {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
  756. {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
  757. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_cluster_emt_test/db0.db +0 -0
  758. {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
  759. {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
  760. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/expected_outputs/rss_surface_emt_test/db0.db +0 -0
  761. {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
  762. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_2d.py +0 -0
  763. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_chgnet.py +0 -0
  764. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_emt.py +0 -0
  765. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_gpaw.py +0 -0
  766. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_bulk_vasp.py +0 -0
  767. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_chgnet.py +0 -0
  768. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_emt.py +0 -0
  769. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_gpaw.py +0 -0
  770. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_orca.py +0 -0
  771. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_cluster_vasp.py +0 -0
  772. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_chgnet.py +0 -0
  773. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_emt.py +0 -0
  774. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_gpaw.py +0 -0
  775. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/script_rss_surface_vasp.py +0 -0
  776. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_rss/test_rss.py +0 -0
  777. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_schnet/script_schnet_bh.py +0 -0
  778. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_schnet/test_schnet_bh.py +0 -0
  779. {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
  780. {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
  781. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_cluster_symmetry_test/db0.db +0 -0
  782. {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
  783. {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
  784. {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
  785. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/gofee_slab_symmetry_test/db0.db +0 -0
  786. {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
  787. {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
  788. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/expected_outputs/rss_cluster_symmetry_test/db0.db +0 -0
  789. {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
  790. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/script_gofee_cluster_symmetry.py +0 -0
  791. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/script_gofee_slab_symmetry.py +0 -0
  792. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/script_rss_cluster_symmetry.py +0 -0
  793. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/test_gofee_cluster_symmetry.py +0 -0
  794. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/test_gofee_slab_symmetry.py +0 -0
  795. {agox-3.11.0 → agox-3.11.1}/agox/test/run_tests/tests_symmetry/test_rss_cluster_symmetry.py +0 -0
  796. {agox-3.11.0 → agox-3.11.1}/agox/test/sampler_tests/sampler_test.py +0 -0
  797. {agox-3.11.0 → agox-3.11.1}/agox/test/test_fixtures.py +0 -0
  798. {agox-3.11.0 → agox-3.11.1}/agox/test/test_utils.py +0 -0
  799. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/cache_test.py +0 -0
  800. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/colors_test.py +0 -0
  801. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/plot_atoms_test.py +0 -0
  802. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/plot_cell_test.py +0 -0
  803. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/plot_tests/utils_test.py +0 -0
  804. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/test_feature_dist_filter.py +0 -0
  805. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/test_filters.py +0 -0
  806. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/test_sparsifiers.py +0 -0
  807. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/thermodynamics_test/conftest.py +0 -0
  808. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/thermodynamics_test/test_gibbs.py +0 -0
  809. {agox-3.11.0 → agox-3.11.1}/agox/test/utils_tests/thermodynamics_test/test_thermodata.py +0 -0
  810. {agox-3.11.0 → agox-3.11.1}/agox/utils/__init__.py +0 -0
  811. {agox-3.11.0 → agox-3.11.1}/agox/utils/cache.py +0 -0
  812. {agox-3.11.0 → agox-3.11.1}/agox/utils/constraints/__init__.py +0 -0
  813. {agox-3.11.0 → agox-3.11.1}/agox/utils/constraints/box_constraint.py +0 -0
  814. {agox-3.11.0 → agox-3.11.1}/agox/utils/constraints/constraint_manager.py +0 -0
  815. {agox-3.11.0 → agox-3.11.1}/agox/utils/convert_database.py +0 -0
  816. {agox-3.11.0 → agox-3.11.1}/agox/utils/decorators.py +0 -0
  817. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/ABC_filter.py +0 -0
  818. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/__init__.py +0 -0
  819. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/all.py +0 -0
  820. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/energy.py +0 -0
  821. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/feature_distance.py +0 -0
  822. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/filter.py +0 -0
  823. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/kmeans_energy.py +0 -0
  824. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/none.py +0 -0
  825. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/random.py +0 -0
  826. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/sparse_filter.py +0 -0
  827. {agox-3.11.0 → agox-3.11.1}/agox/utils/filters/voronoi.py +0 -0
  828. {agox-3.11.0 → agox-3.11.1}/agox/utils/graph_sorting.py +0 -0
  829. {agox-3.11.0 → agox-3.11.1}/agox/utils/jupyter_interactive.py +0 -0
  830. {agox-3.11.0 → agox-3.11.1}/agox/utils/matplotlib_utils.py +0 -0
  831. {agox-3.11.0 → agox-3.11.1}/agox/utils/metrics/__init__.py +0 -0
  832. {agox-3.11.0 → agox-3.11.1}/agox/utils/metrics/calibration.py +0 -0
  833. {agox-3.11.0 → agox-3.11.1}/agox/utils/metrics/metrics.py +0 -0
  834. {agox-3.11.0 → agox-3.11.1}/agox/utils/numerical_derivative.py +0 -0
  835. {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/__init__.py +0 -0
  836. {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/colors.py +0 -0
  837. {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/plot_atoms.py +0 -0
  838. {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/plot_cell.py +0 -0
  839. {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/plot_parity.py +0 -0
  840. {agox-3.11.0 → agox-3.11.1}/agox/utils/plot/utils.py +0 -0
  841. {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/__init__.py +0 -0
  842. {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/actor.py +0 -0
  843. {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/pool.py +0 -0
  844. {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/pool_startup.py +0 -0
  845. {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/pool_user.py +0 -0
  846. {agox-3.11.0 → agox-3.11.1}/agox/utils/ray/startup.py +0 -0
  847. {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/ABC_sparsifier.py +0 -0
  848. {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/CUR.py +0 -0
  849. {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/CUR_old.py +0 -0
  850. {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/MBkmeans.py +0 -0
  851. {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/__init__.py +0 -0
  852. {agox-3.11.0 → agox-3.11.1}/agox/utils/sparsifiers/random.py +0 -0
  853. {agox-3.11.0 → agox-3.11.1}/agox/utils/thermodynamics/__init__.py +0 -0
  854. {agox-3.11.0 → agox-3.11.1}/agox/utils/thermodynamics/gibbs.py +0 -0
  855. {agox-3.11.0 → agox-3.11.1}/agox/utils/thermodynamics/thermodynamics_data.py +0 -0
  856. {agox-3.11.0 → agox-3.11.1}/agox/writer/__init__.py +0 -0
  857. {agox-3.11.0 → agox-3.11.1}/agox/writer/utils.py +0 -0
  858. {agox-3.11.0 → agox-3.11.1}/agox/writer/writer.py +0 -0
  859. {agox-3.11.0 → agox-3.11.1}/agox.egg-info/dependency_links.txt +0 -0
  860. {agox-3.11.0 → agox-3.11.1}/agox.egg-info/entry_points.txt +0 -0
  861. {agox-3.11.0 → agox-3.11.1}/agox.egg-info/top_level.txt +0 -0
  862. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/attribute.rst +0 -0
  863. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/class.rst +0 -0
  864. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/data.rst +0 -0
  865. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/exception.rst +0 -0
  866. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/function.rst +0 -0
  867. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/method.rst +0 -0
  868. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/module.rst +0 -0
  869. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/package.rst +0 -0
  870. {agox-3.11.0 → agox-3.11.1}/docs/autoapi_templates/python/property.rst +0 -0
  871. {agox-3.11.0 → agox-3.11.1}/docs/make.bat +0 -0
  872. {agox-3.11.0 → agox-3.11.1}/docs/source/A.ico +0 -0
  873. {agox-3.11.0 → agox-3.11.1}/docs/source/agox_framework/agox_framework.rst +0 -0
  874. {agox-3.11.0 → agox-3.11.1}/docs/source/agox_framework/dataflow.rst +0 -0
  875. {agox-3.11.0 → agox-3.11.1}/docs/source/algorithms/ea.rst +0 -0
  876. {agox-3.11.0 → agox-3.11.1}/docs/source/algorithms/gcgo.rst +0 -0
  877. {agox-3.11.0 → agox-3.11.1}/docs/source/algorithms/search_generator.rst.old +0 -0
  878. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/actor_ray_example.py +0 -0
  879. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/analyzing_databases.rst +0 -0
  880. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/basic_ray_example.py +0 -0
  881. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/bonus_topics.rst +0 -0
  882. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/evaluator_callback.rst +0 -0
  883. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/parallel_add.py +0 -0
  884. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/parallel_network.py +0 -0
  885. {agox-3.11.0 → agox-3.11.1}/docs/source/bonus_topics/parallelization.rst +0 -0
  886. {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_analysis.rst +0 -0
  887. {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_convert.rst +0 -0
  888. {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_graph.rst +0 -0
  889. {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/agox_plot.rst +0 -0
  890. {agox-3.11.0 → agox-3.11.1}/docs/source/command_line_tools/command_line_new.rst +0 -0
  891. {agox-3.11.0 → agox-3.11.1}/docs/source/generators/generators.rst +0 -0
  892. {agox-3.11.0 → agox-3.11.1}/docs/source/generators/generators_overview.rst +0 -0
  893. {agox-3.11.0 → agox-3.11.1}/docs/source/generators/using_generators.rst +0 -0
  894. {agox-3.11.0 → agox-3.11.1}/docs/source/generators/writing_generators.rst +0 -0
  895. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/confinement_plot_RandomGenerator.png +0 -0
  896. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started.rst +0 -0
  897. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_other_algorithms.rst +0 -0
  898. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_running_agox.rst +0 -0
  899. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_slurm.rst +0 -0
  900. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_statistics.rst +0 -0
  901. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/getting_started_understanding_the_script.rst +0 -0
  902. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_script_serial.png +0 -0
  903. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_script_serial.py +0 -0
  904. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_script_single.py +0 -0
  905. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_serial_compare.png +0 -0
  906. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/rss_simple_single.png +0 -0
  907. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/slurm.png +0 -0
  908. {agox-3.11.0 → agox-3.11.1}/docs/source/getting_started/submission.sh +0 -0
  909. {agox-3.11.0 → agox-3.11.1}/docs/source/index.rst +0 -0
  910. {agox-3.11.0 → agox-3.11.1}/docs/source/logos/DG_logo.png +0 -0
  911. {agox-3.11.0 → agox-3.11.1}/docs/source/logos/INTERCAT_RGB_ONLINE.png +0 -0
  912. {agox-3.11.0 → agox-3.11.1}/docs/source/logos/logo-carbon.gif +0 -0
  913. {agox-3.11.0 → agox-3.11.1}/docs/source/logos/logo-nickel.gif +0 -0
  914. {agox-3.11.0 → agox-3.11.1}/docs/source/logos/villum_foundation.png +0 -0
  915. {agox-3.11.0 → agox-3.11.1}/docs/source/models/descriptor.rst +0 -0
  916. {agox-3.11.0 → agox-3.11.1}/docs/source/models/gpr.rst +0 -0
  917. {agox-3.11.0 → agox-3.11.1}/docs/source/models/models.rst +0 -0
  918. {agox-3.11.0 → agox-3.11.1}/docs/source/models/scripts/lgpr_load.py +0 -0
  919. {agox-3.11.0 → agox-3.11.1}/docs/source/models/scripts/lgpr_train.py +0 -0
  920. {agox-3.11.0 → agox-3.11.1}/docs/source/models/scripts/parity.png +0 -0
  921. {agox-3.11.0 → agox-3.11.1}/docs/source/models/sgpr.rst +0 -0
  922. {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/modifying_algorithms.rst +0 -0
  923. {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/potential.rst +0 -0
  924. {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/search.rst.unfinished +0 -0
  925. {agox-3.11.0 → agox-3.11.1}/docs/source/modifying_algorithms/system.rst +0 -0
  926. {agox-3.11.0 → agox-3.11.1}/docs/source/references/agox_citation.txt +0 -0
  927. {agox-3.11.0 → agox-3.11.1}/docs/source/references/references.rst +0 -0
  928. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/basic_observer.py +0 -0
  929. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/basic_observer.rst +0 -0
  930. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_and_main_observer.py +0 -0
  931. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_and_main_observer.rst +0 -0
  932. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_observer.py +0 -0
  933. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_observer.rst +0 -0
  934. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/database_observer_test.py +0 -0
  935. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_basic_observer.py +0 -0
  936. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_basic_observer.rst +0 -0
  937. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_sets_basic_observer.py +0 -0
  938. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/gets_sets_basic_observer.rst +0 -0
  939. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/two_methods_observer.py +0 -0
  940. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/two_methods_observer.rst +0 -0
  941. {agox-3.11.0 → agox-3.11.1}/docs/source/writing_modules/writing_modules.rst +0 -0
  942. {agox-3.11.0 → agox-3.11.1}/setup.cfg +0 -0
  943. {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
@@ -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
+ ![logo](docs/source/logos/logo-carbon.gif)
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
+ ![logo](docs/source/logos/logo-carbon.gif)
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
+ ]