libcasm-mapping 2.0a3__tar.gz → 2.0a4__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.
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/CHANGELOG.md +19 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/PKG-INFO +3 -3
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/build_requirements.txt +2 -2
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/MappingSearch.hh +3 -1
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/pyproject.toml +9 -9
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/conf.py +1 -3
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/PKG-INFO +3 -3
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/SOURCES.txt +1 -0
- libcasm_mapping-2.0a4/python/libcasm_mapping.egg-info/requires.txt +3 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/pyproject.toml +2 -2
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/setup.py +1 -3
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/src/mapping_mapsearch.cpp +426 -140
- libcasm_mapping-2.0a4/python/tests/test_MappingSearch.py +186 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/setup.py +1 -1
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/MappingSearch.cc +46 -11
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/SearchData.cc +7 -1
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/atom_cost.cc +0 -1
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/murty.cc +1 -1
- libcasm-mapping-2.0a3/python/libcasm_mapping.egg-info/requires.txt +0 -3
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/CMakeLists.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/CMakeLists.txt.in +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/LICENSE +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/MANIFEST.in +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/README.md +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/cmake/CASMcode_mappingConfig.cmake.in +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/dev_requirements.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/doc/customdoxygen.css +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/doc/doxygen_config +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/doc_requirements.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/AtomMapping.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/LatticeMapping.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/SearchData.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/StructureMapping.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/atom_cost.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/hungarian.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/LatticeMap.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/SimpleStrucMapCalculator.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/StrucMapCalculatorInterface.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/StrucMapping.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/impl/io/json/StrucMapping_json_io.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/io/json_io.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/lattice_cost.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/map_atoms.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/map_lattices.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/map_structures.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/misc.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/murty.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/include/casm/mapping/version.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/make_CMakeLists.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/pre-commit +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/.gitignore +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/apple-touch-icon.png +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/css/custom.css +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/favicon-16x16.png +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/favicon-32x32.png +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo.pdf +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo.svg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo_dark.svg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo_dark_outline.svg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/logo_outline.svg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/small_logo.pdf +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/small_logo.svg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_static/small_logo_dark.svg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/base.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-attr-template.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-class-template.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-function-template.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/_templates/custom-module-template.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/bibliography.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/index.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/installation.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/reference/libcasm/index.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/refs.bib +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/doc/usage.rst +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_1.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_2.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_3.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/examples/example_4.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/__init__.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/info/__init__.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/mapsearch/__init__.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm/mapping/methods/__init__.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/dependency_links.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/libcasm_mapping.egg-info/top_level.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/src/mapping_info.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/src/mapping_methods.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/conftest.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_info_io.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_interpolate_lattices.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_interpolate_structures.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_map_lattices.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/python/tests/test_map_structures.py +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/setup.cfg +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/AtomMapping.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/LatticeMapping.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/StructureMapping.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/hungarian.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/LatticeMap.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/SimpleStrucMapCalculator.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/StrucMapping.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/impl/io/json/StrucMapping_json_io.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/io/json_io.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/lattice_cost.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/map_atoms.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/map_lattices.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/map_structures.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/src/casm/mapping/version.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/stylize.sh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/test_requirements.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/CMakeLists.txt +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/CMakeLists.txt.in +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/SearchTestData.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/autotools.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/autotools.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/gtest_main_run_all.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/AtomMappingSearchData_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/LatticeMap_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/LatticeMappingSearchData_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/MappingSearch_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/PrimSearchData_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/StrucMapper_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/StrucMapping_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/StructureSearchData_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/hungarian_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/make_trial_translations_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/murty_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/mapping/version_test.cpp +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/testdir.cc +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/testdir.hh +0 -0
- {libcasm-mapping-2.0a3 → libcasm_mapping-2.0a4}/tests/unit/teststructures.hh +0 -0
|
@@ -5,6 +5,25 @@ All notable changes to `libcasm-mapping` will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v2.0a4] - 2024-07-12
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Added `cost` methods to IsotropicAtomCost, SymmetryBreakingAtomCost, and WeightedTotalCost equivalent to the __call__ operators to improve documentation.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Changed default `atom_cost_f` for libcasm.mapping.mapsearch.MappingSearch to IsotropicAtomCost.
|
|
17
|
+
- Changed MappingSearch node insertion so that nodes are only added to the queue if the total cost is less than or equal to the current max_cost instead of always.
|
|
18
|
+
- Wheels compiled with numpy>=2.0.0
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Documentation errors
|
|
23
|
+
- Renamed QueueConstraints constructor parameter which was misnamed `min_queue_size` to the correct name `max_queue_size`
|
|
24
|
+
- Fixed MappingSearch node insertion so that solutions are only added to the results if the total cost is less than or equal to the current max_cost even if the current number of results is less than k_best.
|
|
25
|
+
|
|
26
|
+
|
|
8
27
|
## [v2.0a3] - 2024-03-14
|
|
9
28
|
|
|
10
29
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: libcasm-mapping
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.0a4
|
|
4
4
|
Summary: CASM structure mapping
|
|
5
5
|
Author-email: CASM developers <casm-developers@lists.engr.ucsb.edu>
|
|
6
6
|
License: LGPL2.1+
|
|
@@ -14,8 +14,8 @@ Classifier: Topic :: Scientific/Engineering
|
|
|
14
14
|
Requires-Python: >=3.9
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: libcasm-global>=2.0.
|
|
18
|
-
Requires-Dist: libcasm-xtal>=2.
|
|
17
|
+
Requires-Dist: libcasm-global>=2.0.5
|
|
18
|
+
Requires-Dist: libcasm-xtal>=2.0a10
|
|
19
19
|
Requires-Dist: numpy
|
|
20
20
|
|
|
21
21
|
<img alt="Shows the CASM logo" src="https://raw.githubusercontent.com/prisms-center/CASMcode_global/main/python/doc/_static/logo.svg" width="600" />
|
|
@@ -269,7 +269,9 @@ inline void MappingSearch::pop_front() { queue.erase(queue.begin()); }
|
|
|
269
269
|
/// \brief Erase highest total cost MappingNode in the queue
|
|
270
270
|
///
|
|
271
271
|
/// Invalid if !size()
|
|
272
|
-
inline void MappingSearch::pop_back() {
|
|
272
|
+
inline void MappingSearch::pop_back() {
|
|
273
|
+
queue.erase(std::next(queue.rbegin()).base());
|
|
274
|
+
}
|
|
273
275
|
|
|
274
276
|
/// \brief Return the size of the queue
|
|
275
277
|
inline Index MappingSearch::size() const { return queue.size(); }
|
|
@@ -6,14 +6,14 @@ requires = [
|
|
|
6
6
|
"cmake>=3.20",
|
|
7
7
|
"ninja",
|
|
8
8
|
"pybind11>=2.6",
|
|
9
|
-
"libcasm-global>=2.0.
|
|
10
|
-
"libcasm-xtal>=2.
|
|
9
|
+
"libcasm-global>=2.0.5",
|
|
10
|
+
"libcasm-xtal>=2.0a10",
|
|
11
11
|
]
|
|
12
12
|
build-backend = "setuptools.build_meta"
|
|
13
13
|
|
|
14
14
|
[project]
|
|
15
15
|
name = "libcasm-mapping"
|
|
16
|
-
version = "2.
|
|
16
|
+
version = "2.0a4"
|
|
17
17
|
authors = [
|
|
18
18
|
{ name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" },
|
|
19
19
|
]
|
|
@@ -29,8 +29,8 @@ classifiers = [
|
|
|
29
29
|
"Topic :: Scientific/Engineering",
|
|
30
30
|
]
|
|
31
31
|
dependencies = [
|
|
32
|
-
"libcasm-global>=2.0.
|
|
33
|
-
"libcasm-xtal>=2.
|
|
32
|
+
"libcasm-global>=2.0.5",
|
|
33
|
+
"libcasm-xtal>=2.0a10",
|
|
34
34
|
"numpy",
|
|
35
35
|
]
|
|
36
36
|
|
|
@@ -39,13 +39,13 @@ Homepage = "https://prisms-center.github.io/CASMcode_docs/"
|
|
|
39
39
|
Repository = "https://github.com/prisms-center/CASMcode_mapping"
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
[tool.ruff]
|
|
43
|
-
select = ["E", "F", "I"]
|
|
42
|
+
[tool.ruff.lint]
|
|
43
|
+
select = ["NPY201", "E", "F", "I"]
|
|
44
44
|
|
|
45
|
-
[tool.ruff.per-file-ignores]
|
|
45
|
+
[tool.ruff.lint.per-file-ignores]
|
|
46
46
|
"__init__.py" = ["F401"]
|
|
47
47
|
|
|
48
|
-
[tool.ruff.isort]
|
|
48
|
+
[tool.ruff.lint.isort]
|
|
49
49
|
known-first-party = ["libcasm", "casm"]
|
|
50
50
|
|
|
51
51
|
|
|
@@ -3,14 +3,13 @@ import os
|
|
|
3
3
|
# -- package specific configuration --
|
|
4
4
|
project = "libcasm-mapping"
|
|
5
5
|
version = "2.0" # The short X.Y version.
|
|
6
|
-
release = "2.
|
|
6
|
+
release = "2.0a4" # The full version, including alpha/beta/rc tags.
|
|
7
7
|
project_desc = "CASM structure mapping"
|
|
8
8
|
logo_text = "libcasm-mapping"
|
|
9
9
|
github_url = "https://github.com/prisms-center/CASMcode_mapping/"
|
|
10
10
|
pypi_url = "https://pypi.org/project/libcasm-mapping/"
|
|
11
11
|
intersphinx_libcasm_packages = [("global", "2.0"), ("xtal", "2.0")]
|
|
12
12
|
|
|
13
|
-
|
|
14
13
|
# -- CASM common configuration ---
|
|
15
14
|
|
|
16
15
|
# -*- coding: utf-8 -*-
|
|
@@ -62,7 +61,6 @@ for package, vers in intersphinx_libcasm_packages:
|
|
|
62
61
|
|
|
63
62
|
print(intersphinx_mapping)
|
|
64
63
|
|
|
65
|
-
|
|
66
64
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
67
65
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
68
66
|
# ones.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: libcasm-mapping
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.0a4
|
|
4
4
|
Summary: CASM structure mapping
|
|
5
5
|
Author-email: CASM developers <casm-developers@lists.engr.ucsb.edu>
|
|
6
6
|
License: LGPL2.1+
|
|
@@ -14,8 +14,8 @@ Classifier: Topic :: Scientific/Engineering
|
|
|
14
14
|
Requires-Python: >=3.9
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: libcasm-global>=2.0.
|
|
18
|
-
Requires-Dist: libcasm-xtal>=2.
|
|
17
|
+
Requires-Dist: libcasm-global>=2.0.5
|
|
18
|
+
Requires-Dist: libcasm-xtal>=2.0a10
|
|
19
19
|
Requires-Dist: numpy
|
|
20
20
|
|
|
21
21
|
<img alt="Shows the CASM logo" src="https://raw.githubusercontent.com/prisms-center/CASMcode_global/main/python/doc/_static/logo.svg" width="600" />
|
|
@@ -80,6 +80,7 @@ python/src/mapping_info.cpp
|
|
|
80
80
|
python/src/mapping_mapsearch.cpp
|
|
81
81
|
python/src/mapping_methods.cpp
|
|
82
82
|
python/tests/conftest.py
|
|
83
|
+
python/tests/test_MappingSearch.py
|
|
83
84
|
python/tests/test_info_io.py
|
|
84
85
|
python/tests/test_interpolate_lattices.py
|
|
85
86
|
python/tests/test_interpolate_structures.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
2
|
|
|
3
|
-
__version__ = "2.
|
|
3
|
+
__version__ = "2.0a4"
|
|
4
4
|
|
|
5
5
|
# Available at setup time due to pyproject.toml
|
|
6
6
|
from pybind11.setup_helpers import Pybind11Extension, build_ext
|
|
@@ -37,7 +37,6 @@ extra_link_args = [
|
|
|
37
37
|
"-lcasm_mapping",
|
|
38
38
|
]
|
|
39
39
|
|
|
40
|
-
|
|
41
40
|
# The main interface is through Pybind11Extension.
|
|
42
41
|
# * You can add cxx_std=11/14/17, and then build_ext can be removed.
|
|
43
42
|
# * You can set include_pybind11=false to add the include directory yourself,
|
|
@@ -82,7 +81,6 @@ ext_modules = [
|
|
|
82
81
|
),
|
|
83
82
|
]
|
|
84
83
|
|
|
85
|
-
|
|
86
84
|
setup(
|
|
87
85
|
name="libcasm-mapping",
|
|
88
86
|
version=__version__,
|