codac4matlab 2.0.0.dev25__cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_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.
- codac4matlab/__init__.py +4 -0
- codac4matlab/_core.cpython-314-aarch64-linux-gnu.so +0 -0
- codac4matlab/_graphics.cpython-314-aarch64-linux-gnu.so +0 -0
- codac4matlab/_unsupported.cpython-314-aarch64-linux-gnu.so +0 -0
- codac4matlab/core/__init__.py +588 -0
- codac4matlab/empty.cpython-314-aarch64-linux-gnu.so +0 -0
- codac4matlab/graphics/__init__.py +1 -0
- codac4matlab/tests/__init__.py +1 -0
- codac4matlab/tests/test_AnalyticFunction.py +442 -0
- codac4matlab/tests/test_AnalyticTraj.py +62 -0
- codac4matlab/tests/test_Approx.py +27 -0
- codac4matlab/tests/test_BoolInterval.py +96 -0
- codac4matlab/tests/test_Color.py +77 -0
- codac4matlab/tests/test_ConvexPolygon.py +300 -0
- codac4matlab/tests/test_CtcAction.py +30 -0
- codac4matlab/tests/test_CtcCartProd.py +39 -0
- codac4matlab/tests/test_CtcCtcBoundary.py +48 -0
- codac4matlab/tests/test_CtcDeriv.py +434 -0
- codac4matlab/tests/test_CtcEval.py +214 -0
- codac4matlab/tests/test_CtcFixpoint.py +65 -0
- codac4matlab/tests/test_CtcInter.py +39 -0
- codac4matlab/tests/test_CtcInverse.py +213 -0
- codac4matlab/tests/test_CtcInverseNotIn.py +129 -0
- codac4matlab/tests/test_CtcLazy.py +50 -0
- codac4matlab/tests/test_CtcPolygon.py +91 -0
- codac4matlab/tests/test_CtcSegment.py +104 -0
- codac4matlab/tests/test_Ellipsoid.py +20 -0
- codac4matlab/tests/test_GaussJordan.py +34 -0
- codac4matlab/tests/test_IntFullPivLU.py +84 -0
- codac4matlab/tests/test_Interval.py +254 -0
- codac4matlab/tests/test_IntervalMatrix.py +664 -0
- codac4matlab/tests/test_IntervalVector.py +657 -0
- codac4matlab/tests/test_Interval_operations.py +293 -0
- codac4matlab/tests/test_Matrix.py +81 -0
- codac4matlab/tests/test_OctaSym.py +41 -0
- codac4matlab/tests/test_Parallelepiped.py +35 -0
- codac4matlab/tests/test_Parallelepiped_eval.py +62 -0
- codac4matlab/tests/test_Polygon.py +120 -0
- codac4matlab/tests/test_SampledTraj.py +135 -0
- codac4matlab/tests/test_Segment.py +138 -0
- codac4matlab/tests/test_SepCartProd.py +34 -0
- codac4matlab/tests/test_SepCtcBoundary.py +52 -0
- codac4matlab/tests/test_SepInverse.py +104 -0
- codac4matlab/tests/test_SepPolygon.py +102 -0
- codac4matlab/tests/test_SepProj.py +39 -0
- codac4matlab/tests/test_SepTransform.py +41 -0
- codac4matlab/tests/test_Slice.py +78 -0
- codac4matlab/tests/test_Slice_polygon.py +208 -0
- codac4matlab/tests/test_SlicedTube.py +562 -0
- codac4matlab/tests/test_SlicedTube_integral.py +380 -0
- codac4matlab/tests/test_TDomain.py +115 -0
- codac4matlab/tests/test_Vector.py +41 -0
- codac4matlab/tests/test_arithmetic_add.py +54 -0
- codac4matlab/tests/test_arithmetic_div.py +46 -0
- codac4matlab/tests/test_arithmetic_mul.py +114 -0
- codac4matlab/tests/test_arithmetic_sub.py +54 -0
- codac4matlab/tests/test_capd.py +19 -0
- codac4matlab/tests/test_cart_prod.py +38 -0
- codac4matlab/tests/test_eigen.py +19 -0
- codac4matlab/tests/test_geometry.py +136 -0
- codac4matlab/tests/test_hull.py +35 -0
- codac4matlab/tests/test_ibex.py +19 -0
- codac4matlab/tests/test_inversion.py +57 -0
- codac4matlab/tests/test_linear_ctc.py +77 -0
- codac4matlab/tests/test_operators.py +377 -0
- codac4matlab/tests/test_peibos.py +83 -0
- codac4matlab/tests/test_predefined_tubes.py +193 -0
- codac4matlab/tests/test_serialization.py +30 -0
- codac4matlab/tests/test_transformations.py +61 -0
- codac4matlab/tests/test_trunc.py +95 -0
- codac4matlab/unsupported/__init__.py +1 -0
- codac4matlab/version.py +1 -0
- codac4matlab-2.0.0.dev25.dist-info/METADATA +23 -0
- codac4matlab-2.0.0.dev25.dist-info/RECORD +76 -0
- codac4matlab-2.0.0.dev25.dist-info/WHEEL +6 -0
- codac4matlab-2.0.0.dev25.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
# Codac tests
|
|
4
|
+
# ----------------------------------------------------------------------------
|
|
5
|
+
# \date 2024
|
|
6
|
+
# \author Simon Rohou
|
|
7
|
+
# \copyright Copyright 2024 Codac Team
|
|
8
|
+
# \license GNU Lesser General Public License (LGPL)
|
|
9
|
+
|
|
10
|
+
import unittest
|
|
11
|
+
from codac import *
|
|
12
|
+
import sys
|
|
13
|
+
|
|
14
|
+
class TestTransformations(unittest.TestCase):
|
|
15
|
+
|
|
16
|
+
def test_affine_transformation(self):
|
|
17
|
+
|
|
18
|
+
# Building the src trajectory analytically
|
|
19
|
+
|
|
20
|
+
t = ScalarVar()
|
|
21
|
+
f_src = AnalyticFunction([t], [
|
|
22
|
+
cos(2*t)+0.1*cos(10*t),
|
|
23
|
+
2*sin(t)+0.1*sin(10*t)
|
|
24
|
+
])
|
|
25
|
+
|
|
26
|
+
src = AnalyticTraj(f_src,[-1,3]).sampled(0.01)
|
|
27
|
+
|
|
28
|
+
# The dst trajectory is obtained analytically with a
|
|
29
|
+
# transformation described by the parameters:
|
|
30
|
+
|
|
31
|
+
a = PI + PI/3 # rotation angle
|
|
32
|
+
b = 2.5 # scaling
|
|
33
|
+
T = Vector([ -3.2, 2.5 ]) # translation
|
|
34
|
+
f_dst = AnalyticFunction([t], [
|
|
35
|
+
b*cos(a)*f_src(t)[0]-b*sin(a)*f_src(t)[1] + T[0] + 0.05*cos(100*t),
|
|
36
|
+
b*sin(a)*f_src(t)[0]+b*cos(a)*f_src(t)[1] + T[1] + 0.05*sin(100*t)
|
|
37
|
+
])
|
|
38
|
+
|
|
39
|
+
dst = AnalyticTraj(f_dst,[-1,3]).sampled(0.01)
|
|
40
|
+
|
|
41
|
+
# Computing the transformation
|
|
42
|
+
|
|
43
|
+
tr = affine_transformation(src, dst)
|
|
44
|
+
|
|
45
|
+
# Reconstructing the dst trajectory using the estimated transformation
|
|
46
|
+
|
|
47
|
+
dst_estim = SampledVectorTraj()
|
|
48
|
+
for ti,src_i in src:
|
|
49
|
+
dst_estim.set(tr*src_i, ti)
|
|
50
|
+
|
|
51
|
+
scale = tr.linear().col(0).norm()
|
|
52
|
+
rotation_matrix = tr.linear() / scale
|
|
53
|
+
rotation_angle = atan2(rotation_matrix(1, 0), rotation_matrix(0, 0))
|
|
54
|
+
translation = tr.translation()
|
|
55
|
+
|
|
56
|
+
self.assertTrue(Approx(scale,1e-3) == b)
|
|
57
|
+
self.assertTrue(Approx(rotation_angle,1e-3) == (a-2*PI))
|
|
58
|
+
self.assertTrue(Approx(Vector(translation),1e-3) == T)
|
|
59
|
+
|
|
60
|
+
if __name__ == '__main__':
|
|
61
|
+
unittest.main()
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
|
|
3
|
+
# Codac tests
|
|
4
|
+
# ----------------------------------------------------------------------------
|
|
5
|
+
# \date 2024
|
|
6
|
+
# \author Simon Rohou
|
|
7
|
+
# \copyright Copyright 2024 Codac Team
|
|
8
|
+
# \license GNU Lesser General Public License (LGPL)
|
|
9
|
+
|
|
10
|
+
import unittest
|
|
11
|
+
from codac import *
|
|
12
|
+
import sys
|
|
13
|
+
|
|
14
|
+
class TestTrunc(unittest.TestCase):
|
|
15
|
+
|
|
16
|
+
def test_trunc(self):
|
|
17
|
+
|
|
18
|
+
l = next_float(-oo); u = prev_float(oo)
|
|
19
|
+
self.assertTrue(trunc(0) == 0)
|
|
20
|
+
self.assertTrue(trunc(-oo) == l)
|
|
21
|
+
self.assertTrue(trunc(oo) == u)
|
|
22
|
+
self.assertTrue(untrunc(l) == -oo)
|
|
23
|
+
self.assertTrue(untrunc(u) == oo)
|
|
24
|
+
self.assertTrue(untrunc(0) == 0)
|
|
25
|
+
|
|
26
|
+
# trunc matrix types
|
|
27
|
+
|
|
28
|
+
self.assertTrue(trunc(IntervalMatrix([
|
|
29
|
+
[[-1,1],[-2,2]],
|
|
30
|
+
[[-3,3],[-4,4]]
|
|
31
|
+
])) == IntervalMatrix([
|
|
32
|
+
[[-1,1],[-2,2]],
|
|
33
|
+
[[-3,3],[-4,4]]
|
|
34
|
+
]))
|
|
35
|
+
|
|
36
|
+
self.assertTrue(trunc(IntervalMatrix([
|
|
37
|
+
[[-1,oo],[-2,2]],
|
|
38
|
+
[[-3,3],[-4,4]]
|
|
39
|
+
])) == IntervalMatrix([
|
|
40
|
+
[[-1,u],[-2,2]],
|
|
41
|
+
[[-3,3],[-4,4]]
|
|
42
|
+
]))
|
|
43
|
+
|
|
44
|
+
self.assertTrue(trunc(IntervalMatrix([
|
|
45
|
+
[[-oo,oo],[-2,2]],
|
|
46
|
+
[[-3,3],[-4,4]]
|
|
47
|
+
])) == IntervalMatrix([
|
|
48
|
+
[[l,u],[-2,2]],
|
|
49
|
+
[[-3,3],[-4,4]]
|
|
50
|
+
]))
|
|
51
|
+
|
|
52
|
+
self.assertTrue(trunc(IntervalMatrix([
|
|
53
|
+
[[-oo,oo],[-oo,oo]],
|
|
54
|
+
[[-oo,oo],[-oo,oo]]
|
|
55
|
+
])) == IntervalMatrix([
|
|
56
|
+
[[l,u],[l,u]],
|
|
57
|
+
[[l,u],[l,u]]
|
|
58
|
+
]))
|
|
59
|
+
|
|
60
|
+
# untrunc matrix types
|
|
61
|
+
|
|
62
|
+
self.assertTrue(untrunc(IntervalMatrix([
|
|
63
|
+
[[-1,1],[-2,2]],
|
|
64
|
+
[[-3,3],[-4,4]]
|
|
65
|
+
])) == IntervalMatrix([
|
|
66
|
+
[[-1,1],[-2,2]],
|
|
67
|
+
[[-3,3],[-4,4]]
|
|
68
|
+
]))
|
|
69
|
+
|
|
70
|
+
self.assertTrue(untrunc(IntervalMatrix([
|
|
71
|
+
[[-1,u],[-2,2]],
|
|
72
|
+
[[-3,3],[-4,4]]
|
|
73
|
+
])) == IntervalMatrix([
|
|
74
|
+
[[-1,oo],[-2,2]],
|
|
75
|
+
[[-3,3],[-4,4]]
|
|
76
|
+
]))
|
|
77
|
+
|
|
78
|
+
self.assertTrue(untrunc(IntervalMatrix([
|
|
79
|
+
[[l,u],[-2,2]],
|
|
80
|
+
[[-3,3],[-4,4]]
|
|
81
|
+
])) == IntervalMatrix([
|
|
82
|
+
[[-oo,oo],[-2,2]],
|
|
83
|
+
[[-3,3],[-4,4]]
|
|
84
|
+
]))
|
|
85
|
+
|
|
86
|
+
self.assertTrue(untrunc(IntervalMatrix([
|
|
87
|
+
[[l,u],[l,u]],
|
|
88
|
+
[[l,u],[l,u]]
|
|
89
|
+
])) == IntervalMatrix([
|
|
90
|
+
[[-oo,oo],[-oo,oo]],
|
|
91
|
+
[[-oo,oo],[-oo,oo]]
|
|
92
|
+
]))
|
|
93
|
+
|
|
94
|
+
if __name__ == '__main__':
|
|
95
|
+
unittest.main()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from codac4matlab._unsupported import *
|
codac4matlab/version.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__="2.0.0"
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: codac4matlab
|
|
3
|
+
Version: 2.0.0.dev25
|
|
4
|
+
Summary: Codac is a library providing tools for constraint programming over reals and trajectories.
|
|
5
|
+
Home-page: http://codac.io
|
|
6
|
+
Author: Simon Rohou, Benoit Desrochers, Fabrice Le Bars
|
|
7
|
+
Author-email: simon.rohou@ensta.fr
|
|
8
|
+
License: LGPLv3+
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
11
|
+
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
|
|
12
|
+
Requires-Dist: pip>=19.0.0
|
|
13
|
+
Requires-Dist: vibes
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: requires-dist
|
|
21
|
+
Dynamic: summary
|
|
22
|
+
|
|
23
|
+
Codac is a library providing tools for constraint programming over reals and trajectories.
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
codac4matlab/__init__.py,sha256=66jJt4HBe0QVnCBA3w2Tjh09dKNuU7YXoG1VGWXpmnM,139
|
|
2
|
+
codac4matlab/_core.cpython-314-aarch64-linux-gnu.so,sha256=qS2puahCY6k6HIZaWjaaBQ4vSWMFAw-D_pt4NY6DXic,9446600
|
|
3
|
+
codac4matlab/_graphics.cpython-314-aarch64-linux-gnu.so,sha256=M0M4Hoi8fqZ1aMLNuhacdhiA-aMBIAz6Kf2IApKIv6U,3089736
|
|
4
|
+
codac4matlab/_unsupported.cpython-314-aarch64-linux-gnu.so,sha256=FS9TZIkXVVEjPC76rWQrR0UrjEisSVsEYO83igDnHx0,660688
|
|
5
|
+
codac4matlab/empty.cpython-314-aarch64-linux-gnu.so,sha256=UvrTq5iCck4akuBiqM-832bolF0NuvHhGvibU64LQhM,201096
|
|
6
|
+
codac4matlab/version.py,sha256=6aTsaEKyBHFdzQjDU6jvkF0BXPK1486LAfHKk-VQHKc,19
|
|
7
|
+
codac4matlab/core/__init__.py,sha256=HF3VoUDvrmEHbInL3wqUw0A7-ZqzOXJxc0WFo0FxU6Q,16563
|
|
8
|
+
codac4matlab/graphics/__init__.py,sha256=JhVtofKJJLBAFAJOy3ecPPjlyk4eXgVmGHCK9ZOT7NE,36
|
|
9
|
+
codac4matlab/tests/__init__.py,sha256=p2nc-vz1OyekHP7d82yXsE2hNAtyHREmhuKHBZDS4dg,67
|
|
10
|
+
codac4matlab/tests/test_AnalyticFunction.py,sha256=5b264hmOmi9_YIyRr4qLdsAYirCJLxoHcpytMslGMEs,22716
|
|
11
|
+
codac4matlab/tests/test_AnalyticTraj.py,sha256=CiNacA0vDAuV1hIimvdSHU711X-SPpBLacuZX6lXGgI,2354
|
|
12
|
+
codac4matlab/tests/test_Approx.py,sha256=yQ6ERjBOFwcnmeuPSigSINzXOoRpuoIOtmdepqph2DM,907
|
|
13
|
+
codac4matlab/tests/test_BoolInterval.py,sha256=rT4bp9lYUEAwlGxvjFgeVTLsaG0H5A-bVZvsNKQofUk,5601
|
|
14
|
+
codac4matlab/tests/test_Color.py,sha256=QwKynmHbzqwv_Xow1JeefWGKjCwCZ23M1tY7XZK1t_A,2233
|
|
15
|
+
codac4matlab/tests/test_ConvexPolygon.py,sha256=mokT8zhn4rVPMBUHZrlGSC38gWdWBnOCLM-DJh4W1WM,9965
|
|
16
|
+
codac4matlab/tests/test_CtcAction.py,sha256=9Bp4wuB8esd_Qe-qn_Ymrcr1mutCcclQRcKpXEuIx2M,781
|
|
17
|
+
codac4matlab/tests/test_CtcCartProd.py,sha256=Ll6jywMTJQdC5zU7CyIBRkrOiF5xWI6NJNSKYJSBEoM,1041
|
|
18
|
+
codac4matlab/tests/test_CtcCtcBoundary.py,sha256=FJXTB3T1R9jKeMMsaCBC6TVPdVb_dMVaFClF8qwEgzg,1562
|
|
19
|
+
codac4matlab/tests/test_CtcDeriv.py,sha256=HhVp61zZZ53Xn7L3OV_m1ZEmC_WMWq0GxQjssO93bkM,13663
|
|
20
|
+
codac4matlab/tests/test_CtcEval.py,sha256=EapBxTBro30LjJdiY1D2l12N-85IH_2PSodvklJg6kE,6892
|
|
21
|
+
codac4matlab/tests/test_CtcFixpoint.py,sha256=ow4ph85WEXz7u3ZBwePkB3FX07DP497yEENu-NvFkNY,1992
|
|
22
|
+
codac4matlab/tests/test_CtcInter.py,sha256=n43snOZvNzLV13HTB74HkQvoG470F9yWsLMCLdHUBIs,978
|
|
23
|
+
codac4matlab/tests/test_CtcInverse.py,sha256=tiwLcxlOfs5qo_iSzKVwDBlsqP4TKX_xlNRjolWcT_0,6995
|
|
24
|
+
codac4matlab/tests/test_CtcInverseNotIn.py,sha256=At903_KCCJt9vi6B1rxMnt4tEC2mXeAdbnCPTV0EHFY,4182
|
|
25
|
+
codac4matlab/tests/test_CtcLazy.py,sha256=4bJG02ppvr4KdTbI5tovfD76sIKjOsoZKwNFi6UrcAg,1371
|
|
26
|
+
codac4matlab/tests/test_CtcPolygon.py,sha256=TC3ejhh_Hl_QZcJDz8ICCm3-Yjecgkqa77QEJFQ5C0A,2196
|
|
27
|
+
codac4matlab/tests/test_CtcSegment.py,sha256=TcW7gAn6-AY7bLYguwbyPQY_AkA_BrV6YQRZDH7AcTI,2674
|
|
28
|
+
codac4matlab/tests/test_Ellipsoid.py,sha256=0m7V4la9phTOUZhTXQ5GdwytkkX47L_PixEkOb0WHlU,463
|
|
29
|
+
codac4matlab/tests/test_GaussJordan.py,sha256=adN1ZIFcCxyoj9toLnEFBz68IkR5oM4mqqhBtbYVHAc,859
|
|
30
|
+
codac4matlab/tests/test_IntFullPivLU.py,sha256=PCJvsWYWMozxwhpMkK5RvlM6rDFa20ddeTr8rmRg9gw,2797
|
|
31
|
+
codac4matlab/tests/test_Interval.py,sha256=nXJ8F3TQFG02HGoxMKZVuu8Kmq2wFlVbsRlTbjIRnFg,10647
|
|
32
|
+
codac4matlab/tests/test_IntervalMatrix.py,sha256=2cOx8xOyf2IJdis9QZ2auTys4LqESnDBdt2IkYxex4k,17006
|
|
33
|
+
codac4matlab/tests/test_IntervalVector.py,sha256=VLjAHt00cf0lw9VWhxXt-HtL3H5i2tvlhFgq3xgOd4g,21509
|
|
34
|
+
codac4matlab/tests/test_Interval_operations.py,sha256=epwrH4GpkV0j6qYOYNJGR-3Xzwhy3MOgsxvO9xOvJ1k,15196
|
|
35
|
+
codac4matlab/tests/test_Matrix.py,sha256=ayJVjGjatlFqOUHjhaCodV4Q6Q-4XcuYbCwCDABbSu8,1468
|
|
36
|
+
codac4matlab/tests/test_OctaSym.py,sha256=sS3W8pqBXifR7bVbBef1xxJMLucUS4rO-uPG0X1AuSU,1256
|
|
37
|
+
codac4matlab/tests/test_Parallelepiped.py,sha256=PQ60A5Vjv_lqRIlpawYT428xFcDJIZzsZPMCo99mT-s,1277
|
|
38
|
+
codac4matlab/tests/test_Parallelepiped_eval.py,sha256=15Ti5YOesEpcuFoKvyJ6wO2vuwUarsdWtnaCnysoIAY,1877
|
|
39
|
+
codac4matlab/tests/test_Polygon.py,sha256=GyrPVbE3cJmUIsCcY_aAHec48i8snYUf-S8dojmuTcU,5092
|
|
40
|
+
codac4matlab/tests/test_SampledTraj.py,sha256=GSmqhB59MDPVvKOad_nJ2PpvW32_iJ9jNxSI7sKRuoA,3916
|
|
41
|
+
codac4matlab/tests/test_Segment.py,sha256=rO9pfgS7RIEwc7H8qACtIOm0MPrVL3sEtUutJnv_zxQ,7092
|
|
42
|
+
codac4matlab/tests/test_SepCartProd.py,sha256=BlzYdztgvgIBI2xOqBKaJwteCal1VmuCr8t7R_fRKeY,1039
|
|
43
|
+
codac4matlab/tests/test_SepCtcBoundary.py,sha256=HOWTC8FYFEZAvMfmUf_IbJF1COiUyfW46kCdxwkkV18,1790
|
|
44
|
+
codac4matlab/tests/test_SepInverse.py,sha256=Iu8BembvI5IBjwfdEhsnqmAgYdQCh54WsdkadN47AWE,3394
|
|
45
|
+
codac4matlab/tests/test_SepPolygon.py,sha256=5dkdfxBH_3iTCez-bLGYDIvPZc-h4YHhcfZhosnmZK0,2678
|
|
46
|
+
codac4matlab/tests/test_SepProj.py,sha256=72ZkN98XwvE87x7MOxT7Pg2YNruBvCsrg7whISfPFmc,1248
|
|
47
|
+
codac4matlab/tests/test_SepTransform.py,sha256=EKweEH0m8sp1YF-CD0UPz0SpHN5n49zEGXajmuQK9BI,1431
|
|
48
|
+
codac4matlab/tests/test_Slice.py,sha256=DWzo_EpQJneE0jjwFPrN5BhDS3cIrhBEK7uGLmVFLaU,2388
|
|
49
|
+
codac4matlab/tests/test_Slice_polygon.py,sha256=Tt9gyZU64Tz3NPr0T75g8FvUiTxJXZu1Gu7seKQiiP0,5439
|
|
50
|
+
codac4matlab/tests/test_SlicedTube.py,sha256=YN9PyRBlWkvhCxHeGXaGuTIAEfa0e7NJzHT1HfpciGQ,21160
|
|
51
|
+
codac4matlab/tests/test_SlicedTube_integral.py,sha256=buOUSBnGpssbFV8qaMwHSXP2WIGDwewXn8dj87EW7wE,23794
|
|
52
|
+
codac4matlab/tests/test_TDomain.py,sha256=bTKs_qz_2Z-QpMVUpOfrKRIz9xvLU7MTA87v1y3OjN0,3929
|
|
53
|
+
codac4matlab/tests/test_Vector.py,sha256=wxdyckWteMzF9q1AT7RLyvnYcgtGzLDXltrip5clH4A,886
|
|
54
|
+
codac4matlab/tests/test_arithmetic_add.py,sha256=J-qiMllcCIrAw1ujB0CN7eKQUIppgORmV0bEZBmug0E,3780
|
|
55
|
+
codac4matlab/tests/test_arithmetic_div.py,sha256=3x5wbWg5K7B3N96YkBrR_fya4yyasy7n8HziGO4GefA,2316
|
|
56
|
+
codac4matlab/tests/test_arithmetic_mul.py,sha256=TBeIKYjM6bOCzyU_QqmSCmKUIcpDBidZbgGSmU9Ub3o,7906
|
|
57
|
+
codac4matlab/tests/test_arithmetic_sub.py,sha256=TRe0k4FkCzclph4vn3CycztQ8YeqnYTfYGkf8RZ6yLE,3832
|
|
58
|
+
codac4matlab/tests/test_capd.py,sha256=aiFnipFgSlwr8CU5tUsD1V_Rn4sjdJt-1qCrpNl7cuc,432
|
|
59
|
+
codac4matlab/tests/test_cart_prod.py,sha256=orhrJTDNa_yTzZ9XLakZaUxA4X7Pdo0FMM_HdTB0ne8,1757
|
|
60
|
+
codac4matlab/tests/test_eigen.py,sha256=R3Ql28tJ_2phK8FGdoFTz9aqZtPc1GQPLhguGIXsMf0,433
|
|
61
|
+
codac4matlab/tests/test_geometry.py,sha256=dHGBEss9Up5oLhtXFIhBXJ0dY9VakkCfz3yZhHsKwO0,5747
|
|
62
|
+
codac4matlab/tests/test_hull.py,sha256=YnTcEcGixovxnq9PrRX-1Q7PTtNvpPHW-8fZhhQs43w,1538
|
|
63
|
+
codac4matlab/tests/test_ibex.py,sha256=CzatKt7YlVqBWJe0kS0Ny_6DIm3c_yBJH-l1A8S_48w,465
|
|
64
|
+
codac4matlab/tests/test_inversion.py,sha256=qRzsA2VO9cG2peOhPmMrqP1af9Wan0Zg4BVMNUmkhe4,1214
|
|
65
|
+
codac4matlab/tests/test_linear_ctc.py,sha256=UAHCp3_Q5wf22yM_bHILJfMDAhDaoEm1cvtreO-hgmU,2259
|
|
66
|
+
codac4matlab/tests/test_operators.py,sha256=80ufKgiRjiGQ5gxjmkv7W_uNoRaSyZLUlUmbLwiL-hQ,23482
|
|
67
|
+
codac4matlab/tests/test_peibos.py,sha256=N7kVS8N4WM9qZn7_DHFrFp13LNiQYu0vNVrXMYixu4U,2855
|
|
68
|
+
codac4matlab/tests/test_predefined_tubes.py,sha256=ctEqnuB6JZkHYLkueFPXQHDYFjO_ZufiB3ULFsof29I,5007
|
|
69
|
+
codac4matlab/tests/test_serialization.py,sha256=DobdgcEHgJ34jlu0bB9NVMuz0qimiK-6IvFLkr9kugQ,668
|
|
70
|
+
codac4matlab/tests/test_transformations.py,sha256=p562e72V6_awI1qi10UPZOKQHQO7gk5qe8_OqdTQnDk,1727
|
|
71
|
+
codac4matlab/tests/test_trunc.py,sha256=9Hk2vQRvdFXQwnX3jjLLy5cTlE2Kxr2Rf_XS6iXx9hc,2246
|
|
72
|
+
codac4matlab/unsupported/__init__.py,sha256=z5Xm26-xg1FntpomMqRsqcyqAI8y8C4Db9FMtfx4skI,39
|
|
73
|
+
codac4matlab-2.0.0.dev25.dist-info/METADATA,sha256=wud6gPPNzKEtnXuSGTKuVxUcA5yisboSZnSVrsfz5Ro,790
|
|
74
|
+
codac4matlab-2.0.0.dev25.dist-info/WHEEL,sha256=HW7qSkufZ2ivEfDUKzl8dGUiaZ7suo3xGMuWWmlPwmE,155
|
|
75
|
+
codac4matlab-2.0.0.dev25.dist-info/top_level.txt,sha256=ZeLeS-8xPyH0yVFjcLqUgqnqV4umnaerrPV-cSX1c_U,13
|
|
76
|
+
codac4matlab-2.0.0.dev25.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
codac4matlab
|