gtsam-develop 4.3a0.dev202508202018__cp311-cp311-macosx_11_0_arm64.whl → 4.3a0.dev202508212343__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/.dylibs/{libgtsam.4.3a0.dev202508202018.dylib → libgtsam.4.3a0.dev202508212343.dylib} +0 -0
- gtsam/.dylibs/{libgtsam_unstable.4.3a0.dev202508202018.dylib → libgtsam_unstable.4.3a0.dev202508212343.dylib} +0 -0
- gtsam/__init__.pyi +14 -14
- gtsam/gtsam/__init__.pyi +38 -31
- gtsam/gtsam/so3.pyi +36 -25
- gtsam/gtsam.cpython-311-darwin.so +0 -0
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508212343.dist-info}/METADATA +1 -1
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508212343.dist-info}/RECORD +11 -11
- gtsam_unstable/gtsam_unstable.cpython-311-darwin.so +0 -0
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508212343.dist-info}/WHEEL +0 -0
- {gtsam_develop-4.3a0.dev202508202018.dist-info → gtsam_develop-4.3a0.dev202508212343.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
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
|
-
from builtins import dict as IndexPairSetMap
|
|
7
5
|
from builtins import dict as KeyPairDoubleMap
|
|
8
|
-
from builtins import
|
|
9
|
-
from builtins import
|
|
10
|
-
from builtins import list as Pose2Pairs
|
|
6
|
+
from builtins import dict as IndexPairSetMap
|
|
7
|
+
from builtins import dict as MatchIndicesMap
|
|
11
8
|
from builtins import list as Point2Pairs
|
|
12
9
|
from builtins import list as BetweenFactorPose2s
|
|
13
|
-
from builtins import list as BetweenFactorPose3s
|
|
14
|
-
from builtins import list as SfmMeasurementVector
|
|
15
|
-
from builtins import list as SfmCameras
|
|
16
|
-
from builtins import list as BinaryMeasurementsRot3
|
|
17
|
-
from builtins import list as SfmTracks
|
|
18
|
-
from builtins import list as SfmTrack2dVector
|
|
19
10
|
from builtins import list as BinaryMeasurementsUnit3
|
|
20
|
-
from builtins import list as
|
|
11
|
+
from builtins import list as KeypointsVector
|
|
12
|
+
from builtins import list as BinaryMeasurementsRot3
|
|
21
13
|
from builtins import list as IndexPairVector
|
|
22
|
-
from builtins import list as
|
|
14
|
+
from builtins import list as Pose3Pairs
|
|
23
15
|
from builtins import list as KeyVector
|
|
24
|
-
from builtins import list as
|
|
16
|
+
from builtins import list as BinaryMeasurementsPoint3
|
|
25
17
|
from builtins import list as Point2Vector
|
|
18
|
+
from builtins import list as Pose2Pairs
|
|
19
|
+
from builtins import list as SfmTracks
|
|
20
|
+
from builtins import list as SfmMeasurementVector
|
|
21
|
+
from builtins import list as BetweenFactorPose3s
|
|
22
|
+
from builtins import list as Pose3Vector
|
|
26
23
|
from builtins import list as Rot3Vector
|
|
24
|
+
from builtins import list as Point3Pairs
|
|
25
|
+
from builtins import list as SfmTrack2dVector
|
|
26
|
+
from builtins import list as SfmCameras
|
|
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
|
@@ -16178,6 +16178,8 @@ class Values:
|
|
|
16178
16178
|
...
|
|
16179
16179
|
def atFundamentalMatrix(self, j: int) -> FundamentalMatrix:
|
|
16180
16180
|
...
|
|
16181
|
+
def atGal3(self, j: int) -> Gal3:
|
|
16182
|
+
...
|
|
16181
16183
|
def atMatrix(self, j: int) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
|
|
16182
16184
|
...
|
|
16183
16185
|
def atNavState(self, j: int) -> ...:
|
|
@@ -16284,34 +16286,37 @@ class Values:
|
|
|
16284
16286
|
def insert(self, j: int, point3: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16285
16287
|
...
|
|
16286
16288
|
@typing.overload
|
|
16287
|
-
def insert(self, j: int,
|
|
16289
|
+
def insert(self, j: int, T: Gal3) -> None:
|
|
16288
16290
|
...
|
|
16289
16291
|
@typing.overload
|
|
16290
16292
|
def insert(self, j: int, pose2: Pose2) -> None:
|
|
16291
16293
|
...
|
|
16292
16294
|
@typing.overload
|
|
16293
|
-
def insert(self, j: int,
|
|
16295
|
+
def insert(self, j: int, pose3: Pose3) -> None:
|
|
16294
16296
|
...
|
|
16295
16297
|
@typing.overload
|
|
16296
|
-
def insert(self, j: int,
|
|
16298
|
+
def insert(self, j: int, rot2: Rot2) -> None:
|
|
16297
16299
|
...
|
|
16298
16300
|
@typing.overload
|
|
16299
|
-
def insert(self, j: int,
|
|
16301
|
+
def insert(self, j: int, rot3: Rot3) -> None:
|
|
16300
16302
|
...
|
|
16301
16303
|
@typing.overload
|
|
16302
|
-
def insert(self, j: int,
|
|
16304
|
+
def insert(self, j: int, similarity2: Similarity2) -> None:
|
|
16303
16305
|
...
|
|
16304
16306
|
@typing.overload
|
|
16305
|
-
def insert(self, j: int,
|
|
16307
|
+
def insert(self, j: int, similarity3: Similarity3) -> None:
|
|
16306
16308
|
...
|
|
16307
16309
|
@typing.overload
|
|
16308
|
-
def insert(self, j: int,
|
|
16310
|
+
def insert(self, j: int, H: SL4) -> None:
|
|
16309
16311
|
...
|
|
16310
16312
|
@typing.overload
|
|
16311
|
-
def insert(self, j: int,
|
|
16313
|
+
def insert(self, j: int, R: SO3) -> None:
|
|
16312
16314
|
...
|
|
16313
16315
|
@typing.overload
|
|
16314
|
-
def insert(self, j: int,
|
|
16316
|
+
def insert(self, j: int, Q: SO4) -> None:
|
|
16317
|
+
...
|
|
16318
|
+
@typing.overload
|
|
16319
|
+
def insert(self, j: int, P: SOn) -> None:
|
|
16315
16320
|
...
|
|
16316
16321
|
@typing.overload
|
|
16317
16322
|
def insert(self, j: int, unit3: Unit3) -> None:
|
|
@@ -16391,10 +16396,6 @@ class Values:
|
|
|
16391
16396
|
@typing.overload
|
|
16392
16397
|
def insert(self, j: int, c: float) -> None:
|
|
16393
16398
|
...
|
|
16394
|
-
def insertPoint2(self, j: int, val: numpy.ndarray[tuple[typing.Literal[2], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16395
|
-
...
|
|
16396
|
-
def insertPoint3(self, j: int, val: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16397
|
-
...
|
|
16398
16399
|
@typing.overload
|
|
16399
16400
|
def insert_or_assign(self, values: Values) -> None:
|
|
16400
16401
|
"""
|
|
@@ -16415,34 +16416,37 @@ class Values:
|
|
|
16415
16416
|
def insert_or_assign(self, j: int, point3: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16416
16417
|
...
|
|
16417
16418
|
@typing.overload
|
|
16418
|
-
def insert_or_assign(self, j: int,
|
|
16419
|
+
def insert_or_assign(self, j: int, T: Gal3) -> None:
|
|
16419
16420
|
...
|
|
16420
16421
|
@typing.overload
|
|
16421
16422
|
def insert_or_assign(self, j: int, pose2: Pose2) -> None:
|
|
16422
16423
|
...
|
|
16423
16424
|
@typing.overload
|
|
16424
|
-
def insert_or_assign(self, j: int,
|
|
16425
|
+
def insert_or_assign(self, j: int, pose3: Pose3) -> None:
|
|
16425
16426
|
...
|
|
16426
16427
|
@typing.overload
|
|
16427
|
-
def insert_or_assign(self, j: int,
|
|
16428
|
+
def insert_or_assign(self, j: int, rot2: Rot2) -> None:
|
|
16428
16429
|
...
|
|
16429
16430
|
@typing.overload
|
|
16430
|
-
def insert_or_assign(self, j: int,
|
|
16431
|
+
def insert_or_assign(self, j: int, rot3: Rot3) -> None:
|
|
16431
16432
|
...
|
|
16432
16433
|
@typing.overload
|
|
16433
|
-
def insert_or_assign(self, j: int,
|
|
16434
|
+
def insert_or_assign(self, j: int, similarity2: Similarity2) -> None:
|
|
16434
16435
|
...
|
|
16435
16436
|
@typing.overload
|
|
16436
|
-
def insert_or_assign(self, j: int,
|
|
16437
|
+
def insert_or_assign(self, j: int, similarity3: Similarity3) -> None:
|
|
16437
16438
|
...
|
|
16438
16439
|
@typing.overload
|
|
16439
|
-
def insert_or_assign(self, j: int,
|
|
16440
|
+
def insert_or_assign(self, j: int, H: SL4) -> None:
|
|
16440
16441
|
...
|
|
16441
16442
|
@typing.overload
|
|
16442
|
-
def insert_or_assign(self, j: int,
|
|
16443
|
+
def insert_or_assign(self, j: int, R: SO3) -> None:
|
|
16443
16444
|
...
|
|
16444
16445
|
@typing.overload
|
|
16445
|
-
def insert_or_assign(self, j: int,
|
|
16446
|
+
def insert_or_assign(self, j: int, Q: SO4) -> None:
|
|
16447
|
+
...
|
|
16448
|
+
@typing.overload
|
|
16449
|
+
def insert_or_assign(self, j: int, P: SOn) -> None:
|
|
16446
16450
|
...
|
|
16447
16451
|
@typing.overload
|
|
16448
16452
|
def insert_or_assign(self, j: int, unit3: Unit3) -> None:
|
|
@@ -16566,34 +16570,37 @@ class Values:
|
|
|
16566
16570
|
def update(self, j: int, point3: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
|
|
16567
16571
|
...
|
|
16568
16572
|
@typing.overload
|
|
16569
|
-
def update(self, j: int,
|
|
16573
|
+
def update(self, j: int, T: Gal3) -> None:
|
|
16570
16574
|
...
|
|
16571
16575
|
@typing.overload
|
|
16572
16576
|
def update(self, j: int, pose2: Pose2) -> None:
|
|
16573
16577
|
...
|
|
16574
16578
|
@typing.overload
|
|
16575
|
-
def update(self, j: int,
|
|
16579
|
+
def update(self, j: int, pose3: Pose3) -> None:
|
|
16576
16580
|
...
|
|
16577
16581
|
@typing.overload
|
|
16578
|
-
def update(self, j: int,
|
|
16582
|
+
def update(self, j: int, rot2: Rot2) -> None:
|
|
16579
16583
|
...
|
|
16580
16584
|
@typing.overload
|
|
16581
|
-
def update(self, j: int,
|
|
16585
|
+
def update(self, j: int, rot3: Rot3) -> None:
|
|
16582
16586
|
...
|
|
16583
16587
|
@typing.overload
|
|
16584
|
-
def update(self, j: int,
|
|
16588
|
+
def update(self, j: int, similarity2: Similarity2) -> None:
|
|
16585
16589
|
...
|
|
16586
16590
|
@typing.overload
|
|
16587
|
-
def update(self, j: int,
|
|
16591
|
+
def update(self, j: int, similarity3: Similarity3) -> None:
|
|
16588
16592
|
...
|
|
16589
16593
|
@typing.overload
|
|
16590
|
-
def update(self, j: int,
|
|
16594
|
+
def update(self, j: int, H: SL4) -> None:
|
|
16591
16595
|
...
|
|
16592
16596
|
@typing.overload
|
|
16593
|
-
def update(self, j: int,
|
|
16597
|
+
def update(self, j: int, R: SO3) -> None:
|
|
16594
16598
|
...
|
|
16595
16599
|
@typing.overload
|
|
16596
|
-
def update(self, j: int,
|
|
16600
|
+
def update(self, j: int, Q: SO4) -> None:
|
|
16601
|
+
...
|
|
16602
|
+
@typing.overload
|
|
16603
|
+
def update(self, j: int, P: SOn) -> None:
|
|
16597
16604
|
...
|
|
16598
16605
|
@typing.overload
|
|
16599
16606
|
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,14 +1,14 @@
|
|
|
1
1
|
gtsam/symbol_shorthand.py,sha256=HlTV-Z5aB5cXWT5AsbKOeWZIHoXQsH2W1S90ET-tidA,236
|
|
2
|
-
gtsam/__init__.pyi,sha256=
|
|
2
|
+
gtsam/__init__.pyi,sha256=bLZG7am5XNwRYkyTYAQZNys2tJHBJi2uuMWKNi-lD-4,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=
|
|
5
|
+
gtsam/gtsam.cpython-311-darwin.so,sha256=4XHn7LZknLAigFfmGLfKQbMCCl4Ew5usnxVaWHZEzmc,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
|
|
9
9
|
gtsam/gtsam/gtsfm.pyi,sha256=YqHbjQW2aHsecKdORMcoGqJscEVvor4GH3Ve8ze9e6A,713
|
|
10
|
-
gtsam/gtsam/__init__.pyi,sha256=
|
|
11
|
-
gtsam/gtsam/so3.pyi,sha256=
|
|
10
|
+
gtsam/gtsam/__init__.pyi,sha256=ecfT0g98yfhhnlwz1m-Ja42nWLNohOmMzBNO15re61w,743001
|
|
11
|
+
gtsam/gtsam/so3.pyi,sha256=46DCpeWznNY3UMRjbnpSagaPwDer7_ZpUDwDLUS3Ceo,4534
|
|
12
12
|
gtsam/gtsam/imuBias.pyi,sha256=zXpyT6XAIoA6eOMRom7bzPc86BS_3VoO_oujcpsHct4,2808
|
|
13
13
|
gtsam/gtsam/symbol_shorthand.pyi,sha256=JMd25P7XvfC6iJJvLos3WmzmzJDgsCKtbzXBwBmvg34,1002
|
|
14
14
|
gtsam/gtsam/lago.pyi,sha256=XP_iLWJJ8c8jnYidbxmh8iRzo9FiZcEM5TR73JM_bkE,562
|
|
@@ -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_unstable.4.3a0.
|
|
132
|
+
gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202508212343.dylib,sha256=Ko8EUybhzVZrtttGTRFB7KwzF3_fSLuAnnpRlhXQOjU,1623248
|
|
133
133
|
gtsam/.dylibs/libboost_regex.dylib,sha256=XWw3H3ehJjFuFVSSDGo2lyKOIsoTQ-0Aaf1ekhsQJfY,356464
|
|
134
134
|
gtsam/.dylibs/libboost_serialization.dylib,sha256=7OW78djID14u2YB_F_TuXomOIsEpt8I7RnCAGuGmwCc,418288
|
|
135
135
|
gtsam/.dylibs/libboost_timer.dylib,sha256=leVXIyCdydip4vwIm-Ghrt6UGy_Q-yhL2f8ITyfRku0,81520
|
|
136
136
|
gtsam/.dylibs/libboost_filesystem.dylib,sha256=WUuuO1JZADriLciFi63Ky4dmqt1KA7_V6DcNdzCANSo,197328
|
|
137
|
-
gtsam/.dylibs/libgtsam.4.3a0.dev202508202018.dylib,sha256=_-sNreoqbEDi0oRuMQ7lpNP6LZ-ohvvvjdZNxvWY-84,5962080
|
|
138
137
|
gtsam/.dylibs/libcephes-gtsam.1.0.0.dylib,sha256=pNZtgCIaV7_dC0WPXobOc8sNvd_0WQo1AdYxUsqZ1D0,176352
|
|
138
|
+
gtsam/.dylibs/libgtsam.4.3a0.dev202508212343.dylib,sha256=K2qnFvhvTsZuMOYQFuiXR-H80cEPgqF2-ky8EzLkjZ4,5958176
|
|
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
|
-
|
|
253
|
+
gtsam_develop-4.3a0.dev202508212343.dist-info/RECORD,,
|
|
254
|
+
gtsam_develop-4.3a0.dev202508212343.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
|
|
255
|
+
gtsam_develop-4.3a0.dev202508212343.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
|
|
256
|
+
gtsam_develop-4.3a0.dev202508212343.dist-info/METADATA,sha256=huLNCJ3scOIs_cnqXyM8qYjOO2sIWw_rR-2OJ1POJpw,7789
|
|
257
|
+
gtsam_unstable/gtsam_unstable.cpython-311-darwin.so,sha256=TQ_oRyEeKuyyPv_2VPiZqLnHOPq40SqpJY30M58wgg8,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.dev202508202018.dist-info/RECORD,,
|
|
261
|
-
gtsam_develop-4.3a0.dev202508202018.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
|
|
262
|
-
gtsam_develop-4.3a0.dev202508202018.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
|
|
263
|
-
gtsam_develop-4.3a0.dev202508202018.dist-info/METADATA,sha256=D_1MC8d2W_sqNHMHsImX5x4YFWqn8eqCTX6AbllmNRM,7789
|
|
Binary file
|
|
File without changes
|
|
File without changes
|