gtsam-develop 4.3a0.dev202508212343__cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl → 4.3a0.dev202508241820__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 MatchIndicesMap
6
5
  from builtins import dict as KeyPairDoubleMap
6
+ from builtins import dict as MatchIndicesMap
7
7
  from builtins import dict as IndexPairSetMap
8
- from builtins import list as BetweenFactorPose3s
9
- from builtins import list as Rot3Vector
10
- from builtins import list as Pose2Pairs
11
- from builtins import list as Pose3Vector
12
8
  from builtins import list as SfmTracks
13
- from builtins import list as BinaryMeasurementsRot3
14
- from builtins import list as KeypointsVector
15
- from builtins import list as SfmTrack2dVector
9
+ from builtins import list as BinaryMeasurementsUnit3
10
+ from builtins import list as Point2Vector
11
+ from builtins import list as Pose2Pairs
16
12
  from builtins import list as SfmMeasurementVector
17
- from builtins import list as SfmCameras
18
13
  from builtins import list as BetweenFactorPose2s
19
- from builtins import list as Pose3Pairs
20
- from builtins import list as Point2Vector
21
- from builtins import list as KeyVector
22
- from builtins import list as IndexPairVector
23
- from builtins import list as BinaryMeasurementsUnit3
24
- from builtins import list as BinaryMeasurementsPoint3
14
+ from builtins import list as SfmCameras
25
15
  from builtins import list as Point2Pairs
16
+ from builtins import list as SfmTrack2dVector
17
+ from builtins import list as Rot3Vector
26
18
  from builtins import list as Point3Pairs
19
+ from builtins import list as BinaryMeasurementsPoint3
20
+ from builtins import list as KeypointsVector
21
+ from builtins import list as IndexPairVector
22
+ from builtins import list as Pose3Vector
23
+ from builtins import list as Pose3Pairs
24
+ from builtins import list as KeyVector
25
+ from builtins import list as BinaryMeasurementsRot3
26
+ from builtins import list as BetweenFactorPose3s
27
27
  from gtsam.gtsam import AHRSFactor
28
28
  from gtsam.gtsam import AcceleratingScenario
29
29
  from gtsam.gtsam import AlgebraicDecisionTreeKey
