gtsam-develop 4.3a0.dev202510101133__cp311-cp311-macosx_11_0_arm64.whl → 4.3a0.dev202510101309__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/gtsam/so3.pyi CHANGED
@@ -3,6 +3,7 @@ so3 submodule
3
3
  """
4
4
  from __future__ import annotations
5
5
  import numpy
6
+ import numpy.typing
6
7
  import typing
7
8
  __all__: list[str] = ['DexpFunctor', 'ExpmapFunctor', 'InvJKernel', 'Kernel']
8
9
  class DexpFunctor(ExpmapFunctor):
@@ -21,39 +22,49 @@ class DexpFunctor(ExpmapFunctor):
21
22
  def Rodrigues(self) -> Kernel:
22
23
  ...
23
24
  @typing.overload
24
- def __init__(self, omega: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
25
+ def __init__(self, omega: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> None:
25
26
  ...
26
27
  @typing.overload
27
- def __init__(self, omega: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], nearZeroThresholdSq: float, nearPiThresholdSq: float) -> None:
28
+ def __init__(self, omega: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"], nearZeroThresholdSq: typing.SupportsFloat, nearPiThresholdSq: typing.SupportsFloat) -> None:
28
29
  ...
29
- def leftJacobian(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
30
+ def leftJacobian(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
30
31
  ...
31
- def rightJacobian(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
32
+ def rightJacobian(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
32
33
  ...
33
34
  @property
34
- def omega(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]:
35
+ def omega(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
35
36
  ...
36
37
  class ExpmapFunctor:
37
- A: float
38
- B: float
39
38
  @typing.overload
40
- def __init__(self, omega: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
39
+ def __init__(self, omega: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> None:
41
40
  ...
42
41
  @typing.overload
43
- def __init__(self, nearZeroThresholdSq: float, axis: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]]) -> None:
42
+ def __init__(self, nearZeroThresholdSq: typing.SupportsFloat, axis: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> None:
44
43
  ...
45
44
  @typing.overload
46
- def __init__(self, axis: numpy.ndarray[tuple[typing.Literal[3], typing.Literal[1]], numpy.dtype[numpy.float64]], angle: float) -> None:
45
+ def __init__(self, axis: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"], angle: typing.SupportsFloat) -> None:
47
46
  ...
48
- def expmap(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
47
+ def expmap(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
49
48
  """
50
49
  Rodrigues formula.
51
50
  """
52
51
  @property
53
- def W(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
52
+ def A(self) -> float:
53
+ ...
54
+ @A.setter
55
+ def A(self, arg0: typing.SupportsFloat) -> None:
56
+ ...
57
+ @property
58
+ def B(self) -> float:
59
+ ...
60
+ @B.setter
61
+ def B(self, arg0: typing.SupportsFloat) -> None:
62
+ ...
63
+ @property
64
+ def W(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
54
65
  ...
55
66
  @property
56
- def WW(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
67
+ def WW(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
57
68
  ...
58
69
  @property
59
70
  def nearZero(self) -> bool:
@@ -66,28 +77,28 @@ class ExpmapFunctor:
66
77
  ...
67
78
  class InvJKernel:
68
79
  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]]:
80
+ def applyLeft(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
70
81
  ...
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]]:
82
+ def applyRight(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
72
83
  ...
73
- def left(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
84
+ def left(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
74
85
  ...
75
- def right(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
86
+ def right(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
76
87
  ...
77
88
  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]]:
89
+ def applyFrechet(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
79
90
  """
80
91
  Apply Fréchet derivative to vector (left specialization)
81
92
  """
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]]:
93
+ def applyLeft(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
83
94
  ...
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]]:
95
+ def applyRight(self, v: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 1]"]:
85
96
  ...
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]]:
97
+ def frechet(self, X: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 3]"]) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
87
98
  """
88
99
  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
100
  """
90
- def left(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
101
+ def left(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
91
102
  ...
92
- def right(self) -> numpy.ndarray[tuple[typing.Literal[3], typing.Literal[3]], numpy.dtype[numpy.float64]]:
103
+ def right(self) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[3, 3]"]:
93
104
  ...
@@ -2,56 +2,57 @@
2
2
  symbol_shorthand submodule
3
3
  """
