gtsam-develop 4.3a0.dev202508202357__cp313-cp313-macosx_10_15_x86_64.whl → 4.3a0.dev202508241542__cp313-cp313-macosx_10_15_x86_64.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
@@ -3,27 +3,27 @@ Module definition file for GTSAM
3
3
  """
4
4
  from __future__ import annotations
5
5
  from builtins import dict as IndexPairSetMap
6
- from builtins import dict as MatchIndicesMap
7
6
  from builtins import dict as KeyPairDoubleMap
8
- from builtins import list as SfmTrack2dVector
7
+ from builtins import dict as MatchIndicesMap
9
8
  from builtins import list as BinaryMeasurementsPoint3
10
- from builtins import list as SfmCameras
9
+ from builtins import list as SfmTrack2dVector
10
+ from builtins import list as Pose3Vector
11
11
  from builtins import list as KeyVector
12
- from builtins import list as Point2Pairs
13
- from builtins import list as SfmMeasurementVector
14
- from builtins import list as BetweenFactorPose3s
15
- from builtins import list as Pose2Pairs
12
+ from builtins import list as Point2Vector
16
13
  from builtins import list as SfmTracks
17
- from builtins import list as BinaryMeasurementsUnit3
18
- from builtins import list as Pose3Pairs
19
- from builtins import list as IndexPairVector
20
- from builtins import list as Rot3Vector
21
14
  from builtins import list as Point3Pairs
15
+ from builtins import list as Pose3Pairs
16
+ from builtins import list as SfmCameras
17
+ from builtins import list as BinaryMeasurementsUnit3
18
+ from builtins import list as Pose2Pairs
22
19
  from builtins import list as BinaryMeasurementsRot3
23
- from builtins import list as Pose3Vector
24
- from builtins import list as KeypointsVector
25
- from builtins import list as Point2Vector
20
+ from builtins import list as SfmMeasurementVector
26
21
  from builtins import list as BetweenFactorPose2s
22
+ from builtins import list as KeypointsVector
23
+ from builtins import list as Point2Pairs
24
+ from builtins import list as IndexPairVector
25
+ from builtins import list as BetweenFactorPose3s
26
+ from builtins import list as Rot3Vector
27
27
  from gtsam.gtsam import AHRSFactor
28
28
  from gtsam.gtsam import AcceleratingScenario
29
29
  from gtsam.gtsam import AlgebraicDecisionTreeKey
Binary file
@@ -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/symbol_shorthand.py,sha256=HlTV-Z5aB5cXWT5AsbKOeWZIHoXQsH2W1S90ET-tidA,236
2
- gtsam/gtsam.cpython-313-darwin.so,sha256=epeatquJ99KWOuVG-fqtKfhIl-j5TRs2qxhfE2gH0Jo,27840880
3
- gtsam/__init__.pyi,sha256=yIxp8xr3eA6C7NDuj3kqzIl6f4SNdwjHed7mOnFh6sg,44359
2
+ gtsam/gtsam.cpython-313-darwin.so,sha256=W_qyrfgxZQZnKRXHAcB7n1cyQkWRJGYF3sCsNfS9hqc,27840880
3
+ gtsam/__init__.pyi,sha256=iYTwApyRgQUUzPB1MesGHwJE_5GfzTTHYscvbqCNuMA,44359
4
4
  gtsam/gtsfm.py,sha256=Udlkb6o5iUk69uxBkb88-W1GLfu1g8iSuZlLu-RRU0o,202
5
5
  gtsam/__init__.py,sha256=6G-WPnb_FMQEJXNDDAmrKrQPau7evtd5svhTmMqhYSI,2011
6
6
  gtsam/noiseModel.py,sha256=ybfIHa4sLXe78_k-Dib8nTaw34BRXqEDVtS2B9dzSO0,217
@@ -129,13 +129,13 @@ gtsam/utils/test_case.py,sha256=3wIqAW5_smes95XUJgUjD4v3FXACYSVzQ1l6MMdwSkA,1848
129
129
  gtsam/utils/logging_optimizer.py,sha256=tRnzQKV4eT5djS0Ojy5J7OGu7oVRjZw7Jhjrx_VQVTU,4417
130
130
  gtsam/utils/generate_trajectory.py,sha256=_1TZWhpRKj8ha0FOEmqUpEzAt3KLgwqyZJ4ueFD2jmE,2663
131
131
  gtsam/.dylibs/libboost_thread.dylib,sha256=Zdt9bJonKZ6UqOr9vX46yIR7Ii7FQMAb25KFtictZxY,140096
132
- gtsam/.dylibs/libgtsam.4.3a0.dev202508202357.dylib,sha256=7pHbKcWXu8I9hn7YiHnm79W79shfz4Z54Zf2FVrl994,6880672
133
132
  gtsam/.dylibs/libboost_regex.dylib,sha256=OuKqIt11T7pWAk6xIICf7IqZWnp2hL8mf5Yv21l53H0,374624
133
+ gtsam/.dylibs/libgtsam.4.3a0.dev202508241542.dylib,sha256=kmz3H2Yp7jmkEJ1jEjFUeELc7iSZ5Q02482wmKbxMUw,6880672
134
+ gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508241542.dylib,sha256=K36iFhq8esJf-gZZB7O6hxzBzK_QAtmw8O7JXCSC_I8,1884704
134
135
  gtsam/.dylibs/libboost_serialization.dylib,sha256=TfkeoS_P_8cWumat96Q4LuMnGB_YFaSC-obPYM-JTao,420944
135
136
  gtsam/.dylibs/libboost_timer.dylib,sha256=cp2NxSdL2hk5jTL63h41uzLfCKJQ3uRyCU8WhfoEl0g,82416
136
137
  gtsam/.dylibs/libboost_filesystem.dylib,sha256=Fuh5k1wjz7-McEYOYjZGKedrYGsboXzTrf7GyXiEQiQ,199712
137
138
  gtsam/.dylibs/libcephes-gtsam.1.0.0.dylib,sha256=ISA3p6BaPYULDTy4lb9OL6526GfF1gM2n5EE9rvgNKs,209680
138
- gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508202357.dylib,sha256=fH00Q6CiAbzW4j_vUNH3QRiG-35oxJvlMKjDXr8pEA8,1884704
139
139
  gtsam/.dylibs/libmetis-gtsam.dylib,sha256=4TdsUZUkBMeyE0Y-xnPH-CibvImkJeKUDSiHsI6fm8Y,532192
140
140
  gtsam/.dylibs/libboost_atomic.dylib,sha256=jthy3MSjmFpFmc2LPKzw2TXbK5dY8NbIETJd5JqiIOI,104400
141
141
  gtsam/.dylibs/libboost_date_time.dylib,sha256=gBEWbnfqECB3b47buz7qxcWANckV3uqLs-LF4jFs2kI,35008
@@ -250,14 +250,14 @@ gtsam/Data/Balbianello/BalbianelloMedium-4.key.gz,sha256=P6tu3JmA0NKlcFYdgYczTOH
250
250
  gtsam/Data/Balbianello/BalbianelloMedium-1.key.gz,sha256=RgT7tVXXOwvDug20TW-9xtoeO3dSSPMF1n9DaKxdrIw,332878
251
251
  gtsam/Data/Balbianello/BalbianelloMedium-3.key.gz,sha256=yNMcyqwZCOj9FG-6qXQ9xhJjpM135cTBJYlOUBG0rnQ,296236
252
252
  gtsam/Data/Balbianello/BalbianelloMedium-5.key.gz,sha256=4veDrxRdLH8k1DIhgj1984MitZ7nAWoXDWTWyXuu7Lg,241361
253
+ gtsam_develop-4.3a0.dev202508241542.dist-info/RECORD,,
254
+ gtsam_develop-4.3a0.dev202508241542.dist-info/WHEEL,sha256=_sJloPpIQ7em-9oqlhRS-kfRCmXJeAFP2INLE3hGoGM,138
255
+ gtsam_develop-4.3a0.dev202508241542.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
256
+ gtsam_develop-4.3a0.dev202508241542.dist-info/METADATA,sha256=2P1cfMoiBO7RKP5qhdRppRy53HI4YnR26DvtVRa14eQ,8808
253
257
  gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
254
- gtsam_unstable/gtsam_unstable.cpython-313-darwin.so,sha256=mjykE-r5NrIaQsdGKNeDe9j_f2Jy-wVewnwWwbqbGRA,3197584
258
+ gtsam_unstable/gtsam_unstable.cpython-313-darwin.so,sha256=bklcz0tGiPVYCH_9ln06ROQcat-2ouNrdxkFd4YFlSs,3197584
255
259
  gtsam_unstable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
260
  gtsam_unstable/tests/test_ProjectionFactorRollingShutter.py,sha256=t2l62uWoXfjrM8oH6ogV7M20WjTYKZ4CSferdurMIY0,2156
257
261
  gtsam_unstable/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
262
  gtsam_unstable/examples/LocalizationExample.py,sha256=na47I1PQ_5Tenj8Wg2LBg3GaqP32O4yEb8jtRWKu0P8,2882
259
263
  gtsam_unstable/examples/TimeOfArrivalExample.py,sha256=uky5ps4Ng83C0Q_s2EAc64Af6iztQjXXdj3ahifRXoI,3737
260
- gtsam_develop-4.3a0.dev202508202357.dist-info/RECORD,,
261
- gtsam_develop-4.3a0.dev202508202357.dist-info/WHEEL,sha256=_sJloPpIQ7em-9oqlhRS-kfRCmXJeAFP2INLE3hGoGM,138
262
- gtsam_develop-4.3a0.dev202508202357.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
263
- gtsam_develop-4.3a0.dev202508202357.dist-info/METADATA,sha256=4hrwX8Rbiavv3e3R25s7FRlV32_Oi7J2pREjIHbdkSY,7789