gtsam/gtsam/__init__.pyi CHANGED
@@ -2980,7 +2980,7 @@ class DiscreteScenario(Scenario):
2980
2980
  """
2981
2981
  Named constructor to create a scenario from a CSV file.
2982
2982
 
2983
- The CSV file should contain a header row followed by data rows. All timestamps will be normalized so that the first timestamp in the file corresponds to t=0 for the scenario. Expected CSV format (16 columns): timestamp,px,py,pz,qw,qx,qy,qz,vx,vy,vz,omegax,omegay,omegaz,ax,ay,az
2983
+ The CSV file should contain a header row followed by data rows. All timestamps will be normalized so that the first timestamp in the file corresponds to t=0 for the scenario. CSV is expected to contain the following columns: t,q_w,q_x,q_y,q_z,v_x,v_y,v_z,p_x,p_y,p_z,w_x,w_y,w_z,a_x,a_y,a_z Other columns will be ignored.
2984
2984
 
2985
2985
  Args:
2986
2986
  csv_filepath: Path to the CSV file.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gtsam-develop
3
- Version: 4.3a0.dev202508212343
3
+ Version: 4.3a0.dev202508241820
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=d_gLOIcBmMHA2eEHMhoZKYBZZCC8Di8JJSSg557pF2w,44359
3
- gtsam/gtsam.cpython-311-aarch64-linux-gnu.so,sha256=sRdgqenQekURTXWei8kzmzWz7hvmBQvJWlXfzSVS6ag,22922561
2
+ gtsam/__init__.pyi,sha256=z0rB-4NF-DVL8p8l2ejOQg-i93RUz43Yt2hE9nTtao8,44359
3
+ gtsam/gtsam.cpython-311-aarch64-linux-gnu.so,sha256=EzJamX-QGIDeun4BCyRSbUqCvRNdKjqSSd0tcdTzhNw,22922633
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
@@ -114,7 +114,7 @@ gtsam/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
114
  gtsam/examples/gtsam_plotly.py,sha256=bTXAzZ3i_RunKrdGwFLsMsetYYleQrzDa50ekmrt_nQ,17073
115
115
  gtsam/examples/plot_city10000.py,sha256=xsM1HFlcBn6TqEqQtZjlOl0WQI6tVZMgjtKdYIusbyE,3353
116
116
  gtsam/examples/simulation.py,sha256=VAopcCosvdtXRy6xe547EDz73lXhLiYbPnFQZWjo2wU,5405
117
- gtsam/gtsam/__init__.pyi,sha256=RraDO3ADJ3tiorkBz_r0tKcGHwRfcWWmLpB5JY5cC7A,742771
117
+ gtsam/gtsam/__init__.pyi,sha256=klMyTsH4VsYX7v3zUWr1ZgMiuINTete1qOLmFZaqvsY,742814
118
118
  gtsam/gtsam/gtsfm.pyi,sha256=YqHbjQW2aHsecKdORMcoGqJscEVvor4GH3Ve8ze9e6A,713
119
119
  gtsam/gtsam/imuBias.pyi,sha256=zXpyT6XAIoA6eOMRom7bzPc86BS_3VoO_oujcpsHct4,2808
120
120
  gtsam/gtsam/lago.pyi,sha256=XP_iLWJJ8c8jnYidbxmh8iRzo9FiZcEM5TR73JM_bkE,562
@@ -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.dev202508212343,sha256=YA88WaeKLM6voee0ZTsbRCgHW3npzwdYF_PvgsCcgyM,11275449
251
- gtsam_develop.libs/libgtsam_unstable-e22bad36.so.4.3a0.dev202508212343,sha256=MIwkDJ7n8V_xyk6GJcTehmtpShjBvh2mRaC1Zilozno,2585577
250
+ gtsam_develop.libs/libgtsam-1d21cd03.so.4.3a0.dev202508241820,sha256=N7qq4PU4ugm6fbQF_NZG6HCXlXA9_6Wa-x85mtXtiJE,11275857
251
+ gtsam_develop.libs/libgtsam_unstable-e22bad36.so.4.3a0.dev202508241820,sha256=mOegPm8zjCB51xZ1w9G35YQPyt1j_vy7zitM2kBwRTs,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=EmHXYNX2PP5z7-KhTFCHNlladbmZMA95dFURap_CTKg,2715681
254
+ gtsam_unstable/gtsam_unstable.cpython-311-aarch64-linux-gnu.so,sha256=xOVwzL7u5TqZ6rgAwovzgoY_AdkqCJNfNzU6k6lwHsE,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.dev202508212343.dist-info/METADATA,sha256=huLNCJ3scOIs_cnqXyM8qYjOO2sIWw_rR-2OJ1POJpw,7789
261
- gtsam_develop-4.3a0.dev202508212343.dist-info/WHEEL,sha256=QJg38rE8f0PT7_ZWlFpvwOoUFGenUbSJhXM-6SbDiao,153
262
- gtsam_develop-4.3a0.dev202508212343.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
263
- gtsam_develop-4.3a0.dev202508212343.dist-info/RECORD,,
260
+ gtsam_develop-4.3a0.dev202508241820.dist-info/METADATA,sha256=Fyn8l-4CJfBQxdpfQCUJ_nLfbhGbS308gORzO3OaWKE,8808
261
+ gtsam_develop-4.3a0.dev202508241820.dist-info/WHEEL,sha256=QJg38rE8f0PT7_ZWlFpvwOoUFGenUbSJhXM-6SbDiao,153
262
+ gtsam_develop-4.3a0.dev202508241820.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
263
+ gtsam_develop-4.3a0.dev202508241820.dist-info/RECORD,,