scgraph 3.2.1__tar.gz → 3.2.3__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.
- {scgraph-3.2.1 → scgraph-3.2.3}/CMakeLists.txt +5 -1
- {scgraph-3.2.1 → scgraph-3.2.3}/PKG-INFO +2 -2
- {scgraph-3.2.1 → scgraph-3.2.3}/build/cp314-cp314-linux_x86_64/CMakeFiles/CheckCXX/CMakeLists.txt +1 -1
- {scgraph-3.2.1 → scgraph-3.2.3}/pyproject.toml +2 -2
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/bindings/graph_bindings.cpp +3 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/contraction_hierarchies.hpp +1 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/graph.cpp +2 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/graph.hpp +2 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/graph_utils.cpp +1 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/transit_node_routing.cpp +1 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/transit_node_routing.hpp +1 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/LICENSE +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/README.md +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/__init__.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/contraction_hierarchies.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/bmssp.hpp +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/contraction_hierarchies.cpp +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/cpp/src/graph_utils.hpp +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/geograph.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/graph.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/graph_utils.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/grid.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/helpers/__init__.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/helpers/geojson.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/helpers/visvalingam.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/transit_node_routing.py +0 -0
- {scgraph-3.2.1 → scgraph-3.2.3}/scgraph/utils.py +0 -0
|
@@ -49,7 +49,11 @@ else()
|
|
|
49
49
|
# OPTIMIZATION FLAGS
|
|
50
50
|
# -----------------------------
|
|
51
51
|
set(CMAKE_BUILD_TYPE Release)
|
|
52
|
-
|
|
52
|
+
if(MSVC)
|
|
53
|
+
set(CMAKE_CXX_FLAGS_RELEASE "/O2 /DNDEBUG")
|
|
54
|
+
else()
|
|
55
|
+
set(CMAKE_CXX_FLAGS_RELEASE "-O3 -march=native -DNDEBUG")
|
|
56
|
+
endif()
|
|
53
57
|
|
|
54
58
|
# -----------------------------
|
|
55
59
|
# Find Packages
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: scgraph
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.3
|
|
4
4
|
Summary: Determine an approximate distance and route between two points on earth.
|
|
5
5
|
Author-Email: Connor Makowski <conmak@mit.edu>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -11,7 +11,7 @@ Project-URL: Homepage, https://github.com/connor-makowski/scgraph
|
|
|
11
11
|
Project-URL: Bug Tracker, https://github.com/connor-makowski/scgraph/issues
|
|
12
12
|
Project-URL: Documentation, https://connor-makowski.github.io/scgraph/scgraph.html
|
|
13
13
|
Requires-Python: >=3.10
|
|
14
|
-
Requires-Dist: geokdtree==1.2.
|
|
14
|
+
Requires-Dist: geokdtree==1.2.3
|
|
15
15
|
Requires-Dist: bmsspy<3.0.0,>=2.2.0
|
|
16
16
|
Requires-Dist: requests<3.0.0,>=2.32.0
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
@@ -26,7 +26,7 @@ include = [
|
|
|
26
26
|
|
|
27
27
|
[project]
|
|
28
28
|
name = "scgraph"
|
|
29
|
-
version = "3.2.
|
|
29
|
+
version = "3.2.3"
|
|
30
30
|
description = "Determine an approximate distance and route between two points on earth."
|
|
31
31
|
authors = [
|
|
32
32
|
{name="Connor Makowski", email="conmak@mit.edu"}
|
|
@@ -39,7 +39,7 @@ classifiers = [
|
|
|
39
39
|
"Programming Language :: C++",
|
|
40
40
|
"Operating System :: OS Independent",
|
|
41
41
|
]
|
|
42
|
-
dependencies = ["geokdtree==1.2.
|
|
42
|
+
dependencies = ["geokdtree==1.2.3","bmsspy>=2.2.0,<3.0.0","requests>=2.32.0,<3.0.0"]
|
|
43
43
|
|
|
44
44
|
[project.urls]
|
|
45
45
|
"Homepage" = "https://github.com/connor-makowski/scgraph"
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
#include <nanobind/stl/tuple.h>
|
|
11
11
|
#include <nanobind/stl/shared_ptr.h>
|
|
12
12
|
#include <nanobind/operators.h>
|
|
13
|
+
#include <string>
|
|
14
|
+
#include <stdexcept>
|
|
15
|
+
#include <memory>
|
|
13
16
|
#include "../src/graph.hpp"
|
|
14
17
|
#include "../src/contraction_hierarchies.hpp"
|
|
15
18
|
#include "../src/transit_node_routing.hpp"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|