4
4
  from __future__ import annotations
5
+ import typing
5
6
  __all__: list[str] = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
6
- def A(j: int) -> int:
7
+ def A(j: typing.SupportsInt) -> int:
7
8
  ...
8
- def B(j: int) -> int:
9
+ def B(j: typing.SupportsInt) -> int:
9
10
  ...
10
- def C(j: int) -> int:
11
+ def C(j: typing.SupportsInt) -> int:
11
12
  ...
12
- def D(j: int) -> int:
13
+ def D(j: typing.SupportsInt) -> int:
13
14
  ...
14
- def E(j: int) -> int:
15
+ def E(j: typing.SupportsInt) -> int:
15
16
  ...
16
- def F(j: int) -> int:
17
+ def F(j: typing.SupportsInt) -> int:
17
18
  ...
18
- def G(j: int) -> int:
19
+ def G(j: typing.SupportsInt) -> int:
19
20
  ...
20
- def H(j: int) -> int:
21
+ def H(j: typing.SupportsInt) -> int:
21
22
  ...
22
- def I(j: int) -> int:
23
+ def I(j: typing.SupportsInt) -> int:
23
24
  ...
24
- def J(j: int) -> int:
25
+ def J(j: typing.SupportsInt) -> int:
25
26
  ...
26
- def K(j: int) -> int:
27
+ def K(j: typing.SupportsInt) -> int:
27
28
  ...
28
- def L(j: int) -> int:
29
+ def L(j: typing.SupportsInt) -> int:
29
30
  ...
30
- def M(j: int) -> int:
31
+ def M(j: typing.SupportsInt) -> int:
31
32
  ...
32
- def N(j: int) -> int:
33
+ def N(j: typing.SupportsInt) -> int:
33
34
  ...
34
- def O(j: int) -> int:
35
+ def O(j: typing.SupportsInt) -> int:
35
36
  ...
36
- def P(j: int) -> int:
37
+ def P(j: typing.SupportsInt) -> int:
37
38
  ...
38
- def Q(j: int) -> int:
39
+ def Q(j: typing.SupportsInt) -> int:
39
40
  ...
40
- def R(j: int) -> int:
41
+ def R(j: typing.SupportsInt) -> int:
41
42
  ...
42
- def S(j: int) -> int:
43
+ def S(j: typing.SupportsInt) -> int:
43
44
  ...
44
- def T(j: int) -> int:
45
+ def T(j: typing.SupportsInt) -> int:
45
46
  ...
46
- def U(j: int) -> int:
47
+ def U(j: typing.SupportsInt) -> int:
47
48
  ...
48
- def V(j: int) -> int:
49
+ def V(j: typing.SupportsInt) -> int:
49
50
  ...
50
- def W(j: int) -> int:
51
+ def W(j: typing.SupportsInt) -> int:
51
52
  ...
52
- def X(j: int) -> int:
53
+ def X(j: typing.SupportsInt) -> int:
53
54
  ...
54
- def Y(j: int) -> int:
55
+ def Y(j: typing.SupportsInt) -> int:
55
56
  ...
56
- def Z(j: int) -> int:
57
+ def Z(j: typing.SupportsInt) -> int:
57
58
  ...
gtsam/gtsam/utilities.pyi CHANGED
@@ -2,60 +2,60 @@
2
2
  utilities submodule
