gtsam-develop 4.3a0.dev202508202018__cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl → 4.3a0.dev202508202357__cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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 +13 -13
- gtsam/gtsam/__init__.pyi +38 -31
- gtsam/gtsam/so3.pyi +36 -25
- gtsam/gtsam.cpython-310-aarch64-linux-gnu.so +0 -0
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508202357.dist-info}/METADATA +1 -1
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508202357.dist-info}/RECORD +11 -11
- gtsam_develop.libs/{libgtsam-f15c7675.so.4.3a0.dev202508202018 → libgtsam-57fc1f36.so.4.3a0.dev202508202357} +0 -0
- gtsam_develop.libs/{libgtsam_unstable-e22bad36.so.4.3a0.dev202508202018 → libgtsam_unstable-e22bad36.so.4.3a0.dev202508202357} +0 -0
- gtsam_unstable/gtsam_unstable.cpython-310-aarch64-linux-gnu.so +0 -0
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508202357.dist-info}/WHEEL +0 -0
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508202357.dist-info}/top_level.txt +0 -0
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 Point2Pairs
|
|
8
9
|
from builtins import list as Pose2Pairs
|
|
9
|
-
from builtins import list as
|
|
10
|
+
from builtins import list as Pose3Pairs
|
|
11
|
+
from builtins import list as Point3Pairs
|
|
10
12
|
from builtins import list as SfmTrack2dVector
|
|
11
|
-
from builtins import list as
|
|
12
|
-
from builtins import list as Rot3Vector
|
|
13
|
+
from builtins import list as BetweenFactorPose3s
|
|
13
14
|
from builtins import list as BinaryMeasurementsUnit3
|
|
15
|
+
from builtins import list as KeyVector
|
|
16
|
+
from builtins import list as IndexPairVector
|
|
17
|
+
from builtins import list as SfmCameras
|
|
18
|
+
from builtins import list as Point2Vector
|
|
19
|
+
from builtins import list as Rot3Vector
|
|
14
20
|
from builtins import list as Pose3Vector
|
|
15
|
-
from builtins import list as BetweenFactorPose3s
|
|
16
|
-
from builtins import list as Pose3Pairs
|
|
17
|
-
from builtins import list as SfmTracks
|
|
18
21
|
from builtins import list as BetweenFactorPose2s
|
|
22
|
+
from builtins import list as SfmTracks
|
|
23
|
+
from builtins import list as KeypointsVector
|
|
24
|
+
from builtins import list as BinaryMeasurementsRot3
|
|
19
25
|
from builtins import list as SfmMeasurementVector
|
|
20
|
-
from builtins import list as Point2Vector
|
|
21
|
-
from builtins import list as KeyVector
|
|
22
|
-
from builtins import list as SfmCameras
|
|
23
|
-
from builtins import list as Point3Pairs
|
|
24
|
-
from builtins import list as Point2Pairs
|
|
25
26
|
from builtins import list as BinaryMeasurementsPoint3
|
|
26
|
-
from builtins import list as BinaryMeasurementsRot3
|
|
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
|
@@ -16147,6 +16147,8 @@ class Values:
|
|
|
16147
16147
|
...
|
|
16148
16148
|
def atFundamentalMatrix(self, j: int) -> FundamentalMatrix:
|
|
16149
16149
|
...
|
|
16150
|
+
def atGal3(self, j: int) -> Gal3:
|
|
16151
|
+
...
|
|
16150
16152
|
def atMatrix(self, j: int) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
|
|
16151
16153
|
...
|
|
16152
16154
|
def atNavState(self, j: int) -> ...:
|
|
@@ -16253,34 +16255,37 @@ class Values:
|
|
|
16253
16255
|
def insert(self, j: int, point3: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16254
16256
|
...
|
|
16255
16257
|
@typing.overload
|
|
16256
|
-
def insert(self, j: int,
|
|
16258
|
+
def insert(self, j: int, T: Gal3) -> None:
|
|
16257
16259
|
...
|
|
16258
16260
|
@typing.overload
|
|
16259
16261
|
def insert(self, j: int, pose2: Pose2) -> None:
|
|
16260
16262
|
...
|
|
16261
16263
|
@typing.overload
|
|
16262
|
-
def insert(self, j: int,
|
|
16264
|
+
def insert(self, j: int, pose3: Pose3) -> None:
|
|
16263
16265
|
...
|
|
16264
16266
|
@typing.overload
|
|
16265
|
-
def insert(self, j: int,
|
|
16267
|
+
def insert(self, j: int, rot2: Rot2) -> None:
|
|
16266
16268
|
...
|
|
16267
16269
|
@typing.overload
|
|
16268
|
-
def insert(self, j: int,
|
|
16270
|
+
def insert(self, j: int, rot3: Rot3) -> None:
|
|
16269
16271
|
...
|
|
16270
16272
|
@typing.overload
|
|
16271
|
-
def insert(self, j: int,
|
|
16273
|
+
def insert(self, j: int, similarity2: Similarity2) -> None:
|
|
16272
16274
|
...
|
|
16273
16275
|
@typing.overload
|
|
16274
|
-
def insert(self, j: int,
|
|
16276
|
+
def insert(self, j: int, similarity3: Similarity3) -> None:
|
|
16275
16277
|
...
|
|
16276
16278
|
@typing.overload
|
|
16277
|
-
def insert(self, j: int,
|
|
16279
|
+
def insert(self, j: int, H: SL4) -> None:
|
|
16278
16280
|
...
|
|
16279
16281
|
@typing.overload
|
|
16280
|
-
def insert(self, j: int,
|
|
16282
|
+
def insert(self, j: int, R: SO3) -> None:
|
|
16281
16283
|
...
|
|
16282
16284
|
@typing.overload
|
|
16283
|
-
def insert(self, j: int,
|
|
16285
|
+
def insert(self, j: int, Q: SO4) -> None:
|
|
16286
|
+
...
|
|
16287
|
+
@typing.overload
|
|
16288
|
+
def insert(self, j: int, P: SOn) -> None:
|
|
16284
16289
|
...
|
|
16285
16290
|
@typing.overload
|
|
16286
16291
|
def insert(self, j: int, unit3: Unit3) -> None:
|
|
@@ -16360,10 +16365,6 @@ class Values:
|
|
|
16360
16365
|
@typing.overload
|
|
16361
16366
|
def insert(self, j: int, c: float) -> None:
|
|
16362
16367
|
...
|
|
16363
|
-
def insertPoint2(self, j: int, val: numpy.ndarray[tuple[typing.Literal[2], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16364
|
-
...
|
|
16365
|
-
def insertPoint3(self, j: int, val: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16366
|
-
...
|
|
16367
16368
|
@typing.overload
|
|
16368
16369
|
def insert_or_assign(self, values: Values) -> None:
|
|
16369
16370
|
"""
|
|
@@ -16384,34 +16385,37 @@ class Values:
|
|
|
16384
16385
|
def insert_or_assign(self, j: int, point3: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16385
16386
|
...
|
|
16386
16387
|
@typing.overload
|
|
16387
|
-
def insert_or_assign(self, j: int,
|
|
16388
|
+
def insert_or_assign(self, j: int, T: Gal3) -> None:
|
|
16388
16389
|
...
|
|
16389
16390
|
@typing.overload
|
|
16390
16391
|
def insert_or_assign(self, j: int, pose2: Pose2) -> None:
|
|
16391
16392
|
...
|
|
16392
16393
|
@typing.overload
|
|
16393
|
-
def insert_or_assign(self, j: int,
|
|
16394
|
+
def insert_or_assign(self, j: int, pose3: Pose3) -> None:
|
|
16394
16395
|
...
|
|
16395
16396
|
@typing.overload
|
|
16396
|
-
def insert_or_assign(self, j: int,
|
|
16397
|
+
def insert_or_assign(self, j: int, rot2: Rot2) -> None:
|
|
16397
16398
|
...
|
|
16398
16399
|
@typing.overload
|
|
16399
|
-
def insert_or_assign(self, j: int,
|
|
16400
|
+
def insert_or_assign(self, j: int, rot3: Rot3) -> None:
|
|
16400
16401
|
...
|
|
16401
16402
|
@typing.overload
|
|
16402
|
-
def insert_or_assign(self, j: int,
|
|
16403
|
+
def insert_or_assign(self, j: int, similarity2: Similarity2) -> None:
|
|
16403
16404
|
...
|
|
16404
16405
|
@typing.overload
|
|
16405
|
-
def insert_or_assign(self, j: int,
|
|
16406
|
+
def insert_or_assign(self, j: int, similarity3: Similarity3) -> None:
|
|
16406
16407
|
...
|
|
16407
16408
|
@typing.overload
|
|
16408
|
-
def insert_or_assign(self, j: int,
|
|
16409
|
+
def insert_or_assign(self, j: int, H: SL4) -> None:
|
|
16409
16410
|
...
|
|
16410
16411
|
@typing.overload
|
|
16411
|
-
def insert_or_assign(self, j: int,
|
|
16412
|
+
def insert_or_assign(self, j: int, R: SO3) -> None:
|
|
16412
16413
|
...
|
|
16413
16414
|
@typing.overload
|
|
16414
|
-
def insert_or_assign(self, j: int,
|
|
16415
|
+
def insert_or_assign(self, j: int, Q: SO4) -> None:
|
|
16416
|
+
...
|
|
16417
|
+
@typing.overload
|
|
16418
|
+
def insert_or_assign(self, j: int, P: SOn) -> None:
|
|
16415
16419
|
...
|
|
16416
16420
|
@typing.overload
|
|
16417
16421
|
def insert_or_assign(self, j: int, unit3: Unit3) -> None:
|
|
@@ -16535,34 +16539,37 @@ class Values:
|
|
|
16535
16539
|
def update(self, j: int, point3: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16536
16540
|
...
|
|
16537
16541
|
@typing.overload
|
|
16538
|
-
def update(self, j: int,
|
|
16542
|
+
def update(self, j: int, T: Gal3) -> None:
|
|
16539
16543
|
...
|
|
16540
16544
|
@typing.overload
|
|
16541
16545
|
def update(self, j: int, pose2: Pose2) -> None:
|
|
16542
16546
|
...
|
|
16543
16547
|
@typing.overload
|
|
16544
|
-
def update(self, j: int,
|
|
16548
|
+
def update(self, j: int, pose3: Pose3) -> None:
|
|
16545
16549
|
...
|
|
16546
16550
|
@typing.overload
|
|
16547
|
-
def update(self, j: int,
|
|
16551
|
+
def update(self, j: int, rot2: Rot2) -> None:
|
|
16548
16552
|
...
|
|
16549
16553
|
@typing.overload
|
|
16550
|
-
def update(self, j: int,
|
|
16554
|
+
def update(self, j: int, rot3: Rot3) -> None:
|
|
16551
16555
|
...
|
|
16552
16556
|
@typing.overload
|
|
16553
|
-
def update(self, j: int,
|
|
16557
|
+
def update(self, j: int, similarity2: Similarity2) -> None:
|
|
16554
16558
|
...
|
|
16555
16559
|
@typing.overload
|
|
16556
|
-
def update(self, j: int,
|
|
16560
|
+
def update(self, j: int, similarity3: Similarity3) -> None:
|
|
16557
16561
|
...
|
|
16558
16562
|
@typing.overload
|
|
16559
|
-
def update(self, j: int,
|
|
16563
|
+
def update(self, j: int, H: SL4) -> None:
|
|
16560
16564
|
...
|
|
16561
16565
|
@typing.overload
|
|
16562
|
-
def update(self, j: int,
|
|
16566
|
+
def update(self, j: int, R: SO3) -> None:
|
|
16563
16567
|
...
|
|
16564
16568
|
@typing.overload
|
|
16565
|
-
def update(self, j: int,
|
|
16569
|
+
def update(self, j: int, Q: SO4) -> None:
|
|
16570
|
+
...
|
|
16571
|
+
@typing.overload
|
|
16572
|
+
def update(self, j: int, P: SOn) -> None:
|
|
16566
16573
|
...
|
|
16567
16574
|
@typing.overload
|
|
16568
16575
|
def update(self, j: int, unit3: Unit3) -> None:
|
gtsam/gtsam/so3.pyi
CHANGED
|
@@ -4,7 +4,7 @@ so3 submodule
|
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
import numpy
|
|
6
6
|
import typing
|
|
7
|
-
__all__: list[str] = ['DexpFunctor', 'ExpmapFunctor']
|
|
7
|
+
__all__: list[str] = ['DexpFunctor', 'ExpmapFunctor', 'InvJKernel', 'Kernel']
|
|
8
8
|
class DexpFunctor(ExpmapFunctor):
|
|
9
9
|
def C(self) -> float:
|
|
10
10
|
...
|
|
@@ -12,40 +12,24 @@ class DexpFunctor(ExpmapFunctor):
|
|
|
12
12
|
...
|
|
13
13
|
def E(self) -> float:
|
|
14
14
|
...
|
|
15
|
+
def Gamma(self) -> Kernel:
|
|
16
|
+
...
|
|
17
|
+
def InvJacobian(self) -> InvJKernel:
|
|
18
|
+
...
|
|
19
|
+
def Jacobian(self) -> Kernel:
|
|
20
|
+
...
|
|
21
|
+
def Rodrigues(self) -> Kernel:
|
|
22
|
+
...
|
|
15
23
|
@typing.overload
|
|
16
24
|
def __init__(self, omega: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
17
25
|
...
|
|
18
26
|
@typing.overload
|
|
19
27
|
def __init__(self, omega: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], nearZeroThresholdSq: float, nearPiThresholdSq: float) -> None:
|
|
20
28
|
...
|
|
21
|
-
def applyLeftJacobian(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
22
|
-
"""
|
|
23
|
-
Multiplies with leftJacobian(), with optional derivatives.
|
|
24
|
-
"""
|
|
25
|
-
def applyLeftJacobianInverse(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
26
|
-
"""
|
|
27
|
-
Multiplies withleftJacobianInverse(), with optional derivatives.
|
|
28
|
-
"""
|
|
29
|
-
def applyRightJacobian(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
30
|
-
"""
|
|
31
|
-
Multiplies with rightJacobian(), with optional derivatives.
|
|
32
|
-
"""
|
|
33
|
-
def applyRightJacobianInverse(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
34
|
-
"""
|
|
35
|
-
Multiplies with rightJacobian().inverse(), with optional derivatives.
|
|
36
|
-
"""
|
|
37
29
|
def leftJacobian(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
38
30
|
...
|
|
39
|
-
def leftJacobianInverse(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
40
|
-
"""
|
|
41
|
-
For |omega|>pi uses leftJacobian().inverse(), as unstable beyond pi!
|
|
42
|
-
"""
|
|
43
31
|
def rightJacobian(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
44
32
|
...
|
|
45
|
-
def rightJacobianInverse(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
46
|
-
"""
|
|
47
|
-
Inverse of right Jacobian For |omega|>pi uses rightJacobian().inverse(), as unstable beyond pi!
|
|
48
|
-
"""
|
|
49
33
|
@property
|
|
50
34
|
def omega(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
51
35
|
...
|
|
@@ -80,3 +64,30 @@ class ExpmapFunctor:
|
|
|
80
64
|
@property
|
|
81
65
|
def theta2(self) -> float:
|
|
82
66
|
...
|
|
67
|
+
class InvJKernel:
|
|
68
|
+
J: Kernel
|
|
69
|
+
def applyLeft(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
70
|
+
...
|
|
71
|
+
def applyRight(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
72
|
+
...
|
|
73
|
+
def left(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
74
|
+
...
|
|
75
|
+
def right(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
76
|
+
...
|
|
77
|
+
class Kernel:
|
|
78
|
+
def applyFrechet(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
79
|
+
"""
|
|
80
|
+
Apply Fréchet derivative to vector (left specialization)
|
|
81
|
+
"""
|
|
82
|
+
def applyLeft(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
83
|
+
...
|
|
84
|
+
def applyRight(self, v: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
|
|
85
|
+
...
|
|
86
|
+
def frechet(self, X: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
87
|
+
"""
|
|
88
|
+
Fréchet derivative of left-kernel M(ω) in the direction X ∈ so(3) L_M(Ω)[X] = b X + c (Ω X + X Ω) + s (db Ω + dc Ω²), with s = -½ tr(Ω X)
|
|
89
|
+
"""
|
|
90
|
+
def left(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
91
|
+
...
|
|
92
|
+
def right(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
|
|
93
|
+
...
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
gtsam/__init__.py,sha256=6G-WPnb_FMQEJXNDDAmrKrQPau7evtd5svhTmMqhYSI,2011
|
|
2
|
-
gtsam/__init__.pyi,sha256=
|
|
3
|
-
gtsam/gtsam.cpython-310-aarch64-linux-gnu.so,sha256=
|
|
2
|
+
gtsam/__init__.pyi,sha256=tF5Xex_q8PgNEGS3NZXGIeuUHo7JMcxg1ClZuwEifD8,44359
|
|
3
|
+
gtsam/gtsam.cpython-310-aarch64-linux-gnu.so,sha256=w_GdW7tMkv5RvBdaMoAFQ8aNLtFEgr7B5bTND98Fl_8,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
|
|
@@ -114,11 +114,11 @@ 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=
|
|
117
|
+
gtsam/gtsam/__init__.pyi,sha256=RraDO3ADJ3tiorkBz_r0tKcGHwRfcWWmLpB5JY5cC7A,742771
|
|
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
|
|
121
|
-
gtsam/gtsam/so3.pyi,sha256=
|
|
121
|
+
gtsam/gtsam/so3.pyi,sha256=46DCpeWznNY3UMRjbnpSagaPwDer7_ZpUDwDLUS3Ceo,4534
|
|
122
122
|
gtsam/gtsam/symbol_shorthand.pyi,sha256=JMd25P7XvfC6iJJvLos3WmzmzJDgsCKtbzXBwBmvg34,1002
|
|
123
123
|
gtsam/gtsam/utilities.pyi,sha256=i05kEneiWpMgXXo64Q0er5Ra-07ZXtSf4HafAq8bvjM,3395
|
|
124
124
|
gtsam/gtsam/noiseModel/__init__.pyi,sha256=EwAVMBQq5ycATicVY2V-arRnTMGuz5lu-Edt88GSyH8,8792
|
|
@@ -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-
|
|
251
|
-
gtsam_develop.libs/libgtsam_unstable-e22bad36.so.4.3a0.
|
|
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
|
|
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-310-aarch64-linux-gnu.so,sha256=
|
|
254
|
+
gtsam_unstable/gtsam_unstable.cpython-310-aarch64-linux-gnu.so,sha256=lI25got8NkgaCU9qih0Na3LzgpKioHHeVFxEce5myjE,2715801
|
|
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.
|
|
261
|
-
gtsam_develop-4.3a0.
|
|
262
|
-
gtsam_develop-4.3a0.
|
|
263
|
-
gtsam_develop-4.3a0.
|
|
260
|
+
gtsam_develop-4.3a0.dev202508202357.dist-info/METADATA,sha256=4hrwX8Rbiavv3e3R25s7FRlV32_Oi7J2pREjIHbdkSY,7789
|
|
261
|
+
gtsam_develop-4.3a0.dev202508202357.dist-info/WHEEL,sha256=vt10XHyx8XHNEIAFxeE1WFzs0eMXeaXoxjuAPSHPBl8,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,,
|
|
index 24c48f7..380595f 100755
|
|
|
Binary file
|
|
index 1855b78..d306a40 100755
|
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|