gtsam-develop 4.3a0.dev202508202357__cp311-cp311-macosx_11_0_arm64.whl → 4.3a0.dev202508241542__cp311-cp311-macosx_11_0_arm64.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 IndexPairSetMap
6
- from builtins import dict as KeyPairDoubleMap
7
5
  from builtins import dict as MatchIndicesMap
6
+ from builtins import dict as KeyPairDoubleMap
7
+ from builtins import dict as IndexPairSetMap
8
+ from builtins import list as IndexPairVector
8
9
  from builtins import list as KeypointsVector
9
- from builtins import list as KeyVector
10
- from builtins import list as BinaryMeasurementsRot3
11
- from builtins import list as Point3Pairs
12
- from builtins import list as SfmTrack2dVector
10
+ from builtins import list as SfmTracks
13
11
  from builtins import list as Rot3Vector
14
- from builtins import list as SfmMeasurementVector
15
- from builtins import list as BinaryMeasurementsPoint3
16
12
  from builtins import list as Point2Vector
17
- from builtins import list as SfmTracks
18
- from builtins import list as SfmCameras
19
- from builtins import list as IndexPairVector
13
+ from builtins import list as BinaryMeasurementsPoint3
20
14
  from builtins import list as Pose3Vector
21
- from builtins import list as BetweenFactorPose3s
22
- from builtins import list as BinaryMeasurementsUnit3
23
- from builtins import list as Pose2Pairs
15
+ from builtins import list as Point3Pairs
24
16
  from builtins import list as Pose3Pairs
25
- from builtins import list as BetweenFactorPose2s
17
+ from builtins import list as SfmCameras
18
+ from builtins import list as Pose2Pairs
26
19
  from builtins import list as Point2Pairs
20
+ from builtins import list as KeyVector
21
+ from builtins import list as BetweenFactorPose3s
22
+ from builtins import list as BetweenFactorPose2s
23
+ from builtins import list as SfmTrack2dVector
24
+ from builtins import list as BinaryMeasurementsRot3
25
+ from builtins import list as SfmMeasurementVector
26
+ from builtins import list as BinaryMeasurementsUnit3
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,8 +1,8 @@
1
1
  gtsam/symbol_shorthand.py,sha256=HlTV-Z5aB5cXWT5AsbKOeWZIHoXQsH2W1S90ET-tidA,236
2
- gtsam/__init__.pyi,sha256=KtYPK7-7_DcqGjeV9uEQEMyCM7StLUKo3_KtkHQpLhs,44359
2
+ gtsam/__init__.pyi,sha256=AYN9HG09uiDTRn7EluHkk1Hi5yu1FxRlLFRusXUV_PQ,44359
3
3
  gtsam/gtsfm.py,sha256=Udlkb6o5iUk69uxBkb88-W1GLfu1g8iSuZlLu-RRU0o,202
4
4
  gtsam/__init__.py,sha256=6G-WPnb_FMQEJXNDDAmrKrQPau7evtd5svhTmMqhYSI,2011
5
- gtsam/gtsam.cpython-311-darwin.so,sha256=jTML-wfNEr3MlRfLKhDnvyvy6hwpXAgqokInA6enhoA,18175248
5
+ gtsam/gtsam.cpython-311-darwin.so,sha256=HXEa5LqHcI-gW_sZA7igryFxKHWhKCOwUtDdV6M962s,18175248
6
6
  gtsam/noiseModel.py,sha256=ybfIHa4sLXe78_k-Dib8nTaw34BRXqEDVtS2B9dzSO0,217
7
7
  gtsam/imuBias.py,sha256=tz3bOCFl29iMycbGFoF-ud6kRsJYjA7DJ2RJoKPFRU8,209
8
8
  gtsam/gtsam/utilities.pyi,sha256=i05kEneiWpMgXXo64Q0er5Ra-07ZXtSf4HafAq8bvjM,3395
@@ -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=aT1DCt1Kvw1A2w2mRHIJhZRFrYmoDaI5xYM6wEt86L8,137200
132
- gtsam/.dylibs/libgtsam.4.3a0.dev202508202357.dylib,sha256=L5WlRfhnQbumoyxTl67oWh30bBQlJtr2H3cvN3VbavU,5958176
133
132
  gtsam/.dylibs/libboost_regex.dylib,sha256=XWw3H3ehJjFuFVSSDGo2lyKOIsoTQ-0Aaf1ekhsQJfY,356464
133
+ gtsam/.dylibs/libgtsam.4.3a0.dev202508241542.dylib,sha256=pA1a0Ep1L7S1iQsuW4seNT9cQxJ9DJH_TwpFT9gwwEc,5958176
134
+ gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508241542.dylib,sha256=_YLXMl9ZyO8nE7-t1R4kEoLAAFRvh4ztzPM__Xmjfmw,1623248
134
135
  gtsam/.dylibs/libboost_serialization.dylib,sha256=7OW78djID14u2YB_F_TuXomOIsEpt8I7RnCAGuGmwCc,418288
135
136
  gtsam/.dylibs/libboost_timer.dylib,sha256=leVXIyCdydip4vwIm-Ghrt6UGy_Q-yhL2f8ITyfRku0,81520
136
137
  gtsam/.dylibs/libboost_filesystem.dylib,sha256=WUuuO1JZADriLciFi63Ky4dmqt1KA7_V6DcNdzCANSo,197328
137
138
  gtsam/.dylibs/libcephes-gtsam.1.0.0.dylib,sha256=pNZtgCIaV7_dC0WPXobOc8sNvd_0WQo1AdYxUsqZ1D0,176352
138
- gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508202357.dylib,sha256=X_A8XHD8RgwFzkhlR4geNZkyT6KtW7EHYIrGCdzKmBU,1623248
139
139
  gtsam/.dylibs/libmetis-gtsam.dylib,sha256=Od5V_NOZKhxu5cEw1wMfGxk3l0_2LEhV-GkEwnqyx4Q,449504
140
140
  gtsam/.dylibs/libboost_atomic.dylib,sha256=AbG9FmLd7biQVvDL9F7_sLOEgmhgj5bwxX98c5jnVVc,104160
141
141
  gtsam/.dylibs/libboost_date_time.dylib,sha256=zkeDyIl7aGu1K5avCbDjtJURdIPT8llHnNZ-G7N-_Cc,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_unstable/gtsam_unstable.cpython-311-darwin.so,sha256=iADXJSTPLqoH-PF6sif_yXAPRN4ys-wvAsOsY6VqaoU,2033440
253
+ gtsam_develop-4.3a0.dev202508241542.dist-info/RECORD,,
254
+ gtsam_develop-4.3a0.dev202508241542.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
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
257
+ gtsam_unstable/gtsam_unstable.cpython-311-darwin.so,sha256=7A-BKtEm8GmJkGEOYgPYtIw398k0Ag5GoqZ9Uw1KKeQ,2033440
254
258
  gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
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=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
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