3
3
  """
4
4
  from __future__ import annotations
5
+ import collections.abc
5
6
  import gtsam.gtsam
6
7
  import gtsam.gtsam.noiseModel
7
8
  import numpy
9
+ import numpy.typing
8
10
  import typing
9
11
  __all__: list[str] = ['allPose2s', 'allPose3s', 'createKeyList', 'createKeySet', 'createKeyVector', 'extractPoint2', 'extractPoint3', 'extractPose2', 'extractPose3', 'extractVectors', 'insertBackprojections', 'insertProjectionFactors', 'localToWorld', 'perturbPoint2', 'perturbPoint3', 'perturbPose2', 'reprojectionErrors']
10
- M = typing.TypeVar("M", bound=int)
11
- N = typing.TypeVar("N", bound=int)
12
12
  def allPose2s(values: gtsam.gtsam.Values) -> gtsam.gtsam.Values:
13
13
  ...
14
14
  def allPose3s(values: gtsam.gtsam.Values) -> gtsam.gtsam.Values:
15
15
  ...
16
16
  @typing.overload
17
- def createKeyList(I: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]]) -> gtsam.gtsam.KeyList:
17
+ def createKeyList(I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeyList:
18
18
  ...
19
19
  @typing.overload
20
- def createKeyList(s: str, I: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]]) -> gtsam.gtsam.KeyList:
20
+ def createKeyList(s: str, I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeyList:
21
21
  ...
22
22
  @typing.overload
23
- def createKeySet(I: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]]) -> gtsam.gtsam.KeySet:
23
+ def createKeySet(I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeySet:
24
24
  ...
25
25
  @typing.overload
26
- def createKeySet(s: str, I: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]]) -> gtsam.gtsam.KeySet:
26
+ def createKeySet(s: str, I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> gtsam.gtsam.KeySet:
27
27
  ...
28
28
  @typing.overload
29
- def createKeyVector(I: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]]) -> list[int]:
29
+ def createKeyVector(I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> list[int]:
30
30
  ...
31
31
  @typing.overload
32
- def createKeyVector(s: str, I: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]]) -> list[int]:
32
+ def createKeyVector(s: str, I: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"]) -> list[int]:
33
33
  ...
34
- def extractPoint2(values: gtsam.gtsam.Values) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
34
+ def extractPoint2(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
35
35
  ...
36
- def extractPoint3(values: gtsam.gtsam.Values) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
36
+ def extractPoint3(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
37
37
  ...
38
- def extractPose2(values: gtsam.gtsam.Values) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
38
+ def extractPose2(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
39
39
  ...
40
- def extractPose3(values: gtsam.gtsam.Values) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
40
+ def extractPose3(values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
41
41
  ...
42
- def extractVectors(values: gtsam.gtsam.Values, c: str) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
42
+ def extractVectors(values: gtsam.gtsam.Values, c: str) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
43
43
  ...
44
- def insertBackprojections(values: gtsam.gtsam.Values, c: gtsam.gtsam.PinholeCameraCal3_S2, J: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]], Z: numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]], depth: float) -> None:
44
+ def insertBackprojections(values: gtsam.gtsam.Values, c: gtsam.gtsam.PinholeCameraCal3_S2, J: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"], Z: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, n]"], depth: typing.SupportsFloat) -> None:
45
45
  ...
46
- def insertProjectionFactors(graph: gtsam.gtsam.NonlinearFactorGraph, i: int, J: numpy.ndarray[tuple[M, typing.Literal[1]], numpy.dtype[numpy.float64]], Z: numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]], model: gtsam.gtsam.noiseModel.Base, K: gtsam.gtsam.Cal3_S2, body_P_sensor: gtsam.gtsam.Pose3 = ...) -> None:
46
+ def insertProjectionFactors(graph: gtsam.gtsam.NonlinearFactorGraph, i: typing.SupportsInt, J: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, 1]"], Z: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[m, n]"], model: gtsam.gtsam.noiseModel.Base, K: gtsam.gtsam.Cal3_S2, body_P_sensor: gtsam.gtsam.Pose3 = ...) -> None:
47
47
  ...
48
48
  @typing.overload
49
49
  def localToWorld(local: gtsam.gtsam.Values, base: gtsam.gtsam.Pose2) -> gtsam.gtsam.Values:
50
50
  ...
51
51
  @typing.overload
52
- def localToWorld(local: gtsam.gtsam.Values, base: gtsam.gtsam.Pose2, keys: list[int]) -> gtsam.gtsam.Values:
52
+ def localToWorld(local: gtsam.gtsam.Values, base: gtsam.gtsam.Pose2, keys: collections.abc.Sequence[typing.SupportsInt]) -> gtsam.gtsam.Values:
53
53
  ...
54
- def perturbPoint2(values: gtsam.gtsam.Values, sigma: float, seed: int = 42) -> None:
54
+ def perturbPoint2(values: gtsam.gtsam.Values, sigma: typing.SupportsFloat, seed: typing.SupportsInt = 42) -> None:
55
55
  ...
56
- def perturbPoint3(values: gtsam.gtsam.Values, sigma: float, seed: int = 42) -> None:
56
+ def perturbPoint3(values: gtsam.gtsam.Values, sigma: typing.SupportsFloat, seed: typing.SupportsInt = 42) -> None:
57
57
  ...
58
- def perturbPose2(values: gtsam.gtsam.Values, sigmaT: float, sigmaR: float, seed: int = 42) -> None:
58
+ def perturbPose2(values: gtsam.gtsam.Values, sigmaT: typing.SupportsFloat, sigmaR: typing.SupportsFloat, seed: typing.SupportsInt = 42) -> None:
59
59
  ...
60
- def reprojectionErrors(graph: gtsam.gtsam.NonlinearFactorGraph, values: gtsam.gtsam.Values) -> numpy.ndarray[tuple[M, N], numpy.dtype[numpy.float64]]:
60
+ def reprojectionErrors(graph: gtsam.gtsam.NonlinearFactorGraph, values: gtsam.gtsam.Values) -> typing.Annotated[numpy.typing.NDArray[numpy.float64], "[m, n]"]:
61
61
  ...
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gtsam-develop
3
- Version: 4.3a0.dev202510101133
3
+ Version: 4.3a0.dev202510101309
4
4
  Summary: Georgia Tech Smoothing And Mapping library
5
5
  Home-page: https://gtsam.org/
6
6
  Author: Frank Dellaert et. al.
@@ -1,19 +1,19 @@
1
1
  gtsam/symbol_shorthand.py,sha256=HlTV-Z5aB5cXWT5AsbKOeWZIHoXQsH2W1S90ET-tidA,236
2
- gtsam/__init__.pyi,sha256=jar02HWtHaVg9siGdQJkOy3mkHl2694WKIc0tluw47Y,50963
2
+ gtsam/__init__.pyi,sha256=8YUaWWkameMzv-uM_WupYWxUpUHEdkbACCRCwvba7Zc,50963
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=JEa46jnc3Rw2nhrsYYunvdSHugei_IC4SMs1xP4fGEs,20511504
5
+ gtsam/gtsam.cpython-311-darwin.so,sha256=h0549VNJ_f3Up1rrPwE6rRtbWnE0o688POOHnLlb1x0,21192384
6
6
  gtsam/noiseModel.py,sha256=ybfIHa4sLXe78_k-Dib8nTaw34BRXqEDVtS2B9dzSO0,217
7
7
  gtsam/imuBias.py,sha256=tz3bOCFl29iMycbGFoF-ud6kRsJYjA7DJ2RJoKPFRU8,209
8
- gtsam/gtsam/utilities.pyi,sha256=i05kEneiWpMgXXo64Q0er5Ra-07ZXtSf4HafAq8bvjM,3395
9
- gtsam/gtsam/gtsfm.pyi,sha256=YqHbjQW2aHsecKdORMcoGqJscEVvor4GH3Ve8ze9e6A,713
10
- gtsam/gtsam/__init__.pyi,sha256=VzWauCgZTEsB_6Zbg1YBHSwBJqy4T_EdtbAOATaiEsY,846510
11
- gtsam/gtsam/so3.pyi,sha256=46DCpeWznNY3UMRjbnpSagaPwDer7_ZpUDwDLUS3Ceo,4534
12
- gtsam/gtsam/imuBias.pyi,sha256=zXpyT6XAIoA6eOMRom7bzPc86BS_3VoO_oujcpsHct4,2808
13
- gtsam/gtsam/symbol_shorthand.pyi,sha256=JMd25P7XvfC6iJJvLos3WmzmzJDgsCKtbzXBwBmvg34,1002
8
+ gtsam/gtsam/utilities.pyi,sha256=9OF-8-sL2-z6nVVzQLXAsxUdqbOLxDd-RPJJxO3BZlU,3574
9
+ gtsam/gtsam/gtsfm.pyi,sha256=Z4CSUwKQGQkol6CZMXGm1lh-aH04MDOV2dJ2Lkt8FFg,891
10
+ gtsam/gtsam/__init__.pyi,sha256=graUFQb37LwtYfzXMIBHQPaaeIWtIid_hDRzHrJ6ayI,896290
11
+ gtsam/gtsam/so3.pyi,sha256=cjaU3Bdz7YjjjxhQtdbKSyYB5nX3tHpJ7S6drk5Vv7Q,4251
12
+ gtsam/gtsam/imuBias.pyi,sha256=En94zgZPWbd1rqttvlllGkYvGaTaU8KARHrTO9FY1q8,2645
13
+ gtsam/gtsam/symbol_shorthand.pyi,sha256=japcYwLeIDWrTCi3Y6MLhcf_Xpdv1E4T5G-WBQYe4VI,1406
14
14
  gtsam/gtsam/lago.pyi,sha256=XP_iLWJJ8c8jnYidbxmh8iRzo9FiZcEM5TR73JM_bkE,562
15
- gtsam/gtsam/noiseModel/__init__.pyi,sha256=7kMpVm0mfOGiRI1wbOqJHxDFKxw-Y3pVsdY3vlUtfc0,8798
16
- gtsam/gtsam/noiseModel/mEstimator.pyi,sha256=WpoQSQf_N20WE_nFTSL7_xoPQN-avW31JK4UFW7ZeBM,10618
15
+ gtsam/gtsam/noiseModel/__init__.pyi,sha256=9Fv4vSpTPySSrY2V_oqL5wlvPlrgSQP1kI0_LGkIDdY,8982
16
+ gtsam/gtsam/noiseModel/mEstimator.pyi,sha256=XnI9oX-347qaSEQDxJ3p146GGZpT_nIlEqTODRx9z30,11477
17
17
  gtsam/tests/simulation.py,sha256=VAopcCosvdtXRy6xe547EDz73lXhLiYbPnFQZWjo2wU,5405
18
18
  gtsam/tests/test_OdometryExample.py,sha256=aO-ciYNbKo8ru0bxexEtlj4xN9WGiSBlLOQnRkCCAx0,2094
19
19
  gtsam/tests/test_KarcherMeanFactor.py,sha256=L3_VAOljyRDmyOjOlZqnW-5apqufsDd8UnLIZ-d-_VE,2369
@@ -128,8 +128,8 @@ gtsam/utils/__init__.py,sha256=_ID7pb13SDZedga5KdBqpPug4PW3eU3THdVF_3jrakQ,678
128
128
  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
+ gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202510101309.dylib,sha256=6e47MS8o_ogwr1rv1ekQu_oyFEshtWRYWWzjSFLA3Lo,1623248
131
132
  gtsam/.dylibs/libboost_thread.dylib,sha256=aT1DCt1Kvw1A2w2mRHIJhZRFrYmoDaI5xYM6wEt86L8,137200
132
- gtsam/.dylibs/libgtsam_unstable.4.3a0.dev202510101133.dylib,sha256=qEl-fAkNtm35O5jJz5SMZPGs79DyG3AYRetnS1dxudQ,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
@@ -138,8 +138,8 @@ gtsam/.dylibs/libcephes-gtsam.1.0.0.dylib,sha256=pNZtgCIaV7_dC0WPXobOc8sNvd_0WQo
138
138
  gtsam/.dylibs/libmetis-gtsam.dylib,sha256=Od5V_NOZKhxu5cEw1wMfGxk3l0_2LEhV-GkEwnqyx4Q,449504
139
139
  gtsam/.dylibs/libboost_atomic.dylib,sha256=AbG9FmLd7biQVvDL9F7_sLOEgmhgj5bwxX98c5jnVVc,104160
140
140
  gtsam/.dylibs/libboost_date_time.dylib,sha256=zkeDyIl7aGu1K5avCbDjtJURdIPT8llHnNZ-G7N-_Cc,35008
141
- gtsam/.dylibs/libgtsam.4.3a0.dev202510101133.dylib,sha256=-pYIx07dntseDtIYebjMTrB3rjcwVS_3Xk2fyhhUgtU,6016960
142
141
  gtsam/.dylibs/libboost_system.dylib,sha256=W2i7A0l2E-Kkxdzs6E4Fr0S3hXTfBJOJ0WW32M3Fqh8,34992
142
+ gtsam/.dylibs/libgtsam.4.3a0.dev202510101309.dylib,sha256=Wm-HL0QjAOEM5piTRRJ5TG8WO1uodDySkvjB3Bao-sU,6016960
143
143
  gtsam/.dylibs/libboost_chrono.dylib,sha256=WTFx4Mqt77f3jd9cE11WxBAABvcmj23DbMxXwXkTz2o,79824
144
144
  gtsam/examples/simulation.py,sha256=VAopcCosvdtXRy6xe547EDz73lXhLiYbPnFQZWjo2wU,5405
145
145
  gtsam/examples/ImuFactorISAM2Example.py,sha256=G9HS3tHAp3plMfulFtsxE1mR467wSXlpoND8GjbqbyM,5724
@@ -251,14 +251,14 @@ gtsam/Data/Balbianello/BalbianelloMedium-4.key.gz,sha256=P6tu3JmA0NKlcFYdgYczTOH
251
251
  gtsam/Data/Balbianello/BalbianelloMedium-1.key.gz,sha256=RgT7tVXXOwvDug20TW-9xtoeO3dSSPMF1n9DaKxdrIw,332878
252
252
  gtsam/Data/Balbianello/BalbianelloMedium-3.key.gz,sha256=yNMcyqwZCOj9FG-6qXQ9xhJjpM135cTBJYlOUBG0rnQ,296236
253
253
  gtsam/Data/Balbianello/BalbianelloMedium-5.key.gz,sha256=4veDrxRdLH8k1DIhgj1984MitZ7nAWoXDWTWyXuu7Lg,241361
254
- gtsam_unstable/gtsam_unstable.cpython-311-darwin.so,sha256=UuwM5cZb3ajMHPGAwbuKH-s5rdDDxJnrlUBh1wCvHIg,2033488
254
+ gtsam_unstable/gtsam_unstable.cpython-311-darwin.so,sha256=ot-1oV5xd96py30vq-w87-U5mKcksiqavV5yZh86UAE,2101152
255
255
  gtsam_unstable/__init__.py,sha256=FPc_oO5PFQZbrfpgugzQuI6LJfP1fzq82UQf_nuyGtk,30
256
256
  gtsam_unstable/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
257
  gtsam_unstable/tests/test_ProjectionFactorRollingShutter.py,sha256=t2l62uWoXfjrM8oH6ogV7M20WjTYKZ4CSferdurMIY0,2156
258
258
  gtsam_unstable/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
259
  gtsam_unstable/examples/LocalizationExample.py,sha256=na47I1PQ_5Tenj8Wg2LBg3GaqP32O4yEb8jtRWKu0P8,2882
260
260
  gtsam_unstable/examples/TimeOfArrivalExample.py,sha256=uky5ps4Ng83C0Q_s2EAc64Af6iztQjXXdj3ahifRXoI,3737
261
- gtsam_develop-4.3a0.dev202510101133.dist-info/RECORD,,
262
- gtsam_develop-4.3a0.dev202510101133.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
263
- gtsam_develop-4.3a0.dev202510101133.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
264
- gtsam_develop-4.3a0.dev202510101133.dist-info/METADATA,sha256=T3XGernmVl280hn2qvgh7P348YAovKBZFlk5Vi3ffQ8,8808
261
+ gtsam_develop-4.3a0.dev202510101309.dist-info/RECORD,,
262
+ gtsam_develop-4.3a0.dev202510101309.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
263
+ gtsam_develop-4.3a0.dev202510101309.dist-info/top_level.txt,sha256=DOnqfd8DN2HpG5-V5t32TjFOB_vcYuyOWyRsgeoANEo,30
264
+ gtsam_develop-4.3a0.dev202510101309.dist-info/METADATA,sha256=wbXQ8qYCyD7Q9lUz-IEqMYp2fWaIBdALnsfg8XzNP_Q,8808