robotic 0.3.4.dev1__cp310-cp310-manylinux2014_x86_64.whl → 0.3.4.dev2__cp310-cp310-manylinux2014_x86_64.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 robotic might be problematic. Click here for more details.
- robotic/_robotic.pyi +32 -14
- robotic/_robotic.so +0 -0
- robotic/include/rai/Algo/RidgeRegression.h +1 -1
- robotic/include/rai/Algo/rungeKutta.h +1 -1
- robotic/include/rai/Core/array.h +30 -22
- robotic/include/rai/Core/array.ipp +53 -60
- robotic/include/rai/Core/arrayDouble.h +29 -25
- robotic/include/rai/DataGen/shapenetGrasps.h +1 -1
- robotic/include/rai/Geo/mesh.h +2 -2
- robotic/include/rai/Geo/pairCollision.h +40 -36
- robotic/include/rai/Geo/signedDistanceFunctions.h +5 -3
- robotic/include/rai/KOMO/komo.h +1 -1
- robotic/include/rai/Kin/dof_forceExchange.h +3 -3
- robotic/include/rai/Kin/feature.h +1 -1
- robotic/include/rai/Kin/frame.h +1 -1
- robotic/include/rai/Kin/proxy.h +1 -1
- robotic/include/rai/Optim/BayesOpt.h +14 -7
- robotic/include/rai/Optim/CMA/boundary_transformation.h +73 -0
- robotic/include/rai/Optim/CMA/cmaes.h +175 -0
- robotic/include/rai/Optim/CMA/cmaes_interface.h +68 -0
- robotic/include/rai/Optim/GlobalIterativeNewton.h +7 -3
- robotic/include/rai/Optim/NLP.h +15 -1
- robotic/include/rai/Optim/NLP_Solver.h +5 -5
- robotic/include/rai/Optim/constrained.h +3 -3
- robotic/include/rai/Optim/lagrangian.h +6 -5
- robotic/include/rai/Optim/m_EvoStrategies.h +94 -0
- robotic/include/rai/Optim/{gradient.h → m_Gradient.h} +12 -13
- robotic/include/rai/Optim/m_LBFGS.h +21 -0
- robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h +18 -11
- robotic/include/rai/Optim/m_LocalGreedy.h +31 -0
- robotic/include/rai/Optim/m_NelderMead.h +17 -0
- robotic/include/rai/Optim/{newton.h → m_Newton.h} +8 -5
- robotic/include/rai/Optim/options.h +6 -7
- robotic/include/rai/Optim/primalDual.h +9 -5
- robotic/include/rai/Optim/testProblems_Opt.h +5 -5
- robotic/include/rai/Optim/utils.h +9 -20
- robotic/librai.so +0 -0
- robotic/meshTool +0 -0
- robotic/version.py +1 -1
- {robotic-0.3.4.dev1.dist-info → robotic-0.3.4.dev2.dist-info}/METADATA +1 -1
- {robotic-0.3.4.dev1.dist-info → robotic-0.3.4.dev2.dist-info}/RECORD +62 -56
- robotic/include/rai/Optim/lbfgs.h +0 -18
- /robotic/include/rai/Geo/{assimpInterface.h → i_assimp.h} +0 -0
- /robotic/include/rai/Geo/{fclInterface.h → i_fcl.h} +0 -0
- /robotic/include/rai/Kin/{kin_bullet.h → i_Bullet.h} +0 -0
- /robotic/include/rai/Kin/{kin_feather.h → i_Feather.h} +0 -0
- /robotic/include/rai/Kin/{kin_ode.h → i_Ode.h} +0 -0
- /robotic/include/rai/Kin/{kin_physx.h → i_Physx.h} +0 -0
- /robotic/include/rai/Optim/{opt-ceres.h → i_Ceres.h} +0 -0
- /robotic/include/rai/Optim/{opt-ipopt.h → i_Ipopt.h} +0 -0
- /robotic/include/rai/Optim/{opt-nlopt.h → i_NLopt.h} +0 -0
- /robotic/include/rai/Optim/{liblbfgs.h → liblbfgs/liblbfgs.h} +0 -0
- /robotic/include/rai/Optim/{SlackGaussNewton.h → m_SlackGaussNewton.h} +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-bot +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-h5info +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-info +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-meshTool +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-test +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-urdfConvert.py +0 -0
- {robotic-0.3.4.dev1.data → robotic-0.3.4.dev2.data}/scripts/ry-view +0 -0
- {robotic-0.3.4.dev1.dist-info → robotic-0.3.4.dev2.dist-info}/WHEEL +0 -0
- {robotic-0.3.4.dev1.dist-info → robotic-0.3.4.dev2.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.3.4.dev1.dist-info → robotic-0.3.4.dev2.dist-info}/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
robotic/DataGen.pyi,sha256=qDQjATpbIgFvOrWk7F3ZTVbOuyXjT5nwHxrsRfGxWRU,3716
|
|
2
2
|
robotic/__init__.py,sha256=h8LG-Fle7lAtkJ-ZE1u5kWTyuayhugNxtFX9T_JKQGY,476
|
|
3
|
-
robotic/_robotic.pyi,sha256=
|
|
4
|
-
robotic/_robotic.so,sha256=
|
|
3
|
+
robotic/_robotic.pyi,sha256=eH6X_tlCOE1wsCfPJ7UceZsqo-0B-WQkxbcfiy9jqIk,78182
|
|
4
|
+
robotic/_robotic.so,sha256=oeTwP1Z0rsis-0LnYbomDUQWE3pUQ-IieaOqmaz0rQI,1275752
|
|
5
5
|
robotic/algo.pyi,sha256=hAN3ZPvf4VnhcdoRP-EecAwUge_JMxovJ9lAOIgWX2Q,730
|
|
6
|
-
robotic/librai.so,sha256=
|
|
6
|
+
robotic/librai.so,sha256=t33Zp6zObfhuY_Of8xslnvfFGEg16sr8W6XJ6zA82VY,39005824
|
|
7
7
|
robotic/manipulation.py,sha256=0B7UzU9J7b4f19thz67TbvknoncxffQEMHSBB6ez1Jg,22279
|
|
8
|
-
robotic/meshTool,sha256=
|
|
8
|
+
robotic/meshTool,sha256=V9bMOkry--3L3FBoCP9bRdFl_2nvN02AZpAP801JlQY,56288
|
|
9
9
|
robotic/mujoco-import.py,sha256=8eC8ldlFwnYQfqII3FVdWEQ7zd1PkSdAF-oyryIQtkY,231
|
|
10
10
|
robotic/nlp.py,sha256=n9_hOj3i707DdL_r49Yd2eWyjsSOahW8DmJrEhQlNFw,3200
|
|
11
11
|
robotic/render.py,sha256=OE1dvyWHD7Oyzk4wlhXZ7m3v3xxa3zAL5_LCV1RgJXk,4662
|
|
@@ -17,9 +17,9 @@ robotic/ry-test,sha256=MYMwRyOwCDxsgUwSPj9etNRSKJWvc6jwVWUJNkxlw-U,979
|
|
|
17
17
|
robotic/ry-urdfConvert.py,sha256=8Efnq3PU202rrZrVEZiGwzFOJdvrLjTJ2q-gnY6-tiU,2556
|
|
18
18
|
robotic/ry-view,sha256=T1Omn1QS7cNAtjQhBjMJTNz7aW5FgoOf9vBIfW0mFME,613
|
|
19
19
|
robotic/test.pyi,sha256=vVxwRSerjUG4bpB7pIhof7ZatrBqwg3Bj5voywa-YTI,917
|
|
20
|
-
robotic/version.py,sha256=
|
|
20
|
+
robotic/version.py,sha256=safcLGc3qHjRyE2B0CDJ6rYEEJVpdijLmYxccZ1EGjA,27
|
|
21
21
|
robotic/include/rai/Algo/MLcourse.h,sha256=TGkAJWC5ollGfPw0-gcYL0TZeDJiHtWFzkHSMK8_lqU,1828
|
|
22
|
-
robotic/include/rai/Algo/RidgeRegression.h,sha256=
|
|
22
|
+
robotic/include/rai/Algo/RidgeRegression.h,sha256=VXiv6-xr3j--CN7DJTzUg9Xb49zV9FZ9dwzxP1CmcPM,3730
|
|
23
23
|
robotic/include/rai/Algo/SplineCtrlFeed.h,sha256=yILBoUh9Ce0YtzGVZeAKmdUqsf0xeCGjXGC8bXNzZ3o,3339
|
|
24
24
|
robotic/include/rai/Algo/ann.h,sha256=XCQSzJIg_cPzZBKgIJMuHvBLc3ayD1FzSFqh2s_1TnM,1294
|
|
25
25
|
robotic/include/rai/Algo/dataNeighbored.h,sha256=NfwS4xJElLxX8t5cYY3xiTLXgJyMsHoaD-J0kT2GXqE,1208
|
|
@@ -31,7 +31,7 @@ robotic/include/rai/Algo/kalman.h,sha256=c3i6ebYHZtyT5ReTmpJVx8aJ26JWLymqK_QRDY4
|
|
|
31
31
|
robotic/include/rai/Algo/marching_cubes.h,sha256=dvk9PfTP4xBFMIcS_4tRVpMJaMH90-vi-a52xArEQ0U,145
|
|
32
32
|
robotic/include/rai/Algo/minimalSpanningTree.h,sha256=56zTSWdMi4TMjtQDVv7tHo4ahivfidTXWN4zp9NX-Jw,512
|
|
33
33
|
robotic/include/rai/Algo/priorityQueue.h,sha256=nF-5_eSbGjXMmY2K3SpD-Hxwb3bhFA1ilr6IBsFq87Q,1938
|
|
34
|
-
robotic/include/rai/Algo/rungeKutta.h,sha256=
|
|
34
|
+
robotic/include/rai/Algo/rungeKutta.h,sha256=2Lfv8wzt2VSPYm2JG0gMAGsQYrd4yIx8sjv8GhkpXus,1765
|
|
35
35
|
robotic/include/rai/Algo/spline.h,sha256=mNi6ktREVFYkdJWPZaCrnvCW3AuZyMAsktYkRz3Ywxo,4269
|
|
36
36
|
robotic/include/rai/Algo/trilinear.h,sha256=RhTO8FyB-lO4qfoOZgZPyrZo_2XMaVfBZ8BIETomvMc,200
|
|
37
37
|
robotic/include/rai/Algo/Lewiner/LookUpTable.h,sha256=0MRA9ioCeKoMhXYqtxaOPHTMwR_GkmyDFx2mgpSvs9s,158933
|
|
@@ -50,9 +50,9 @@ robotic/include/rai/Control/WaypointMPC.h,sha256=Pa36-K1yMxszD9EFuLfLayaOe9pTK8c
|
|
|
50
50
|
robotic/include/rai/Control/control.h,sha256=_dJefR6WzvdQMaJIYIBuYP8NwoKgNeG4owhQWPxWXzo,765
|
|
51
51
|
robotic/include/rai/Control/ctrlMsg.h,sha256=uGuwAaKM1UsQW3hTNv4AihW99MJMuow4cxa9-AU9AmA,1121
|
|
52
52
|
robotic/include/rai/Control/timingOpt.h,sha256=Ne_IH8QuFCID0Sy88LS5i3qkp1nL1FbIgREqSjRctz0,2045
|
|
53
|
-
robotic/include/rai/Core/array.h,sha256=
|
|
54
|
-
robotic/include/rai/Core/array.ipp,sha256=
|
|
55
|
-
robotic/include/rai/Core/arrayDouble.h,sha256=
|
|
53
|
+
robotic/include/rai/Core/array.h,sha256=xlbbSVin9_3iDN6OskoQDT2tAiA3L0qpvSnqWISHedE,26829
|
|
54
|
+
robotic/include/rai/Core/array.ipp,sha256=M4nm038RAgV7y4vA80c7LWmw5nG6oM2Q87uBjBEhXBQ,63413
|
|
55
|
+
robotic/include/rai/Core/arrayDouble.h,sha256=hkDMhYu7rxWkczdhCh7Zh1h7_bLN8yFkgd6cy8t-11g,29467
|
|
56
56
|
robotic/include/rai/Core/defines.h,sha256=Y5YF92lo5dV3r0W6DFCapY7_7vUk9dS1po6ixtNxGIg,6896
|
|
57
57
|
robotic/include/rai/Core/graph.h,sha256=vV4Cu8wCTz3zQZPK_a1xKVjbWGNhX4nuEGZ2vq6zhCE,20373
|
|
58
58
|
robotic/include/rai/Core/h5.h,sha256=cfs8cew5QYpOxbWFZHV9TXVh5_dEJdFF1-aGZVR54EY,1162
|
|
@@ -64,15 +64,15 @@ robotic/include/rai/Core/lapack/cblas.h,sha256=4bSmMzZ4idIPlmcwjw5HuwY1cs5RU73Zw
|
|
|
64
64
|
robotic/include/rai/Core/lapack/clapack.h,sha256=8rLteHzzGpKhJZXv4Eom9mk8lzbwRwjJuIqJuR1eePc,343373
|
|
65
65
|
robotic/include/rai/Core/lapack/lapacke.h,sha256=cpP6MEjkLGyhS8mV6ysRlTVeUam6f8zBgFUJB1phuwM,1045408
|
|
66
66
|
robotic/include/rai/DataGen/rndStableConfigs.h,sha256=RdAD1kDsKic7WwBvLtFyIVnGKdtGqhxekBKjoeeUd40,403
|
|
67
|
-
robotic/include/rai/DataGen/shapenetGrasps.h,sha256=
|
|
68
|
-
robotic/include/rai/Geo/assimpInterface.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg-LhMlWcjiF_o,1055
|
|
67
|
+
robotic/include/rai/DataGen/shapenetGrasps.h,sha256=VA7keWDLfxTj4XvevzV7h1ApJsgCxPnKm-LhOXPLDZY,1618
|
|
69
68
|
robotic/include/rai/Geo/depth2PointCloud.h,sha256=0mXJnTk0sMB--KDE9CO_2gKgGw4gHXUe7xg6DcROhvk,1168
|
|
70
|
-
robotic/include/rai/Geo/fclInterface.h,sha256=d89JFW3WKI64gOdQSGs6uFdE7NcMavNg89BMHhzMDac,984
|
|
71
69
|
robotic/include/rai/Geo/geo.h,sha256=6bjl_R_Olr_pvlKcxPNdiu8brWFfYJMVQrKSbx3zhpA,14937
|
|
72
|
-
robotic/include/rai/Geo/
|
|
73
|
-
robotic/include/rai/Geo/
|
|
70
|
+
robotic/include/rai/Geo/i_assimp.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg-LhMlWcjiF_o,1055
|
|
71
|
+
robotic/include/rai/Geo/i_fcl.h,sha256=d89JFW3WKI64gOdQSGs6uFdE7NcMavNg89BMHhzMDac,984
|
|
72
|
+
robotic/include/rai/Geo/mesh.h,sha256=wGT463J0LW_LsJm7lFoU-INqmcro5_hj3Q_jXRI3QrM,6873
|
|
73
|
+
robotic/include/rai/Geo/pairCollision.h,sha256=VXCjzK6O0k--KF5hyeHhi6WQDPj_kj6rN4Vp-WP8rb8,4534
|
|
74
74
|
robotic/include/rai/Geo/qhull.h,sha256=dRAAHIdvujPPW1fXW4hXMjgixpBDajDg-y_OX1JMi_0,1890
|
|
75
|
-
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=
|
|
75
|
+
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=mM4oi6ai1bRSmFrZkBa40mqwjpVvfV193jMkAuN0xh4,4815
|
|
76
76
|
robotic/include/rai/Geo/stbImage.h,sha256=R5MRPs3KLL-GOipzAN_jdV-pdlBCTkUFaA5LnYEIElw,100
|
|
77
77
|
robotic/include/rai/Geo/stb_image.h,sha256=3GREaSd1mttRQgl4onz7bVjl5FGNMROXlWCXoK94G6g,251785
|
|
78
78
|
robotic/include/rai/Geo/testProblems_Geo.h,sha256=PAO_y2X6KFjbfpCBoy59GkVq_A82ovg-stLO3EJ7iuE,927
|
|
@@ -95,7 +95,7 @@ robotic/include/rai/Gui/color.h,sha256=4ElBkpWgwBuqQEFD4Mdhv_afZE4ul6NkptwFQ2oDS
|
|
|
95
95
|
robotic/include/rai/Gui/opengl.h,sha256=NipYBJ40hqC6K7xqmB0UYdU4rX_zQgnh7rsi5_Fg0-8,9101
|
|
96
96
|
robotic/include/rai/Gui/plot.h,sha256=Y_X9-V6IExvFafNzkG88O2wUGDCCnarUzpi5b0DKBcQ,2346
|
|
97
97
|
robotic/include/rai/KOMO/PathSmoother.h,sha256=y-t3yVEZvxfQIs8_EA-WI7FJ_RzfbG8TEfdiNAruuUI,813
|
|
98
|
-
robotic/include/rai/KOMO/komo.h,sha256=
|
|
98
|
+
robotic/include/rai/KOMO/komo.h,sha256=zLHRhFnmkM_OGOzMNwl8xZCxHbB2cOAgLb8UJgfe26I,13485
|
|
99
99
|
robotic/include/rai/KOMO/komo_NLP.h,sha256=GX4bxbAfbV_z42XrLmS0drLPcsIZiioRkWhF3UuhZno,3681
|
|
100
100
|
robotic/include/rai/KOMO/manipTools.h,sha256=wZdCohK4g5Jzq2bdIOXmRqaCVQNTK5k-FC20ViUXi98,4620
|
|
101
101
|
robotic/include/rai/KOMO/objective.h,sha256=Cl4-KjheRMNWoh_xFas5tLWMKSMlJf-HLDihfqvfcSw,2704
|
|
@@ -114,18 +114,18 @@ robotic/include/rai/Kin/F_pose.h,sha256=QlZnpS4ZTNFBZlH-lpe6sTt2gdbxbjsZTHPqk0T_
|
|
|
114
114
|
robotic/include/rai/Kin/F_qFeatures.h,sha256=x4cfFGaVBQSmj9ZetcC25qiGxnvfNMPsWh9zbPa5owE,2212
|
|
115
115
|
robotic/include/rai/Kin/cameraview.h,sha256=byzJyTxP4Irh0A6gi8ZNndvJ0UFDD8leLfbW9B7laJI,2478
|
|
116
116
|
robotic/include/rai/Kin/dof_direction.h,sha256=9tio7VXxXAv-ZAxA6QskjD5rMH2LHU4hIGAG6TC0RaY,831
|
|
117
|
-
robotic/include/rai/Kin/dof_forceExchange.h,sha256=
|
|
117
|
+
robotic/include/rai/Kin/dof_forceExchange.h,sha256=LcqbyfFYI2CyNoiJlY1WxkXRgsMfSmrV3PuynG9kdCA,1952
|
|
118
118
|
robotic/include/rai/Kin/dof_particles.h,sha256=PboLndC5a5extUKAfUPAIsJEGTTs6_ACDgnLrei2s8g,790
|
|
119
119
|
robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV1xDtQ,792
|
|
120
|
-
robotic/include/rai/Kin/feature.h,sha256=
|
|
120
|
+
robotic/include/rai/Kin/feature.h,sha256=6YQbXa4DGg3QQsUCCaf3WnUlxyQ26CkUbmYhTawAT0U,3946
|
|
121
121
|
robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
|
|
122
|
-
robotic/include/rai/Kin/frame.h,sha256=
|
|
122
|
+
robotic/include/rai/Kin/frame.h,sha256=NuCChz0UzS8SCWJXnTrq6O8zi8wsuymPg65zTQjCpFQ,14603
|
|
123
|
+
robotic/include/rai/Kin/i_Bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
|
|
124
|
+
robotic/include/rai/Kin/i_Feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
|
|
125
|
+
robotic/include/rai/Kin/i_Ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
|
|
126
|
+
robotic/include/rai/Kin/i_Physx.h,sha256=CxsmnWHQMgJBbhA5iajLpOjxpCkd9243tlVyYkNRgOM,1950
|
|
123
127
|
robotic/include/rai/Kin/kin.h,sha256=mzHgBV-j46PstUXzXsvVg_b64Q0jUNNk3bPfbnH7Vag,16120
|
|
124
|
-
robotic/include/rai/Kin/
|
|
125
|
-
robotic/include/rai/Kin/kin_feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
|
|
126
|
-
robotic/include/rai/Kin/kin_ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
|
|
127
|
-
robotic/include/rai/Kin/kin_physx.h,sha256=CxsmnWHQMgJBbhA5iajLpOjxpCkd9243tlVyYkNRgOM,1950
|
|
128
|
-
robotic/include/rai/Kin/proxy.h,sha256=jfFQrvokqvt8bGYEzGQoD2ZpnuWuLzCeOjFfUvdxcx0,1473
|
|
128
|
+
robotic/include/rai/Kin/proxy.h,sha256=yn19c-lrt6Fv8AE76ex_UObEFaNxMhItukv-KQgXZN8,1420
|
|
129
129
|
robotic/include/rai/Kin/simulation.h,sha256=jeW1Pj4AVk9mjBTYjDpNd19Dw0QH__m6VhjSvkiftcs,5510
|
|
130
130
|
robotic/include/rai/Kin/viewer.h,sha256=XhfZ3QUYdCuye3NnCwPe2XnoJAqnf9RCtMAZLsc3fd4,2432
|
|
131
131
|
robotic/include/rai/LGP/LGP_SkeletonTool.h,sha256=T4lXAUxY2QFo_ETZEm7RqRzfmU6NAHdVcow8qj_8-9Y,3240
|
|
@@ -141,28 +141,34 @@ robotic/include/rai/LGP/initFol.h,sha256=m67VqzKUQzMN0kBFL0lWACu0ls7eYj8ExyXVFju
|
|
|
141
141
|
robotic/include/rai/Logic/fol.h,sha256=ubWsZacmrRPGeDPKQVGKDoGC_4GxYGdVLJ0K3a3eZu0,3598
|
|
142
142
|
robotic/include/rai/Logic/folWorld.h,sha256=XpqTWOIvZbKlS_vsJkXOexrhjfy3_iywebFezJamhHA,6072
|
|
143
143
|
robotic/include/rai/Logic/treeSearchDomain.h,sha256=sO5Y6o9wRTQxfST9YyJw3P0KcqGX7ISqbIN-uGQ5abU,3882
|
|
144
|
-
robotic/include/rai/Optim/BayesOpt.h,sha256=
|
|
145
|
-
robotic/include/rai/Optim/GlobalIterativeNewton.h,sha256=
|
|
146
|
-
robotic/include/rai/Optim/NLP.h,sha256=
|
|
144
|
+
robotic/include/rai/Optim/BayesOpt.h,sha256=bDSXXVV_-szB-6SeT9afodVi8DuQfdk6-Er2UFlgoN0,1276
|
|
145
|
+
robotic/include/rai/Optim/GlobalIterativeNewton.h,sha256=dcTblUANjZx82zFugK9ItKuo69Llw8G6lvaMSzLhwHA,867
|
|
146
|
+
robotic/include/rai/Optim/NLP.h,sha256=jVLFJXz59FZDPD7HHmI36fsECZG8mUqZkzLu94_iFF8,8737
|
|
147
147
|
robotic/include/rai/Optim/NLP_Factory.h,sha256=xDn73B-u6fFvtu-udkXgyTiFyjTzfJNHwUm6z88FiOo,1979
|
|
148
148
|
robotic/include/rai/Optim/NLP_GraphSolver.h,sha256=Te5_uyLrBvHANfGv9uHdR6YPuCWCqgJqj9EL8WYfF14,1172
|
|
149
149
|
robotic/include/rai/Optim/NLP_Sampler.h,sha256=JaOEc8YJwatW5toOviTFXlOoF3Dg8ZWPM9zejyW9ND8,4643
|
|
150
|
-
robotic/include/rai/Optim/NLP_Solver.h,sha256=
|
|
151
|
-
robotic/include/rai/Optim/
|
|
152
|
-
robotic/include/rai/Optim/
|
|
153
|
-
robotic/include/rai/Optim/
|
|
154
|
-
robotic/include/rai/Optim/
|
|
155
|
-
robotic/include/rai/Optim/
|
|
156
|
-
robotic/include/rai/Optim/
|
|
157
|
-
robotic/include/rai/Optim/
|
|
158
|
-
robotic/include/rai/Optim/
|
|
159
|
-
robotic/include/rai/Optim/
|
|
160
|
-
robotic/include/rai/Optim/
|
|
161
|
-
robotic/include/rai/Optim/
|
|
162
|
-
robotic/include/rai/Optim/
|
|
163
|
-
robotic/include/rai/Optim/
|
|
164
|
-
robotic/include/rai/Optim/
|
|
165
|
-
robotic/include/rai/Optim/
|
|
150
|
+
robotic/include/rai/Optim/NLP_Solver.h,sha256=_9uwj61sobPl5-Q8bpxz4Wb6i5Q6nctfFspfKP_0tNA,2521
|
|
151
|
+
robotic/include/rai/Optim/constrained.h,sha256=VdtrNywvRiDvfb3_KICQnnkE54EuadV0y2a1kuXM6eA,1522
|
|
152
|
+
robotic/include/rai/Optim/i_Ceres.h,sha256=kQbuKAfvOFIPcGWh2laGHyRsSf0A8mggVUGonq3JaHU,946
|
|
153
|
+
robotic/include/rai/Optim/i_Ipopt.h,sha256=1v147tZVY3MuNMRLaFFWxKC7fyNP5-59WJzKoVv8BsY,516
|
|
154
|
+
robotic/include/rai/Optim/i_NLopt.h,sha256=R0ma9SjxcVU9nI7H39QOWUIPy95H4AiQwLRHz3DRe7k,970
|
|
155
|
+
robotic/include/rai/Optim/lagrangian.h,sha256=KaORGcnP3je7AiF_kzNe9nYGlCfwVt-exTMiehmJugo,2532
|
|
156
|
+
robotic/include/rai/Optim/m_EvoStrategies.h,sha256=zch7kh-tZHslU7hyUaUKr3vkdcyACmFpV6sR_JEe1cc,2510
|
|
157
|
+
robotic/include/rai/Optim/m_Gradient.h,sha256=u5e6fsPd54qRvQwvbHeFjj-qLij_SlP6BlR0eEKVeFA,1743
|
|
158
|
+
robotic/include/rai/Optim/m_LBFGS.h,sha256=EkKO7ws6M0cRB2zGsbxtU1meyfAvJw-BlCrY1bijZaM,311
|
|
159
|
+
robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h,sha256=J-gp8iwHgPxxCDO8H8W2eYaMG5dI7ZGDP3s2ks3EyWk,1099
|
|
160
|
+
robotic/include/rai/Optim/m_LocalGreedy.h,sha256=wfTFZl2C7qxCV6J0oxsRiHN9wBF2sOJLGe11ct8lQlo,608
|
|
161
|
+
robotic/include/rai/Optim/m_NelderMead.h,sha256=Wu8g4fvZtNr-gBkpXPRvZcMHb1TSu2mMKii3zCJwQ9I,280
|
|
162
|
+
robotic/include/rai/Optim/m_Newton.h,sha256=uHsS8EDATlm11CGo84BD0ruo3JhXIP7afiY2rvwBOSg,1162
|
|
163
|
+
robotic/include/rai/Optim/m_SlackGaussNewton.h,sha256=C9GqyHzcseIY2xUMN4QmymOLtWjJcNmbhS5JJMiAPao,1055
|
|
164
|
+
robotic/include/rai/Optim/options.h,sha256=lDExjmnuhjOJe1Gg0DREDCMB6vKJAfgwULspp72PaHA,1961
|
|
165
|
+
robotic/include/rai/Optim/primalDual.h,sha256=Ku91MisgpNyRv6W7UPV4d5Q2Gjfwefqam7eeFsxITUU,1309
|
|
166
|
+
robotic/include/rai/Optim/testProblems_Opt.h,sha256=6OED5_nsjTn-MiWy8kVzTJXRxR5bG2WZ_ZvZei8QXec,6657
|
|
167
|
+
robotic/include/rai/Optim/utils.h,sha256=ZYBRhkogXxn67mfhGQgLisc2rTn-hlFqyYVDxXiCOZM,2002
|
|
168
|
+
robotic/include/rai/Optim/CMA/boundary_transformation.h,sha256=Ylu2ZX14fHqpJdKPbIZwR_ttfazgMv8nLJ0l0vvgvRA,3841
|
|
169
|
+
robotic/include/rai/Optim/CMA/cmaes.h,sha256=EphfakrvvJOVgfBj0I9-hJuBV3zdCLmzEi_FqDnQh1I,4588
|
|
170
|
+
robotic/include/rai/Optim/CMA/cmaes_interface.h,sha256=ntBGw2nlUi4bx0ZtW7qzbhwccdE0x8aZBFZkoqIVEn8,2743
|
|
171
|
+
robotic/include/rai/Optim/liblbfgs/liblbfgs.h,sha256=Lu3zbs6PADps0WIbJHh_eoIxkCH7JPcEFZ6h5988JaI,32809
|
|
166
172
|
robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=Zl_J3yooYFxA2-z-ulFL67nfzQBX90hUbD_cVFzpb3U,1351
|
|
167
173
|
robotic/include/rai/PathAlgos/PathResult.h,sha256=xxZiD8ClGKO719mQR50BsIzOlHeoH0UH4QNzWifoz6c,1070
|
|
168
174
|
robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=JBptbQVUc5GWEMer_ypmtMNUK0S0sBo3M0d4E2q4doQ,3306
|
|
@@ -367,15 +373,15 @@ robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnE
|
|
|
367
373
|
robotic/src/mujoco_io.py,sha256=drLNE4yo30hpOY01-AsuCWKLvNoG5w2YDSzR_rlyfz0,9474
|
|
368
374
|
robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
369
375
|
robotic/src/yaml_helper.py,sha256=Jf9QaKSNQrPkUPqd5FUDv7_h0wDlGXrhCdMwu6y-Nh0,925
|
|
370
|
-
robotic-0.3.4.
|
|
371
|
-
robotic-0.3.4.
|
|
372
|
-
robotic-0.3.4.
|
|
373
|
-
robotic-0.3.4.
|
|
374
|
-
robotic-0.3.4.
|
|
375
|
-
robotic-0.3.4.
|
|
376
|
-
robotic-0.3.4.
|
|
377
|
-
robotic-0.3.4.
|
|
378
|
-
robotic-0.3.4.
|
|
379
|
-
robotic-0.3.4.
|
|
380
|
-
robotic-0.3.4.
|
|
381
|
-
robotic-0.3.4.
|
|
376
|
+
robotic-0.3.4.dev2.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
377
|
+
robotic-0.3.4.dev2.data/scripts/ry-h5info,sha256=6orNP37WPoobKup0PcLXQvbiCVWqeRR_JQyMH1iXHJk,449
|
|
378
|
+
robotic-0.3.4.dev2.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
379
|
+
robotic-0.3.4.dev2.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
380
|
+
robotic-0.3.4.dev2.data/scripts/ry-test,sha256=YTCSIuTA4JYk7j7TAr-t7IIp5g6hdLRlTPxJZBxQVpk,965
|
|
381
|
+
robotic-0.3.4.dev2.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
382
|
+
robotic-0.3.4.dev2.data/scripts/ry-view,sha256=_GjUbVS2X3AWnlXqIHwU5dofLmUKA2-NUPySgS-QJNI,599
|
|
383
|
+
robotic-0.3.4.dev2.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
384
|
+
robotic-0.3.4.dev2.dist-info/METADATA,sha256=GyHozdHsWzRtgqc1oKXrZ1QWjfH9qxNNmZ0coAcWaOg,6663
|
|
385
|
+
robotic-0.3.4.dev2.dist-info/WHEEL,sha256=0-G7woG4LgutcYzUGJCOYFgoh749-FtfhSMeIPLVGS0,104
|
|
386
|
+
robotic-0.3.4.dev2.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
387
|
+
robotic-0.3.4.dev2.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#pragma once
|
|
2
|
-
|
|
3
|
-
#include "NLP.h"
|
|
4
|
-
#include "options.h"
|
|
5
|
-
|
|
6
|
-
struct OptLBFGS{
|
|
7
|
-
ScalarFunction& f;
|
|
8
|
-
uint dimension;
|
|
9
|
-
arr& x;
|
|
10
|
-
rai::OptOptions opt;
|
|
11
|
-
|
|
12
|
-
OptLBFGS(arr& x, ScalarFunction& f, rai::OptOptions o=DEFAULT_OPTIONS);
|
|
13
|
-
|
|
14
|
-
std::shared_ptr<SolverReturn> solve();
|
|
15
|
-
|
|
16
|
-
//private:
|
|
17
|
-
arr g;
|
|
18
|
-
};
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|