gtsam-develop 4.3a0.dev202508202357__cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl → 4.3a0.dev202508241542__cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl

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.

Potentially problematic release.


This version of gtsam-develop might be problematic. Click here for more details.

gtsam/__init__.pyi CHANGED
@@ -2,28 +2,28 @@
2
2
  Module definition file for GTSAM
3
3
  """
4
4
  from __future__ import annotations
5
- from builtins import dict as KeyPairDoubleMap
6
5
  from builtins import dict as IndexPairSetMap
7
6
  from builtins import dict as MatchIndicesMap
8
- from builtins import list as BetweenFactorPose2s
9
- from builtins import list as Pose3Pairs
7
+ from builtins import dict as KeyPairDoubleMap
8
+ from builtins import list as KeyVector
9
+ from builtins import list as Pose2Pairs
10
+ from builtins import list as Pose3Vector
11
+ from builtins import list as IndexPairVector
10
12
  from builtins import list as KeypointsVector
11
- from builtins import list as BinaryMeasurementsUnit3
13
+ from builtins import list as BinaryMeasurementsPoint3
14
+ from builtins import list as Rot3Vector
15
+ from builtins import list as SfmCameras
16
+ from builtins import list as BetweenFactorPose2s
12
17
  from builtins import list as Point2Vector
13
- from builtins import list as Pose3Vector
18
+ from builtins import list as Pose3Pairs
14
19
  from builtins import list as Point2Pairs
15
- from builtins import list as Pose2Pairs
16
- from builtins import list as Rot3Vector
17
20
  from builtins import list as BinaryMeasurementsRot3
18
- from builtins import list as SfmCameras
19
- from builtins import list as SfmMeasurementVector
20
- from builtins import list as SfmTrack2dVector
21
- from builtins import list as BinaryMeasurementsPoint3
22
21
  from builtins import list as BetweenFactorPose3s
23
- from builtins import list as KeyVector
24
- from builtins import list as IndexPairVector
22
+ from builtins import list as SfmTrack2dVector
23
+ from builtins import list as BinaryMeasurementsUnit3
25
24
  from builtins import list as SfmTracks
26
25
  from builtins import list as Point3Pairs
26
+ from builtins import list as SfmMeasurementVector
27
27
  from gtsam.gtsam import AHRSFactor
28
28
  from gtsam.gtsam import AcceleratingScenario
29
29
  from gtsam.gtsam import AlgebraicDecisionTreeKey
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gtsam-develop
3
- Version: 4.3a0.dev202508202357
3
+ Version: 4.3a0.dev202508241542
4
4
  Summary: Georgia Tech Smoothing And Mapping library
5
5
  Home-page: https://gtsam.org/
6
6
  Author: Frank Dellaert et. al.
@@ -45,14 +45,13 @@ mapping (SAM) in robotics and vision, using Factor Graphs and Bayes
45
45
  Networks as the underlying computing paradigm rather than sparse
46
46
  matrices.
47
47
 
48
- The current support matrix is:
49
-
50
- | Platform | Compiler | Build Status |
51
- | :----------------: | :-------: | :------------------------------------------------------------------------------: |
52
- | Ubuntu 22.04/24.04 | gcc/clang | ![Linux CI](https://github.com/borglab/gtsam/workflows/Linux%20CI/badge.svg) |
53
- | macOS | clang | ![macOS CI](https://github.com/borglab/gtsam/workflows/macOS%20CI/badge.svg) |
54
- | Windows | MSVC | ![Windows CI](https://github.com/borglab/gtsam/workflows/Windows%20CI/badge.svg) |
55
48
 
49
+ <!-- Main CI Badges (develop branch) -->
50
+ | CI Status | Platform | Compiler |
51
+ |:----------|:---------|:---------|
52
+ | [![Python CI](https://github.com/borglab/gtsam/actions/workflows/build-python.yml/badge.svg?branch=develop)](https://github.com/borglab/gtsam/actions/workflows/build-python.yml?query=branch%3Adevelop) | Ubuntu 22.04, MacOS 13-14, Windows | gcc/clang,MSVC |
53
+ | [![vcpkg](https://github.com/borglab/gtsam/actions/workflows/vcpkg.yml/badge.svg?branch=develop)](https://github.com/borglab/gtsam/actions/workflows/vcpkg.yml?query=branch%3Adevelop) | Latest Windows/Ubuntu/Mac | - |
54
+ | [![Build Wheels for Develop](https://github.com/borglab/gtsam/actions/workflows/build-cibw.yml/badge.svg?branch=develop)](https://github.com/borglab/gtsam/actions/workflows/build-cibw.yml?query=branch%3Adevelop) | See [pypi files](https://pypi.org/project/gtsam-develop/#files); no Windows| - |
56
55
 
57
56
  On top of the C++ library, GTSAM includes [wrappers for MATLAB & Python](#wrappers).
58
57
 
@@ -66,15 +65,29 @@ In the root library folder execute:
66
65
  mkdir build
67
66
  cd build
68
67
  cmake ..
69
- make check (optional, runs unit tests)
68
+ make check # optional, runs all unit tests
70
69
  make install
71
70
  ```
72
71
 
73
72
  Prerequisites:
74
73
 
75
- - [Boost](http://www.boost.org/users/download/) >= 1.65 (Ubuntu: `sudo apt-get install libboost-all-dev`)
76
- - [CMake](http://www.cmake.org/cmake/resources/software.html) >= 3.0 (Ubuntu: `sudo apt-get install cmake`)
77
- - A modern compiler, i.e., at least gcc 4.7.3 on Linux.
74
+ - A modern compiler:
75
+ - Mac: at least xcode-14.2
76
+ - Linux: at least clang-11 or gcc-9
77
+ - Windows: at least msvc-14.2
78
+ - [CMake](http://www.cmake.org/cmake/resources/software.html) >= 3.0
79
+ - Ubuntu: `sudo apt-get install cmake`
80
+
81
+ Optional Boost prerequisite:
82
+
83
+ Boost is now *optional*. Two cmake flags govern its behavior:
84
+ - `GTSAM_USE_BOOST_FEATURES` = `ON|OFF`: some of our timers and concept checking in the tests still depend on boost.
85
+ - `GTSAM_ENABLE_BOOST_SERIALIZATION` = `ON|OFF`: serialization of factor graphs, factors, etc still is done using boost
86
+
87
+ If one or both of these flags are `ON`, you need to install [Boost](http://www.boost.org/users/download/) >= 1.70
88
+ - Mac: `brew install boost`
89
+ - Ubuntu: `sudo apt-get install libboost-all-dev`
90
+ - Windows: We highly recommend using the [vcpkg](https://github.com/microsoft/vcpkg) package manager. For other installation methods or troubleshooting, please see the guidance in the [cmake/HandleBoost.cmake](cmake/HandleBoost.cmake) script.
78
91
 
79
92
  Optional prerequisites - used automatically if findable by CMake:
80
93
 
@@ -1,6 +1,6 @@
1
1
  gtsam/__init__.py,sha256=6G-WPnb_FMQEJXNDDAmrKrQPau7evtd5svhTmMqhYSI,2011
2
- gtsam/__init__.pyi,sha256=2tjvwCbUHqYDN7nAcxE9Umn1GFsq9sjwVABj6LbOwjc,44359
3
- gtsam/gtsam.cpython-311-aarch64-linux-gnu.so,sha256=GLAudEa3cw6PaliHKsXX4l5e3tvNpuwb1zlA4auNxg8,22922561
2
+ gtsam/__init__.pyi,sha256=S91-d830BSLokJWa6QbCTdjJOTVLzdkswrjoPMcm2vs,44359
3
+ gtsam/gtsam.cpython-311-aarch64-linux-gnu.so,sha256=26PFMyA6kjBCBAeszdEU6KTej2K91VRO3ru8EKPGSZc,22922561
4
4
  gtsam/gtsfm.py,sha256=Udlkb6o5iUk69uxBkb88-W1GLfu1g8iSuZlLu-RRU0o,202
5
5
  gtsam/imuBias.py,sha256=tz3bOCFl29iMycbGFoF-ud6kRsJYjA7DJ2RJoKPFRU8,209
6
6
  gtsam/noiseModel.py,sha256=ybfIHa4sLXe78_k-Dib8nTaw34BRXqEDVtS2B9dzSO0,217
@@ -247,17 +247,17 @@ gtsam_develop.libs/libboost_system-0f8f8a6a.so.1.87.0,sha256=vG7c-nCNDFk9UrmGaYj
247
247
  gtsam_develop.libs/libboost_thread-e6217d1e.so.1.87.0,sha256=E2jFMpQ_xgH8mzebJPVAo9JKwZRF0cTUZx4q4aDVVKo,357745
248
248
  gtsam_develop.libs/libboost_timer-c03b5720.so.1.87.0,sha256=C-jrqHaflQqKfg88hGhzFRof8w0WX5Lw-N56zLtD3CE,133249
249
249
  gtsam_develop.libs/libcephes-gtsam-906422bf.so.1.0.0,sha256=aX4Q_2V2F1uwqCEdNkLhzOzgGWLf2cTeZn9OJeRcSvY,264913
250
- gtsam_develop.libs/libgtsam-57fc1f36.so.4.3a0.dev202508202357,sha256=LZjIeYmSN1eXiNmnD3xHdRtJv_Sz7qTgijBOk6bp9DQ,11275449
251
- gtsam_develop.libs/libgtsam_unstable-e22bad36.so.4.3a0.dev202508202357,sha256=QDDIuTntg-l3zDsmryy_Y2gI1mGK1-A0t_BPpPYcHZs,2585577
250
+ gtsam_develop.libs/libgtsam-57fc1f36.so.4.3a0.dev202508241542,sha256=tmamP5L-IkM5B7yFcifbfWvkH_kAdqhcVezqtmv7pDM,11275449
251
+ gtsam_develop.libs/libgtsam_unstable-e22bad36.so.4.3a0.dev202508241542,sha256=JzLm2KS8tzCF9s_Cp2sFxtdmYEN2oAHatEJbOdWKjn0,2585577
252
252
  gtsam_develop.libs/libmetis-gtsam-b7310f3a.so,sha256=6Y9LebAEnr8OFCzKGxK2KADmtBGIq3XnzDpXF7jMX4A,546689
253
253
  gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
254
- gtsam_unstable/gtsam_unstable.cpython-311-aarch64-linux-gnu.so,sha256=dPnuBLeYBqwNkwv20pfo3mrcFMjZ8W4aiTw-DhXPdvY,2715681
254
+ gtsam_unstable/gtsam_unstable.cpython-311-aarch64-linux-gnu.so,sha256=Z1yWrmMvCAqEcBIWbo3A3E64CSIxzXcug17Ioka_eu0,2715681
255
255
  gtsam_unstable/examples/LocalizationExample.py,sha256=na47I1PQ_5Tenj8Wg2LBg3GaqP32O4yEb8jtRWKu0P8,2882
256
256
  gtsam_unstable/examples/TimeOfArrivalExample.py,sha256=uky5ps4Ng83C0Q_s2EAc64Af6iztQjXXdj3ahifRXoI,3737
257
257
  gtsam_unstable/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
258
  gtsam_unstable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
259
  gtsam_unstable/tests/test_ProjectionFactorRollingShutter.py,sha256=t2l62uWoXfjrM8oH6ogV7M20WjTYKZ4CSferdurMIY0,2156
260
- gtsam_develop-4.3a0.dev202508202357.dist-info/METADATA,sha256=4hrwX8Rbiavv3e3R25s7FRlV32_Oi7J2pREjIHbdkSY,7789
261
- gtsam_develop-4.3a0.dev202508202357.dist-info/WHEEL,sha256=QJg38rE8f0PT7_ZWlFpvwOoUFGenUbSJhXM-6SbDiao,153
262
- gtsam_develop-4.3a0.dev202508202357.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
263
- gtsam_develop-4.3a0.dev202508202357.dist-info/RECORD,,
260
+ gtsam_develop-4.3a0.dev202508241542.dist-info/METADATA,sha256=2P1cfMoiBO7RKP5qhdRppRy53HI4YnR26DvtVRa14eQ,8808
261
+ gtsam_develop-4.3a0.dev202508241542.dist-info/WHEEL,sha256=QJg38rE8f0PT7_ZWlFpvwOoUFGenUbSJhXM-6SbDiao,153
262
+ gtsam_develop-4.3a0.dev202508241542.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
263
+ gtsam_develop-4.3a0.dev202508241542.dist-info/RECORD,,