robotic 0.2.9.dev1__cp311-cp311-manylinux2014_x86_64.whl → 0.3.4.dev5__cp311-cp311-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.
- robotic/DataGen.pyi +11 -1
- robotic/__init__.py +8 -1
- robotic/_robotic.pyi +228 -110
- robotic/_robotic.so +0 -0
- robotic/algo.pyi +17 -0
- robotic/include/rai/{Geo → Algo}/Lewiner/MarchingCubes.h +0 -29
- robotic/include/rai/Algo/SplineCtrlFeed.h +1 -1
- robotic/include/rai/Algo/marching_cubes.h +9 -0
- robotic/include/rai/Algo/rungeKutta.h +2 -2
- robotic/include/rai/Algo/spline.h +4 -8
- robotic/include/rai/Algo/trilinear.h +10 -0
- robotic/include/rai/Control/CtrlSolver.h +1 -1
- robotic/include/rai/Control/TimingMPC.h +2 -2
- robotic/include/rai/Core/array.h +99 -64
- robotic/include/rai/Core/array.ipp +290 -139
- robotic/include/rai/Core/arrayDouble.h +36 -26
- robotic/include/rai/Core/defines.h +7 -9
- robotic/include/rai/Core/graph.h +27 -23
- robotic/include/rai/Core/h5.h +3 -1
- robotic/include/rai/Core/thread.h +12 -12
- robotic/include/rai/Core/util.h +58 -79
- robotic/include/rai/DataGen/rndStableConfigs.h +1 -0
- robotic/include/rai/DataGen/shapenetGrasps.h +5 -3
- robotic/include/rai/Geo/depth2PointCloud.h +2 -0
- robotic/include/rai/Geo/geo.h +23 -15
- robotic/include/rai/Geo/{fclInterface.h → i_fcl.h} +3 -1
- robotic/include/rai/Geo/mesh.h +18 -13
- robotic/include/rai/Geo/pairCollision.h +43 -43
- robotic/include/rai/Geo/signedDistanceFunctions.h +7 -5
- robotic/include/rai/Geo/stb_image.h +1 -1
- robotic/include/rai/Gui/RenderData.h +9 -7
- robotic/include/rai/Gui/opengl.h +6 -6
- robotic/include/rai/Gui/plot.h +1 -1
- robotic/include/rai/KOMO/komo.h +6 -3
- robotic/include/rai/KOMO/komo_NLP.h +2 -2
- robotic/include/rai/KOMO/manipTools.h +7 -2
- robotic/include/rai/KOMO/testProblems_KOMO.h +5 -9
- robotic/include/rai/Kin/F_forces.h +3 -3
- robotic/include/rai/Kin/cameraview.h +24 -36
- robotic/include/rai/Kin/dof_forceExchange.h +7 -7
- robotic/include/rai/Kin/feature.h +1 -1
- robotic/include/rai/Kin/frame.h +22 -24
- robotic/include/rai/Kin/{kin_physx.h → i_Physx.h} +10 -8
- robotic/include/rai/Kin/kin.h +29 -21
- robotic/include/rai/Kin/proxy.h +1 -1
- robotic/include/rai/Kin/simulation.h +20 -10
- robotic/include/rai/Kin/viewer.h +14 -1
- robotic/include/rai/LGP/LGP_TAMP_Abstraction.h +33 -0
- robotic/include/rai/LGP/LGP_Tool.h +4 -25
- robotic/include/rai/LGP/LGP_computers.h +1 -1
- robotic/include/rai/LGP/LGP_computers2.h +196 -0
- robotic/include/rai/LGP/NLP_Descriptor.h +5 -0
- robotic/include/rai/Logic/folWorld.h +1 -1
- robotic/include/rai/Logic/treeSearchDomain.h +2 -2
- robotic/include/rai/Optim/BayesOpt.h +13 -6
- 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 +23 -7
- robotic/include/rai/Optim/NLP_GraphSolver.h +1 -1
- robotic/include/rai/Optim/NLP_Solver.h +5 -5
- robotic/include/rai/Optim/constrained.h +4 -4
- robotic/include/rai/Optim/{opt-ceres.h → i_Ceres.h} +2 -2
- robotic/include/rai/Optim/{opt-nlopt.h → i_NLopt.h} +4 -0
- robotic/include/rai/Optim/lagrangian.h +7 -5
- robotic/include/rai/Optim/liblbfgs/liblbfgs.h +755 -0
- robotic/include/rai/Optim/m_EvoStrategies.h +114 -0
- robotic/include/rai/Optim/{gradient.h → m_Gradient.h} +13 -12
- robotic/include/rai/Optim/m_LBFGS.h +21 -0
- robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h +104 -0
- robotic/include/rai/Optim/m_LocalGreedy.h +31 -0
- robotic/include/rai/Optim/m_NelderMead.h +23 -0
- robotic/include/rai/Optim/{newton.h → m_Newton.h} +7 -4
- robotic/include/rai/Optim/{SlackGaussNewton.h → m_SlackGaussNewton.h} +0 -10
- robotic/include/rai/Optim/options.h +8 -7
- robotic/include/rai/Optim/primalDual.h +10 -6
- robotic/include/rai/Optim/testProblems_Opt.h +25 -19
- robotic/include/rai/Optim/utils.h +16 -85
- robotic/include/rai/PathAlgos/ConfigurationProblem.h +3 -2
- robotic/include/rai/PathAlgos/RRT_PathFinder.h +2 -2
- robotic/include/rai/Perception/pcl.h +10 -10
- robotic/include/rai/Perception/surfels.h +1 -1
- robotic/include/rai/Search/TreeSearchNode.h +1 -1
- robotic/include/rai/ry/py-algo.h +17 -0
- robotic/include/rai/ry/types.h +4 -2
- robotic/librai.so +0 -0
- robotic/manipulation.py +5 -7
- robotic/meshTool +0 -0
- robotic/mujoco-import.py +8 -0
- robotic/rai-robotModels/g1/g1.g +11 -2
- robotic/rai-robotModels/g1/g1_29dof_conv.yml +64 -0
- robotic/rai-robotModels/g1/g1_clean.g +38 -73
- robotic/rai-robotModels/g1/meshes/head_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_elbow_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_knee_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_rubber_hand.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/logo_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis_contour_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_elbow_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_knee_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_rubber_hand.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/torso_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/waist_roll_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/waist_support_link.h5 +0 -0
- robotic/rai-robotModels/g1/meshes/waist_yaw_link.h5 +0 -0
- robotic/rai-robotModels/objects/shelf.g +1 -1
- robotic/rai-robotModels/panda/meshes/finger.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/hand.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link0.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link1.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link2.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link3.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link4.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link5.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link6.h5 +0 -0
- robotic/rai-robotModels/panda/meshes/link7.h5 +0 -0
- robotic/rai-robotModels/panda/panda.g +10 -10
- robotic/rai-robotModels/panda/panda_arm_hand_conv.g +24 -0
- robotic/rai-robotModels/panda/panda_arm_hand_conv.yml +24 -0
- robotic/rai-robotModels/panda/panda_clean.g +21 -45
- robotic/rai-robotModels/panda/panda_gripper.g +5 -7
- robotic/rai-robotModels/panda/panda_withoutCollisionModels.g +3 -11
- robotic/rai-robotModels/pr2/meshes/base.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/base_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/caster.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/elbow_flex.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/elbow_flex_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/forearm.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/forearm_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/forearm_roll.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/gripper_palm.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/gripper_palm_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/head_pan.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/head_pan_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/head_tilt.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/head_tilt_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger_tip.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/l_finger_tip_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_lift.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_lift_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_pan.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/shoulder_pan_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/tilting_hokuyo.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/tilting_hokuyo_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/torso_lift.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/torso_lift_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm_roll.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/upper_arm_roll_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/wheel.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/wheel_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/wrist_color.png +0 -0
- robotic/rai-robotModels/pr2/meshes/wrist_flex.h5 +0 -0
- robotic/rai-robotModels/pr2/meshes/wrist_roll.h5 +0 -0
- robotic/rai-robotModels/pr2/pr2.g +12 -12
- robotic/rai-robotModels/pr2/pr2_clean.g +122 -118
- robotic/rai-robotModels/pr2/pr2_conv.g +218 -0
- robotic/rai-robotModels/pr2/pr2_modifications.g +2 -2
- robotic/rai-robotModels/ranger/meshes/ranger_mini3.h5 +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.h5 +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.h5 +0 -0
- robotic/rai-robotModels/ranger/ranger.g +8 -8
- robotic/rai-robotModels/ranger/ranger_clean.g +5 -5
- robotic/rai-robotModels/ranger/ranger_mini_conv.g +14 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_base_link.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_finger.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_knuckle.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_finger.h5 +0 -0
- robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_knuckle.h5 +0 -0
- robotic/rai-robotModels/robotiq/robotiq.g +2 -2
- robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml +19 -0
- robotic/rai-robotModels/robotiq/robotiq_clean.g +16 -16
- robotic/rai-robotModels/scenarios/ballFinger.g +2 -2
- robotic/rai-robotModels/scenarios/liftRing.g +2 -2
- robotic/rai-robotModels/scenarios/pandaFloatingGripper.g +1 -1
- robotic/rai-robotModels/scenarios/pandaSingle.g +1 -1
- robotic/rai-robotModels/scenarios/panda_fixRobotiq.g +3 -3
- robotic/rai-robotModels/tests/arm.g +18 -19
- robotic/rai-robotModels/tests/compound.g +3 -6
- robotic/rai-robotModels/ur10/meshes/base.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/forearm.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/shoulder.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/upperarm.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/wrist1.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/wrist2.h5 +0 -0
- robotic/rai-robotModels/ur10/meshes/wrist3.h5 +0 -0
- robotic/rai-robotModels/ur10/ur10.g +2 -2
- robotic/rai-robotModels/ur10/ur10_clean.g +8 -8
- robotic/rai-robotModels/ur10/ur10_conv.g +17 -0
- robotic/ry-h5info +3 -12
- robotic/ry-test +5 -4
- robotic/ry-urdfConvert.py +74 -0
- robotic/ry-view +28 -6
- robotic/src/cleanMeshes.py +59 -0
- robotic/src/h5_helper.py +46 -0
- robotic/src/h5_helper.py~ +42 -0
- robotic/src/mesh_helper.py +395 -0
- robotic/{rai-robotModels/ranger/meshes/cleanMeshes.mlx → src/meshlabFilters.mlx} +0 -3
- robotic/src/mujoco_io.py +242 -0
- robotic/src/urdf_io.py +237 -0
- robotic/src/yaml_helper.py +29 -0
- robotic/version.py +1 -1
- robotic-0.3.4.dev5.data/scripts/ry-h5info +23 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-test +5 -4
- robotic-0.3.4.dev5.data/scripts/ry-urdfConvert.py +74 -0
- robotic-0.3.4.dev5.data/scripts/ry-view +46 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/METADATA +18 -22
- robotic-0.3.4.dev5.dist-info/RECORD +386 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/WHEEL +1 -1
- robotic/nlp.py +0 -113
- robotic/rai-robotModels/baxter/baxter.g +0 -49
- robotic/rai-robotModels/baxter/baxter_clean.g +0 -116
- robotic/rai-robotModels/baxter/baxter_clean2.g +0 -205
- robotic/rai-robotModels/baxter/baxter_clean3.g +0 -223
- robotic/rai-robotModels/baxter/baxter_description/meshes/base/PEDESTAL.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/base/pedestal_link_collision.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/head/H0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/head/H1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/lower_elbow/E1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/lower_forearm/W1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/lower_shoulder/S1.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/torso/base_link.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/torso/base_link_collision.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/upper_elbow/E0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/upper_forearm/W0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/upper_shoulder/S0.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_description/meshes/wrist/W2.ply +0 -0
- robotic/rai-robotModels/baxter/baxter_new.g +0 -53
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/electric_gripper_base.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/extended_narrow.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/half_round_tip.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/electric_gripper/fingers/paddle_tip.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/pneumatic_gripper/pneumatic_gripper_base.ply +0 -0
- robotic/rai-robotModels/baxter/rethink_ee_description/meshes/pneumatic_gripper/pneumatic_gripper_w_cup.ply +0 -0
- robotic/rai-robotModels/g1/meshes/head_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_elbow_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_index_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_index_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_middle_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_middle_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_palm_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_thumb_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_thumb_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hand_thumb_2_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_knee_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_roll_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/logo_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis.ply +0 -0
- robotic/rai-robotModels/g1/meshes/pelvis_contour_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_elbow_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_index_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_index_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_middle_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_middle_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_palm_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_thumb_0_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_thumb_1_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hand_thumb_2_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_knee_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_roll_rubber_hand.ply +0 -0
- robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_L_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_L_rod_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_R_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_constraint_R_rod_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/torso_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_constraint_L.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_constraint_R.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_roll_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_support_link.ply +0 -0
- robotic/rai-robotModels/g1/meshes/waist_yaw_link.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/finger.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/hand.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link0.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link1.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link2.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link3.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link4.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link5.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link6.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/collision/link7.stl +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/HOWTO.sh +0 -10
- robotic/rai-robotModels/panda/franka_description/meshes/visual/HOWTO2.sh +0 -7
- robotic/rai-robotModels/panda/franka_description/meshes/visual/convMeshes.mlx +0 -38
- robotic/rai-robotModels/panda/franka_description/meshes/visual/finger.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/hand.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link0.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link1.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link2.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link3.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link4.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link5.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link6.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/link7.ply +0 -0
- robotic/rai-robotModels/panda/franka_description/meshes/visual/script.mlx +0 -28
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/base.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/base_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/caster.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/caster_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/pr2_wheel.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/base_v0/wheel.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/forearm.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_flex.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_roll.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/forearm_v0/wrist_roll_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/gripper_palm.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/l_finger.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/gripper_v0/l_finger_tip.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_pan.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_pan_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_tilt.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/head_v0/head_tilt_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_lift.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_pan.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/shoulder_yaw.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/upper_arm_roll.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/shoulder_v0/upper_arm_roll_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/hok_tilt.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/tilting_hokuyo.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/tilting_laser_v0/tilting_hokuyo_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso_lift.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/torso_v0/torso_lift_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/elbow_flex.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/forearm_roll_L.ply +0 -0
- robotic/rai-robotModels/pr2/pr2_description/meshes/upper_arm_v0/upper_arm.ply +0 -0
- robotic/rai-robotModels/ranger/meshes/cleanMeshes.sh +0 -8
- robotic/rai-robotModels/ranger/meshes/ranger_mini3.ply +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.ply +0 -0
- robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_base_link_x.ply +0 -10
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_inner_finger.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_inner_knuckle.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_finger.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_outer_knuckle.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_arg2f_85_pad.ply +0 -0
- robotic/rai-robotModels/robotiq/meshes/visual/robotiq_gripper_coupling.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Base.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Forearm.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Shoulder.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/UpperArm.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist1.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist2.ply +0 -0
- robotic/rai-robotModels/ur10/ur_description/meshes/ur10/visual/Wrist3.ply +0 -0
- robotic/ry-urdf2rai +0 -222
- robotic/ry-urdf2yaml +0 -250
- robotic-0.2.9.dev1.data/scripts/ry-h5info +0 -32
- robotic-0.2.9.dev1.data/scripts/ry-urdf2rai +0 -222
- robotic-0.2.9.dev1.data/scripts/ry-urdf2yaml +0 -250
- robotic-0.2.9.dev1.data/scripts/ry-view +0 -24
- robotic-0.2.9.dev1.dist-info/RECORD +0 -421
- /robotic/include/rai/{Geo → Algo}/Lewiner/LookUpTable.h +0 -0
- /robotic/include/rai/Geo/{assimpInterface.h → i_assimp.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/Optim/{opt-ipopt.h → i_Ipopt.h} +0 -0
- /robotic/rai-robotModels/robotiq/meshes/{visual/robotiq_ft300.ply → robotiq_ft300.ply} +0 -0
- /robotic/{import.py → src/__init__.py} +0 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-bot +0 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-info +0 -0
- {robotic-0.2.9.dev1.data → robotic-0.3.4.dev5.data}/scripts/ry-meshTool +0 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/licenses/LICENSE +0 -0
- {robotic-0.2.9.dev1.dist-info → robotic-0.3.4.dev5.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotic
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.4.dev5
|
|
4
4
|
Summary: Robotic Control Interface & Manipulation Planning Library
|
|
5
5
|
Home-page: https://github.com/MarcToussaint/robotic/
|
|
6
6
|
Author: Marc Toussaint
|
|
@@ -36,8 +36,9 @@ Lab](https://argmin.lis.tu-berlin.de/)) operate our robots.
|
|
|
36
36
|
|
|
37
37
|
* The pip package was compiled for python3.8 .. 3.12, and most of the dependencies statically linked. A few are still loaded dynamically, which requires installing on Ubuntu:
|
|
38
38
|
|
|
39
|
-
sudo apt install liblapack3 freeglut3-dev libglu1-mesa libfreetype6 fonts-ubuntu python3 python3-pip
|
|
40
|
-
#latest Ubuntu:
|
|
39
|
+
sudo apt install liblapack3 freeglut3-dev libglu1-mesa libxrandr2 libfreetype6 fonts-ubuntu python3 python3-pip
|
|
40
|
+
#in latest Ubuntu also:
|
|
41
|
+
cd /usr/lib/x86_64-linux-gnu/ && sudo ln -s libglut.so.3.12 libglut.so.3
|
|
41
42
|
|
|
42
43
|
* Pip install:
|
|
43
44
|
|
|
@@ -46,35 +47,30 @@ Lab](https://argmin.lis.tu-berlin.de/)) operate our robots.
|
|
|
46
47
|
* Tests:
|
|
47
48
|
|
|
48
49
|
ry-info
|
|
49
|
-
|
|
50
50
|
ry-test
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
ry-view `python3 -m site --user-site`/robotic/rai-robotModels/scenarios/pandaSingle.g
|
|
55
|
-
|
|
56
|
-
* Run all tutorial notebooks as a test and showcase (takes long):
|
|
52
|
+
* Run all tutorial notebooks as a test and showcase:
|
|
57
53
|
|
|
58
54
|
pip install jupyter nbconvert matplotlib ipympl
|
|
59
55
|
git clone https://github.com/MarcToussaint/rai-tutorials.git
|
|
60
56
|
cd rai-tutorials
|
|
61
57
|
make run -j1
|
|
58
|
+
make run_demos -j1
|
|
62
59
|
|
|
63
|
-
*
|
|
60
|
+
* Test in a clean ubuntu:latest docker (starting with `xhost +local:root && docker run -it --env="DISPLAY" --network host ubuntu:latest`):
|
|
64
61
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
cd /usr/lib/x86_64-linux-gnu/ &&
|
|
68
|
-
cd
|
|
69
|
-
mkdir -p ~/.local
|
|
62
|
+
apt update
|
|
63
|
+
env DEBIAN_FRONTEND=noninteractive apt install --yes liblapack3 freeglut3-dev libglu1-mesa libxrandr2 libfreetype6 fonts-ubuntu python3 python3-venv
|
|
64
|
+
cd /usr/lib/x86_64-linux-gnu/ && ln -s libglut.so.3.12 libglut.so.3
|
|
70
65
|
python3 -m venv ~/.local/venv
|
|
71
66
|
source ~/.local/venv/bin/activate
|
|
72
67
|
pip install robotic numpy
|
|
68
|
+
ry-info
|
|
73
69
|
ry-test
|
|
74
70
|
|
|
75
71
|
## Installation from source with real Franka & realsense support
|
|
76
72
|
|
|
77
|
-
This assumes a standard Ubuntu
|
|
73
|
+
This assumes a standard Ubuntu 24.04 (or 22.04, 20.04) machine.
|
|
78
74
|
|
|
79
75
|
* Install Ubuntu and python packages:
|
|
80
76
|
|
|
@@ -85,7 +81,7 @@ This assumes a standard Ubuntu 22.04 (or 20.04, 18.04) machine.
|
|
|
85
81
|
libx11-dev libglu1-mesa-dev libglfw3-dev libglew-dev freeglut3-dev libpng-dev libassimp-dev \
|
|
86
82
|
python3-dev python3 python3-pip
|
|
87
83
|
|
|
88
|
-
python3 -m pip install
|
|
84
|
+
python3 -m pip install numpy pybind11 pybind11-stubgen
|
|
89
85
|
|
|
90
86
|
* Install some external libs by source. You can skip librealsense and
|
|
91
87
|
libfranka if you disable below. (To speed up compilation, e.g., set
|
|
@@ -100,14 +96,14 @@ This assumes a standard Ubuntu 22.04 (or 20.04, 18.04) machine.
|
|
|
100
96
|
./install.sh libann
|
|
101
97
|
./install.sh physx
|
|
102
98
|
./install.sh librealsense
|
|
103
|
-
./install.sh libfranka ## for OLD frankas instead: ./install.sh -v 0.
|
|
99
|
+
./install.sh libfranka ## for OLD frankas instead: ./install.sh -v 0.8.0 libfranka (and you need to patch it...)
|
|
104
100
|
|
|
105
101
|
* Clone, compile and install this repo (note the USE_REALSENSE and USE_LIBFRANKA options!):
|
|
106
102
|
|
|
107
103
|
cd $HOME/git
|
|
108
104
|
git clone --recursive https://github.com/MarcToussaint/robotic.git
|
|
109
105
|
cd robotic
|
|
110
|
-
cp
|
|
106
|
+
cp _make/CMakeLists-ubuntu.txt CMakeLists.txt
|
|
111
107
|
export PY_VERSION=`python3 -c "import sys; print(str(sys.version_info[0])+'.'+str(sys.version_info[1]))"`
|
|
112
108
|
cmake -DPY_VERSION=$PY_VERSION -DUSE_REALSENSE=ON -DUSE_LIBFRANKA=ON . -B build
|
|
113
109
|
make -C build _robotic install
|
|
@@ -153,8 +149,8 @@ make wheels
|
|
|
153
149
|
|
|
154
150
|
* Outside of docker, install locally with pip or push wheels to pypi
|
|
155
151
|
```
|
|
156
|
-
python3.8 -m pip install
|
|
157
|
-
python3.10 -m pip install
|
|
152
|
+
python3.8 -m pip install dist/robotic-*cp38*.whl --force-reinstall
|
|
153
|
+
python3.10 -m pip install dist/robotic-*cp310*.whl --force-reinstall
|
|
158
154
|
# or
|
|
159
155
|
twine upload dist/*.whl --repository robotic
|
|
160
156
|
```
|
|
@@ -165,7 +161,7 @@ twine upload dist/*.whl --repository robotic
|
|
|
165
161
|
|
|
166
162
|
* Get the binary lib by installing the pip package:
|
|
167
163
|
```
|
|
168
|
-
python3 -m pip install
|
|
164
|
+
python3 -m pip install robotic
|
|
169
165
|
```
|
|
170
166
|
* Get the sources by cloning this repo recursively:
|
|
171
167
|
```
|
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
robotic/DataGen.pyi,sha256=qDQjATpbIgFvOrWk7F3ZTVbOuyXjT5nwHxrsRfGxWRU,3716
|
|
2
|
+
robotic/__init__.py,sha256=h8LG-Fle7lAtkJ-ZE1u5kWTyuayhugNxtFX9T_JKQGY,476
|
|
3
|
+
robotic/_robotic.pyi,sha256=9iikr099INBKvTKKMpFs8RyoNtGY9LhMtdmhliQmfk4,78945
|
|
4
|
+
robotic/_robotic.so,sha256=ibwmkMZeIHHRT69KFrZ4VQ_Easvfz_qdV1Sw9v4I6lk,1296264
|
|
5
|
+
robotic/algo.pyi,sha256=hAN3ZPvf4VnhcdoRP-EecAwUge_JMxovJ9lAOIgWX2Q,730
|
|
6
|
+
robotic/librai.so,sha256=tdL9loTpVn9bDvf2Lt9J7ExJ-CLb8knRb4T4xepTN3A,39051040
|
|
7
|
+
robotic/manipulation.py,sha256=0B7UzU9J7b4f19thz67TbvknoncxffQEMHSBB6ez1Jg,22279
|
|
8
|
+
robotic/meshTool,sha256=aXkFxQabKsrmfXfa_qGizZR3W5VL9uAA8mL4WHo20AM,56288
|
|
9
|
+
robotic/mujoco-import.py,sha256=8eC8ldlFwnYQfqII3FVdWEQ7zd1PkSdAF-oyryIQtkY,231
|
|
10
|
+
robotic/render.py,sha256=OE1dvyWHD7Oyzk4wlhXZ7m3v3xxa3zAL5_LCV1RgJXk,4662
|
|
11
|
+
robotic/ry-bot,sha256=nd2yWqaDsFbwAmr7ySdOjq06ek0E1FMHTxPRO-7e2Q8,2294
|
|
12
|
+
robotic/ry-h5info,sha256=zfGJiyYJIVw1QWWQErJIvaKA1oVJuKwllafWRSoZFFk,463
|
|
13
|
+
robotic/ry-info,sha256=GRj4oMCgTCGRF2wxtYxiFvETROB92rwwtUFb6S_Eo7g,439
|
|
14
|
+
robotic/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
15
|
+
robotic/ry-test,sha256=MYMwRyOwCDxsgUwSPj9etNRSKJWvc6jwVWUJNkxlw-U,979
|
|
16
|
+
robotic/ry-urdfConvert.py,sha256=8Efnq3PU202rrZrVEZiGwzFOJdvrLjTJ2q-gnY6-tiU,2556
|
|
17
|
+
robotic/ry-view,sha256=Ww8tKRTCAmp8RChUP2kbs6dWFt4-s8_BO7uEVt6CBWM,1268
|
|
18
|
+
robotic/test.pyi,sha256=vVxwRSerjUG4bpB7pIhof7ZatrBqwg3Bj5voywa-YTI,917
|
|
19
|
+
robotic/version.py,sha256=mPDEgt8zwjZb4Y2Pgmd5coWx2eEBBrrkVe_TnXNnXt8,27
|
|
20
|
+
robotic/include/rai/Algo/MLcourse.h,sha256=TGkAJWC5ollGfPw0-gcYL0TZeDJiHtWFzkHSMK8_lqU,1828
|
|
21
|
+
robotic/include/rai/Algo/RidgeRegression.h,sha256=VXiv6-xr3j--CN7DJTzUg9Xb49zV9FZ9dwzxP1CmcPM,3730
|
|
22
|
+
robotic/include/rai/Algo/SplineCtrlFeed.h,sha256=yILBoUh9Ce0YtzGVZeAKmdUqsf0xeCGjXGC8bXNzZ3o,3339
|
|
23
|
+
robotic/include/rai/Algo/ann.h,sha256=XCQSzJIg_cPzZBKgIJMuHvBLc3ayD1FzSFqh2s_1TnM,1294
|
|
24
|
+
robotic/include/rai/Algo/dataNeighbored.h,sha256=NfwS4xJElLxX8t5cYY3xiTLXgJyMsHoaD-J0kT2GXqE,1208
|
|
25
|
+
robotic/include/rai/Algo/eigenValues.h,sha256=U76I5DT_WO_o7k-W3qYt2exc0WCpw4yYjR8WCqxGBv4,942
|
|
26
|
+
robotic/include/rai/Algo/gaussianProcess.h,sha256=_U9nv_mOn72_7j6_YlhRC64wFolFgmuUoD1blnKngzs,10504
|
|
27
|
+
robotic/include/rai/Algo/gpOp.h,sha256=LRUaezbPfZefJoS0xDfnwjnnIRtZ9JPTMDq1b7SvEdU,4221
|
|
28
|
+
robotic/include/rai/Algo/hungarian.h,sha256=RcO0vEzy638pOCqKNv_xWJvOvB1XSAYYjj3CsNbZy_0,796
|
|
29
|
+
robotic/include/rai/Algo/kalman.h,sha256=c3i6ebYHZtyT5ReTmpJVx8aJ26JWLymqK_QRDY4-7GU,744
|
|
30
|
+
robotic/include/rai/Algo/marching_cubes.h,sha256=dvk9PfTP4xBFMIcS_4tRVpMJaMH90-vi-a52xArEQ0U,145
|
|
31
|
+
robotic/include/rai/Algo/minimalSpanningTree.h,sha256=56zTSWdMi4TMjtQDVv7tHo4ahivfidTXWN4zp9NX-Jw,512
|
|
32
|
+
robotic/include/rai/Algo/priorityQueue.h,sha256=nF-5_eSbGjXMmY2K3SpD-Hxwb3bhFA1ilr6IBsFq87Q,1938
|
|
33
|
+
robotic/include/rai/Algo/rungeKutta.h,sha256=2Lfv8wzt2VSPYm2JG0gMAGsQYrd4yIx8sjv8GhkpXus,1765
|
|
34
|
+
robotic/include/rai/Algo/spline.h,sha256=mNi6ktREVFYkdJWPZaCrnvCW3AuZyMAsktYkRz3Ywxo,4269
|
|
35
|
+
robotic/include/rai/Algo/trilinear.h,sha256=RhTO8FyB-lO4qfoOZgZPyrZo_2XMaVfBZ8BIETomvMc,200
|
|
36
|
+
robotic/include/rai/Algo/Lewiner/LookUpTable.h,sha256=0MRA9ioCeKoMhXYqtxaOPHTMwR_GkmyDFx2mgpSvs9s,158933
|
|
37
|
+
robotic/include/rai/Algo/Lewiner/MarchingCubes.h,sha256=pXvUdDddJOtHVocQu4a8NSfMgGrgENqO4VTz3hzkmn4,12754
|
|
38
|
+
robotic/include/rai/Control/CtrlMsgs.h,sha256=61lxkvpcVB2ZAL7qmB35CJ1KkhZUB27lUJ4ZMiFH0Co,2406
|
|
39
|
+
robotic/include/rai/Control/CtrlObjective.h,sha256=fC-6cS0X0RR_7ooFm1xnAXlN2mgyF26qKfTjomUK45U,2591
|
|
40
|
+
robotic/include/rai/Control/CtrlSet.h,sha256=o7u8N9ZSoMbiDR3TGKDjfIarIP1JAw0SHMFL18t1fv0,1404
|
|
41
|
+
robotic/include/rai/Control/CtrlSolver.h,sha256=fwlXJcgHl01FL1n6HR-dKgEZKp8mYOhC085vb1yw4l0,1100
|
|
42
|
+
robotic/include/rai/Control/CtrlSolvers.h,sha256=gxr_aTn-dyV1J6HxDSX8SVrqIPm14oxOkXx5-OGfamo,3094
|
|
43
|
+
robotic/include/rai/Control/CtrlTargets.h,sha256=FRjAi9KwDL2-5ziKYP5g_-uR234SdPw70TNZbYn3QVg,5475
|
|
44
|
+
robotic/include/rai/Control/RTControllerSimulation.h,sha256=iDpVRfivTlGS7DVWxVrS-xzCdVWrag1pUHsczZEb0po,1254
|
|
45
|
+
robotic/include/rai/Control/SecMPC.h,sha256=VpQBxibL9jI6bG31sm4U95vfJlYJDJxIqBDahppixN8,1916
|
|
46
|
+
robotic/include/rai/Control/ShortPathMPC.h,sha256=bZQ9I7fklqPOk-PwCTvi3xgnLVdVBoJ2j5i1iWwNxfE,938
|
|
47
|
+
robotic/include/rai/Control/TimingMPC.h,sha256=Jkj9Hpc4Yd2QIlqtafLT3mvlU0ZCFVCcoi4-ZIwl18Y,1698
|
|
48
|
+
robotic/include/rai/Control/WaypointMPC.h,sha256=Pa36-K1yMxszD9EFuLfLayaOe9pTK8cm1qAALLifdeM,811
|
|
49
|
+
robotic/include/rai/Control/control.h,sha256=_dJefR6WzvdQMaJIYIBuYP8NwoKgNeG4owhQWPxWXzo,765
|
|
50
|
+
robotic/include/rai/Control/ctrlMsg.h,sha256=uGuwAaKM1UsQW3hTNv4AihW99MJMuow4cxa9-AU9AmA,1121
|
|
51
|
+
robotic/include/rai/Control/timingOpt.h,sha256=Ne_IH8QuFCID0Sy88LS5i3qkp1nL1FbIgREqSjRctz0,2045
|
|
52
|
+
robotic/include/rai/Core/array.h,sha256=EHTAXBTiC-In_kukQv1DKn-Pm8Bmt4JbXSdkG1mH5mM,26889
|
|
53
|
+
robotic/include/rai/Core/array.ipp,sha256=uxBbBXNPVsy5xEjPe4MohkS-tJPO_SXNo7xXFRe6Z-Y,62968
|
|
54
|
+
robotic/include/rai/Core/arrayDouble.h,sha256=hkDMhYu7rxWkczdhCh7Zh1h7_bLN8yFkgd6cy8t-11g,29467
|
|
55
|
+
robotic/include/rai/Core/defines.h,sha256=2POkrvkqqwX9ZZBEEgn-cZrnGBI6PORZiobujdFF39o,6877
|
|
56
|
+
robotic/include/rai/Core/graph.h,sha256=vV4Cu8wCTz3zQZPK_a1xKVjbWGNhX4nuEGZ2vq6zhCE,20373
|
|
57
|
+
robotic/include/rai/Core/h5.h,sha256=cfs8cew5QYpOxbWFZHV9TXVh5_dEJdFF1-aGZVR54EY,1162
|
|
58
|
+
robotic/include/rai/Core/thread.h,sha256=iYk7_OTdOJFazCqoW6tpcdWe1UKFQrbGqM6DwZuTBmI,18303
|
|
59
|
+
robotic/include/rai/Core/util.h,sha256=Wpv_lSPeh7IsMJgkSHHQdYkLmLPIJbg6F6L4H1KU1yU,18914
|
|
60
|
+
robotic/include/rai/Core/util.ipp,sha256=soCVdpzWTpLL9i6rilFPNGozHZP40yhkmuXul7gHC7o,2157
|
|
61
|
+
robotic/include/rai/Core/lapack/blaswrap.h,sha256=jl8W6GwBGMiU-ND9ILeKqWlIvryw7AsIydPUCQGT_ew,3750
|
|
62
|
+
robotic/include/rai/Core/lapack/cblas.h,sha256=4bSmMzZ4idIPlmcwjw5HuwY1cs5RU73ZwmfydSpaBdk,32367
|
|
63
|
+
robotic/include/rai/Core/lapack/clapack.h,sha256=8rLteHzzGpKhJZXv4Eom9mk8lzbwRwjJuIqJuR1eePc,343373
|
|
64
|
+
robotic/include/rai/Core/lapack/lapacke.h,sha256=cpP6MEjkLGyhS8mV6ysRlTVeUam6f8zBgFUJB1phuwM,1045408
|
|
65
|
+
robotic/include/rai/DataGen/rndStableConfigs.h,sha256=RdAD1kDsKic7WwBvLtFyIVnGKdtGqhxekBKjoeeUd40,403
|
|
66
|
+
robotic/include/rai/DataGen/shapenetGrasps.h,sha256=VA7keWDLfxTj4XvevzV7h1ApJsgCxPnKm-LhOXPLDZY,1618
|
|
67
|
+
robotic/include/rai/Geo/depth2PointCloud.h,sha256=_Wu41sTAerFSqa6ki5WhilttoF_VzcCqEyw1KC4TtKI,1245
|
|
68
|
+
robotic/include/rai/Geo/geo.h,sha256=IaCmTX1foVv0ektPCV-tr4PiU7igIQS5EZZMobZGXqM,14907
|
|
69
|
+
robotic/include/rai/Geo/i_assimp.h,sha256=2Jg7v2GZ83nz4kkgPLzbSWTIBmL9nZg-LhMlWcjiF_o,1055
|
|
70
|
+
robotic/include/rai/Geo/i_fcl.h,sha256=d89JFW3WKI64gOdQSGs6uFdE7NcMavNg89BMHhzMDac,984
|
|
71
|
+
robotic/include/rai/Geo/mesh.h,sha256=wGT463J0LW_LsJm7lFoU-INqmcro5_hj3Q_jXRI3QrM,6873
|
|
72
|
+
robotic/include/rai/Geo/pairCollision.h,sha256=SnXp_vdiiFVan2OxgyPZrXpNKCO3_R8EHX8bfP9zkyo,4434
|
|
73
|
+
robotic/include/rai/Geo/qhull.h,sha256=dRAAHIdvujPPW1fXW4hXMjgixpBDajDg-y_OX1JMi_0,1890
|
|
74
|
+
robotic/include/rai/Geo/signedDistanceFunctions.h,sha256=mM4oi6ai1bRSmFrZkBa40mqwjpVvfV193jMkAuN0xh4,4815
|
|
75
|
+
robotic/include/rai/Geo/stbImage.h,sha256=R5MRPs3KLL-GOipzAN_jdV-pdlBCTkUFaA5LnYEIElw,100
|
|
76
|
+
robotic/include/rai/Geo/stb_image.h,sha256=3GREaSd1mttRQgl4onz7bVjl5FGNMROXlWCXoK94G6g,251785
|
|
77
|
+
robotic/include/rai/Geo/testProblems_Geo.h,sha256=PAO_y2X6KFjbfpCBoy59GkVq_A82ovg-stLO3EJ7iuE,927
|
|
78
|
+
robotic/include/rai/Geo/GJK/gjk.h,sha256=L4vvyYX7RYQLt8003G3ReMRhFu8MWsJZckeI-d7hzLc,15006
|
|
79
|
+
robotic/include/rai/Geo/ccd_rai/alloc.h,sha256=hBuAht1y7f0JXuYGi-1od8NYDn8nVMkK1hJwqMmEy6E,1349
|
|
80
|
+
robotic/include/rai/Geo/ccd_rai/ccd.h,sha256=vd69dAd8mUpcI1FXekAfLzVtSXCRIdIqj-80KiAoRpk,5817
|
|
81
|
+
robotic/include/rai/Geo/ccd_rai/compiler.h,sha256=vh55iyaefQ6ttft5J3gwrMDyhuVhDjGv9CrtGfNw3hY,1942
|
|
82
|
+
robotic/include/rai/Geo/ccd_rai/config.h,sha256=AOH9sG_D6XiuL5V4E61LJqVZBmkd_WPCQsUhLDzNyJ8,101
|
|
83
|
+
robotic/include/rai/Geo/ccd_rai/dbg.h,sha256=8HRj5eTAl9n2QTqgTv5q07-aJI9QDQ1pKC6OUM_t4YQ,1713
|
|
84
|
+
robotic/include/rai/Geo/ccd_rai/list.h,sha256=UQCJ3Qynhch1WYlzVaxDJwFTbwFCEl8bJJ0v4upnKXw,3741
|
|
85
|
+
robotic/include/rai/Geo/ccd_rai/polytope.h,sha256=wsFlQct6zya7JKbl2nCV2dwJKnMvEiOr1YUxQM7pYMc,8462
|
|
86
|
+
robotic/include/rai/Geo/ccd_rai/quat.h,sha256=TNrYpdD7tvCgrj7BVSE5B5cdx5ZIqO-53_9vjob18Is,5609
|
|
87
|
+
robotic/include/rai/Geo/ccd_rai/simplex.h,sha256=6zjXCyaO2NH387PQnquaHCPAZfd-XN93PQ-qPfqCq9U,2745
|
|
88
|
+
robotic/include/rai/Geo/ccd_rai/support.h,sha256=B9KBuOctG7Hx-e1TXpnkU667WVH7SP4Q4RMATno5vMI,1422
|
|
89
|
+
robotic/include/rai/Geo/ccd_rai/vec3.h,sha256=ARkNnQz8yWf_Cs3vgt22zclN1cLeGmwWPTVHVpvmfEA,8115
|
|
90
|
+
robotic/include/rai/Geo/ply/ply.h,sha256=_oAXgQ5CyHvUMtPDBxYtOBbnKDVoZf5PKMswisqvOeI,9384
|
|
91
|
+
robotic/include/rai/Geo/vhacd/VHACD.h,sha256=QT_cT6PPzec_mxKODsS9cJGr6nBt6S8cUJF7dCeBQCc,258343
|
|
92
|
+
robotic/include/rai/Gui/RenderData.h,sha256=DHe6UTlHeJeGBRvDjHSeAFqnvu-uqmhdEd2ja1L5NNA,5033
|
|
93
|
+
robotic/include/rai/Gui/color.h,sha256=4ElBkpWgwBuqQEFD4Mdhv_afZE4ul6NkptwFQ2oDS5o,2596
|
|
94
|
+
robotic/include/rai/Gui/opengl.h,sha256=NipYBJ40hqC6K7xqmB0UYdU4rX_zQgnh7rsi5_Fg0-8,9101
|
|
95
|
+
robotic/include/rai/Gui/plot.h,sha256=Y_X9-V6IExvFafNzkG88O2wUGDCCnarUzpi5b0DKBcQ,2346
|
|
96
|
+
robotic/include/rai/KOMO/PathSmoother.h,sha256=y-t3yVEZvxfQIs8_EA-WI7FJ_RzfbG8TEfdiNAruuUI,813
|
|
97
|
+
robotic/include/rai/KOMO/komo.h,sha256=zLHRhFnmkM_OGOzMNwl8xZCxHbB2cOAgLb8UJgfe26I,13485
|
|
98
|
+
robotic/include/rai/KOMO/komo_NLP.h,sha256=GX4bxbAfbV_z42XrLmS0drLPcsIZiioRkWhF3UuhZno,3681
|
|
99
|
+
robotic/include/rai/KOMO/manipTools.h,sha256=wZdCohK4g5Jzq2bdIOXmRqaCVQNTK5k-FC20ViUXi98,4620
|
|
100
|
+
robotic/include/rai/KOMO/objective.h,sha256=Cl4-KjheRMNWoh_xFas5tLWMKSMlJf-HLDihfqvfcSw,2704
|
|
101
|
+
robotic/include/rai/KOMO/pathTools.h,sha256=w0Wq6BGLBxG1LAZQBDmmPWTXzwxW3RHj2EX1cm92WeE,3288
|
|
102
|
+
robotic/include/rai/KOMO/skeleton.h,sha256=NPaMfUMC_sUd3AjlLHTFpxWH4QtnKP_zzvHb2YvEigI,4437
|
|
103
|
+
robotic/include/rai/KOMO/skeletonSymbol.h,sha256=mrPqRn_1i4PuqbkQBhKEYc5WPEGqPjBN6TvwZxZ5e7A,1261
|
|
104
|
+
robotic/include/rai/KOMO/splined.h,sha256=G_fu9gXCboJLkwhwu77F6F3Ei6deqzbvkgP8r9kiNL8,903
|
|
105
|
+
robotic/include/rai/KOMO/switch.h,sha256=teNNnHFe4h9W5rLlL3TFBsq97ni-RUEhcxw4uVPYR1g,1850
|
|
106
|
+
robotic/include/rai/KOMO/testProblems_KOMO.h,sha256=OH1zWcD-hIXsml2RkLIvl5eyi69WuLKqWPdqWjWWFI0,2805
|
|
107
|
+
robotic/include/rai/Kin/F_LeapCost.h,sha256=wNAUNgAJjLirMurF67BlFLHtjyuXy1EPr--9XLBe6Wk,556
|
|
108
|
+
robotic/include/rai/Kin/F_collisions.h,sha256=Atq9LPVOkEuMF-kSHk78cGjaJYwDIbvrTxHmLBJw3yk,2092
|
|
109
|
+
robotic/include/rai/Kin/F_forces.h,sha256=zs1hpVt483wKDJaATlra4H331gEDIW6xNqJ10w1Gh_M,6719
|
|
110
|
+
robotic/include/rai/Kin/F_geometrics.h,sha256=2yPFycgcmZjXLezxoRL_aaetrZusDgtGyx7GQbfbRrI,2146
|
|
111
|
+
robotic/include/rai/Kin/F_operators.h,sha256=Nxdk1dPSoN7lW0A5Ns-BSJ_YXFft4iZi9RDOmVn3BJ0,1608
|
|
112
|
+
robotic/include/rai/Kin/F_pose.h,sha256=QlZnpS4ZTNFBZlH-lpe6sTt2gdbxbjsZTHPqk0T_4AI,5252
|
|
113
|
+
robotic/include/rai/Kin/F_qFeatures.h,sha256=x4cfFGaVBQSmj9ZetcC25qiGxnvfNMPsWh9zbPa5owE,2212
|
|
114
|
+
robotic/include/rai/Kin/cameraview.h,sha256=VTt5Y-SmIZ-f9YCYdFZGhpRP2kW2jBXag2WbDMLkosk,2399
|
|
115
|
+
robotic/include/rai/Kin/dof_direction.h,sha256=9tio7VXxXAv-ZAxA6QskjD5rMH2LHU4hIGAG6TC0RaY,831
|
|
116
|
+
robotic/include/rai/Kin/dof_forceExchange.h,sha256=LcqbyfFYI2CyNoiJlY1WxkXRgsMfSmrV3PuynG9kdCA,1952
|
|
117
|
+
robotic/include/rai/Kin/dof_particles.h,sha256=PboLndC5a5extUKAfUPAIsJEGTTs6_ACDgnLrei2s8g,790
|
|
118
|
+
robotic/include/rai/Kin/dof_path.h,sha256=XRPj3bH90JUIdkTS4jxwbAb5n9yAsRoemWUWUV1xDtQ,792
|
|
119
|
+
robotic/include/rai/Kin/feature.h,sha256=6YQbXa4DGg3QQsUCCaf3WnUlxyQ26CkUbmYhTawAT0U,3946
|
|
120
|
+
robotic/include/rai/Kin/featureSymbols.h,sha256=JVXbXoW43PlEGOgwHPpULlbXUQzkl79F1EFnfl-0wyk,1984
|
|
121
|
+
robotic/include/rai/Kin/frame.h,sha256=-V5aix_BM-sK4miDcj0XMU5G682vm_pqJOOq4Udqs_M,15004
|
|
122
|
+
robotic/include/rai/Kin/i_Bullet.h,sha256=y8aApXpXY4bD5QN_WmDAU2vNEvvbdo1Rd4zY7qo-FKE,1970
|
|
123
|
+
robotic/include/rai/Kin/i_Feather.h,sha256=o-hOJA8UcmIBKx_qPzoG9R7fxzz-4zhBNMBmBTK21oA,1627
|
|
124
|
+
robotic/include/rai/Kin/i_Ode.h,sha256=zwB8Le1WMGRkQBc9bssndJICkjO1lZ_y1aZKCwP4c1Y,3686
|
|
125
|
+
robotic/include/rai/Kin/i_Physx.h,sha256=CxsmnWHQMgJBbhA5iajLpOjxpCkd9243tlVyYkNRgOM,1950
|
|
126
|
+
robotic/include/rai/Kin/kin.h,sha256=yBFuYhv9IwlhMJYNcc4RRFiQx1fXX_vSuSC7tAh8Mmk,16163
|
|
127
|
+
robotic/include/rai/Kin/proxy.h,sha256=yn19c-lrt6Fv8AE76ex_UObEFaNxMhItukv-KQgXZN8,1420
|
|
128
|
+
robotic/include/rai/Kin/simulation.h,sha256=IYPnYDCWPQUIDivoOWXX8BqQaEf3nbadM3dKyCdoWbg,5653
|
|
129
|
+
robotic/include/rai/Kin/viewer.h,sha256=BNWhM5GtN3wKpWloCj0O3s4BtrJm89OLkRblDxunFlA,2501
|
|
130
|
+
robotic/include/rai/LGP/LGP_SkeletonTool.h,sha256=T4lXAUxY2QFo_ETZEm7RqRzfmU6NAHdVcow8qj_8-9Y,3240
|
|
131
|
+
robotic/include/rai/LGP/LGP_TAMP_Abstraction.h,sha256=EKbyNFgro7Xg5uueo6bXNrNSBTFeQUS1swiy9izQiXc,1492
|
|
132
|
+
robotic/include/rai/LGP/LGP_Tool.h,sha256=rBUIDwFbtBACMz-DHgSxM1l9HjbaLuVIyDTqBIzaQ6c,3263
|
|
133
|
+
robotic/include/rai/LGP/LGP_computers.h,sha256=YmHWOrSGz5HHNY5mUQheD-kPhOvzO3HsVRcaGvpME6o,6492
|
|
134
|
+
robotic/include/rai/LGP/LGP_computers2.h,sha256=1LKxnQEFeMWuewe26JL7Bj0F8_3gYQTM3JN2D18bVGs,6443
|
|
135
|
+
robotic/include/rai/LGP/LGP_node.h,sha256=gMNQLfkbdMR1C-sNufI3K23Qt_Su3tqfIWz46Ta0JNo,4100
|
|
136
|
+
robotic/include/rai/LGP/LGP_tree.h,sha256=J6W4Qypr70g0EZg30tTZBuca_6_O0sDQAGGv6Ow8oaE,4001
|
|
137
|
+
robotic/include/rai/LGP/Motif.h,sha256=-1cYCDDxJK3at3LKT2R-qRoum7o7CnziBg30yijt4Ls,592
|
|
138
|
+
robotic/include/rai/LGP/NLP_Descriptor.h,sha256=1XJ-Wzvf5kh6IdRmhwG4QIDW5D7N9fVq-egX65GLWwk,92
|
|
139
|
+
robotic/include/rai/LGP/initFol.h,sha256=m67VqzKUQzMN0kBFL0lWACu0ls7eYj8ExyXVFjuLtDA,507
|
|
140
|
+
robotic/include/rai/Logic/fol.h,sha256=ubWsZacmrRPGeDPKQVGKDoGC_4GxYGdVLJ0K3a3eZu0,3598
|
|
141
|
+
robotic/include/rai/Logic/folWorld.h,sha256=XpqTWOIvZbKlS_vsJkXOexrhjfy3_iywebFezJamhHA,6072
|
|
142
|
+
robotic/include/rai/Logic/treeSearchDomain.h,sha256=ORUzTM0IhRSQ7z3cJh9w7m24-y-ZGLpsCEALzb8F3tU,3882
|
|
143
|
+
robotic/include/rai/Optim/BayesOpt.h,sha256=bDSXXVV_-szB-6SeT9afodVi8DuQfdk6-Er2UFlgoN0,1276
|
|
144
|
+
robotic/include/rai/Optim/GlobalIterativeNewton.h,sha256=dcTblUANjZx82zFugK9ItKuo69Llw8G6lvaMSzLhwHA,867
|
|
145
|
+
robotic/include/rai/Optim/NLP.h,sha256=jVLFJXz59FZDPD7HHmI36fsECZG8mUqZkzLu94_iFF8,8737
|
|
146
|
+
robotic/include/rai/Optim/NLP_Factory.h,sha256=xDn73B-u6fFvtu-udkXgyTiFyjTzfJNHwUm6z88FiOo,1979
|
|
147
|
+
robotic/include/rai/Optim/NLP_GraphSolver.h,sha256=Te5_uyLrBvHANfGv9uHdR6YPuCWCqgJqj9EL8WYfF14,1172
|
|
148
|
+
robotic/include/rai/Optim/NLP_Sampler.h,sha256=JaOEc8YJwatW5toOviTFXlOoF3Dg8ZWPM9zejyW9ND8,4643
|
|
149
|
+
robotic/include/rai/Optim/NLP_Solver.h,sha256=_9uwj61sobPl5-Q8bpxz4Wb6i5Q6nctfFspfKP_0tNA,2521
|
|
150
|
+
robotic/include/rai/Optim/constrained.h,sha256=VdtrNywvRiDvfb3_KICQnnkE54EuadV0y2a1kuXM6eA,1522
|
|
151
|
+
robotic/include/rai/Optim/i_Ceres.h,sha256=kQbuKAfvOFIPcGWh2laGHyRsSf0A8mggVUGonq3JaHU,946
|
|
152
|
+
robotic/include/rai/Optim/i_Ipopt.h,sha256=1v147tZVY3MuNMRLaFFWxKC7fyNP5-59WJzKoVv8BsY,516
|
|
153
|
+
robotic/include/rai/Optim/i_NLopt.h,sha256=GWtOe8PJ2GtB2bnCZcPXzxFI127b8FXjv_msWLzVZaE,1002
|
|
154
|
+
robotic/include/rai/Optim/lagrangian.h,sha256=KaORGcnP3je7AiF_kzNe9nYGlCfwVt-exTMiehmJugo,2532
|
|
155
|
+
robotic/include/rai/Optim/m_EvoStrategies.h,sha256=KQe6HVbTuaYeuPZg6JYTGqRZU2kxExQ7AlFnLVCM-Zc,3417
|
|
156
|
+
robotic/include/rai/Optim/m_Gradient.h,sha256=u5e6fsPd54qRvQwvbHeFjj-qLij_SlP6BlR0eEKVeFA,1743
|
|
157
|
+
robotic/include/rai/Optim/m_LBFGS.h,sha256=EkKO7ws6M0cRB2zGsbxtU1meyfAvJw-BlCrY1bijZaM,311
|
|
158
|
+
robotic/include/rai/Optim/m_LeastSquaresZeroOrder.h,sha256=pYdjYFN7l7slA0B8B-zQI7KlJlX0qanbsuLf1JJOjIg,2665
|
|
159
|
+
robotic/include/rai/Optim/m_LocalGreedy.h,sha256=wfTFZl2C7qxCV6J0oxsRiHN9wBF2sOJLGe11ct8lQlo,608
|
|
160
|
+
robotic/include/rai/Optim/m_NelderMead.h,sha256=-RGRwr444FjECny_PGLf1Cl604yismZGCZ1FSndRacE,419
|
|
161
|
+
robotic/include/rai/Optim/m_Newton.h,sha256=uHsS8EDATlm11CGo84BD0ruo3JhXIP7afiY2rvwBOSg,1162
|
|
162
|
+
robotic/include/rai/Optim/m_SlackGaussNewton.h,sha256=C9GqyHzcseIY2xUMN4QmymOLtWjJcNmbhS5JJMiAPao,1055
|
|
163
|
+
robotic/include/rai/Optim/options.h,sha256=GulPzyhIyrV3TD6i34_JbJbtSPAt9f6zRuqGzUQmjZg,1968
|
|
164
|
+
robotic/include/rai/Optim/primalDual.h,sha256=Ku91MisgpNyRv6W7UPV4d5Q2Gjfwefqam7eeFsxITUU,1309
|
|
165
|
+
robotic/include/rai/Optim/testProblems_Opt.h,sha256=6OED5_nsjTn-MiWy8kVzTJXRxR5bG2WZ_ZvZei8QXec,6657
|
|
166
|
+
robotic/include/rai/Optim/utils.h,sha256=DYWZ34FGL1Cs_xbJyn6vFzPh3mImT7CIm8QMgk4Y99k,2043
|
|
167
|
+
robotic/include/rai/Optim/CMA/boundary_transformation.h,sha256=Ylu2ZX14fHqpJdKPbIZwR_ttfazgMv8nLJ0l0vvgvRA,3841
|
|
168
|
+
robotic/include/rai/Optim/CMA/cmaes.h,sha256=EphfakrvvJOVgfBj0I9-hJuBV3zdCLmzEi_FqDnQh1I,4588
|
|
169
|
+
robotic/include/rai/Optim/CMA/cmaes_interface.h,sha256=ntBGw2nlUi4bx0ZtW7qzbhwccdE0x8aZBFZkoqIVEn8,2743
|
|
170
|
+
robotic/include/rai/Optim/liblbfgs/liblbfgs.h,sha256=Lu3zbs6PADps0WIbJHh_eoIxkCH7JPcEFZ6h5988JaI,32809
|
|
171
|
+
robotic/include/rai/PathAlgos/ConfigurationProblem.h,sha256=Zl_J3yooYFxA2-z-ulFL67nfzQBX90hUbD_cVFzpb3U,1351
|
|
172
|
+
robotic/include/rai/PathAlgos/PathResult.h,sha256=xxZiD8ClGKO719mQR50BsIzOlHeoH0UH4QNzWifoz6c,1070
|
|
173
|
+
robotic/include/rai/PathAlgos/RRT_PathFinder.h,sha256=JBptbQVUc5GWEMer_ypmtMNUK0S0sBo3M0d4E2q4doQ,3306
|
|
174
|
+
robotic/include/rai/Perception/audio.h,sha256=HQPC8bmOv4Mdfl8f71eUmKFlRE0_N_spY3bg6YJzduo,1105
|
|
175
|
+
robotic/include/rai/Perception/avutil.h,sha256=RlxtNGw8mvKYrWI7Sy8neILBDb1SF2wuf4hFKjPx-4w,802
|
|
176
|
+
robotic/include/rai/Perception/colorseg.h,sha256=1zax9KZGSJcTZ7MTnLZBSbHlZsJqQ1NkvU6cStzQ4vc,2314
|
|
177
|
+
robotic/include/rai/Perception/dataStructures.h,sha256=izZAv8p60cd5seTAqXtSgXP9OaBo-S2I_6hYsULmUSI,1406
|
|
178
|
+
robotic/include/rai/Perception/depth_packing.h,sha256=b90PhWxWSwkOpHb7kgCJvErAndCEXOzTeUSzfDLdRco,720
|
|
179
|
+
robotic/include/rai/Perception/g4data.h,sha256=CmIanWNqiUZY7cgpnC7tx3Md0jZnD1JCiwWjjGulyWI,4941
|
|
180
|
+
robotic/include/rai/Perception/g4data.ipp,sha256=kPIzEHMmXeFxEPV5kTqSHmA8Gi24indCYQamKJyoSpY,1103
|
|
181
|
+
robotic/include/rai/Perception/kinect2pointCloud.h,sha256=Fd58sPYez0HNDvsJoRJBIY74OsOELH3XYRlWYc0oBOM,1023
|
|
182
|
+
robotic/include/rai/Perception/object.h,sha256=aPZVOLFurKWhhkHtZDwbsz-6oxNfOk5-oYkIBtoN4iU,1670
|
|
183
|
+
robotic/include/rai/Perception/object_detector.h,sha256=HX2M_PbZET4DwPgE2yjELyYi2RdBZZ9wIUhqiwrB_bQ,2030
|
|
184
|
+
robotic/include/rai/Perception/opencv.h,sha256=3KT5npXCodVjVHLLipF3Jd89AKEz8Z3xjev9xWf9Itg,2505
|
|
185
|
+
robotic/include/rai/Perception/opencvCamera.h,sha256=rBCrB3zzfPvOk4dPPI2s1ZaQBpsQ0xQ7S7wRPduQW48,660
|
|
186
|
+
robotic/include/rai/Perception/pcl.h,sha256=r4sQEWDcpjJFg05bGJzhWKzQltFevWe5O-RJ_YwR8Q0,1430
|
|
187
|
+
robotic/include/rai/Perception/pclPlaneExtraction.h,sha256=RTyPIrxS4oZGZ1rXAhaRWxBrs3YX-PHmUimLG7t0LG0,2077
|
|
188
|
+
robotic/include/rai/Perception/pixel_format.h,sha256=dNRLdsMdckP0npn19WO_37RpH3poNamOT4JfEM6QAco,1064
|
|
189
|
+
robotic/include/rai/Perception/pointcloud_io.h,sha256=G908jUYDi8QFXmBDXrIuUrqZh24utcv3ABK2pWmhB50,1085
|
|
190
|
+
robotic/include/rai/Perception/surfels.h,sha256=OblVWjI_bEpQwqcANJ8cHYvah4BraYmLpicN_Vn39Dg,1952
|
|
191
|
+
robotic/include/rai/Perception/videoEncoder.h,sha256=TWphAWKPuvwwM6kNSfbEv57w9_LzZSbx-zkovfPVGA0,1823
|
|
192
|
+
robotic/include/rai/Search/AStar.h,sha256=qXZybtUHusQUjmA2xYCvKtLpe8Saq73klpnBuz1plZc,1209
|
|
193
|
+
robotic/include/rai/Search/ComputeNode.h,sha256=JcUy-8fmMsFbluSriDOh9FgLrJhaC4ggoiQwQa-1IZ0,3420
|
|
194
|
+
robotic/include/rai/Search/TreeSearchNode.h,sha256=13aF424b9MAcFNrDgNasWOthnp19zgJDaDo4lKDXbcY,1774
|
|
195
|
+
robotic/include/rai/ry/py-Config.h,sha256=fk-TJMXqY6b9UYk3gYC8pW_BkbUr-D-PtkQ--96zxoc,644
|
|
196
|
+
robotic/include/rai/ry/py-DataGen.h,sha256=mZHIv7PdR9_QBDKy0ONqHKQ70sr89dpgfKlO4UMByD8,434
|
|
197
|
+
robotic/include/rai/ry/py-Feature.h,sha256=t8Tyf1PJ4bkyCRC_mKF6JTallco8YRAX0PTtkid7Vws,434
|
|
198
|
+
robotic/include/rai/ry/py-Frame.h,sha256=ssIlaHBHBreB_3C22bgnv8tPVtLO1jsGPLBxypIbiL0,498
|
|
199
|
+
robotic/include/rai/ry/py-KOMO.h,sha256=AMa2vw8HUP-S11C4MF5d0CLT5kegYQN_SSCL467gLjI,514
|
|
200
|
+
robotic/include/rai/ry/py-LGP.h,sha256=0NBErJFTg41xAQcHbRhr6RNeDIy4EJl3DtuUR595Rx8,430
|
|
201
|
+
robotic/include/rai/ry/py-Optim.h,sha256=xvLv7tvE0hOocX64eQi2wa84of9H55GVUctZlFIYtQw,432
|
|
202
|
+
robotic/include/rai/ry/py-Quaternion.h,sha256=EydIMfUB_Zf9H21x29dhBjDm7472Ge_XD6edyRALQY0,437
|
|
203
|
+
robotic/include/rai/ry/py-Simulation.h,sha256=Kc4e6pK1yQyxDMCQu1HvXOYt9IlUiojBYFdqv3PP1AY,437
|
|
204
|
+
robotic/include/rai/ry/py-Spline.h,sha256=gR8Cvwt5PlzlolxegS1wUEEOQj9RydOp1gS67Zxm0jk,433
|
|
205
|
+
robotic/include/rai/ry/py-algo.h,sha256=FryvWbLOTZgCFBMYTgj-4g1nJN9REP22UXt6eekiiWc,431
|
|
206
|
+
robotic/include/rai/ry/py-tests.h,sha256=-l_0V-yRqeOEztqCo_BAdcKCAMovyd8-9tnrytM5pQM,432
|
|
207
|
+
robotic/include/rai/ry/types.h,sha256=gfyXJCRwkvrQ8jibdJVMRxPUIhXMUQJlgws9ocKyB8c,8537
|
|
208
|
+
robotic/rai-robotModels/g1/g1.g,sha256=9lA31eCRoFENw9Nbg04KoX3diIIQYKz981oRYNKLvO4,499
|
|
209
|
+
robotic/rai-robotModels/g1/g1_29dof_conv.yml,sha256=KU7Usxi4fMCKFH7Jfb6Jvs98fbK1UozBHCeTnD0KPPU,12132
|
|
210
|
+
robotic/rai-robotModels/g1/g1_clean.g,sha256=jXlPAlL02pPSybl5DgazO0Qf96wAg2tbVwXKYh9e5XQ,11883
|
|
211
|
+
robotic/rai-robotModels/g1/meshes/head_link.h5,sha256=7Gnh6fTAHrUp_8O70hmKKGFVW3246-yUdHqCGEuzK14,253939
|
|
212
|
+
robotic/rai-robotModels/g1/meshes/left_ankle_pitch_link.h5,sha256=2LKu5c-bPbGf8Q0tys5cHS0c38A7Nm39Vpa2ZyyE_Qc,23677
|
|
213
|
+
robotic/rai-robotModels/g1/meshes/left_ankle_roll_link.h5,sha256=oV1QbrCL7BTmlvjasDU0opQI8RdQryuSLslw-WUMSno,172252
|
|
214
|
+
robotic/rai-robotModels/g1/meshes/left_elbow_link.h5,sha256=shCWdhhqDEaN2Ap1dVe5mKlYv4nYlkblsXPMM0MZWnM,28432
|
|
215
|
+
robotic/rai-robotModels/g1/meshes/left_hip_pitch_link.h5,sha256=kLK5B4NccJG__h9R6eN1e2U1C6ICb5mP4MlgvDkxBbE,53338
|
|
216
|
+
robotic/rai-robotModels/g1/meshes/left_hip_roll_link.h5,sha256=qou4JUjWivOqBcqvtzkB-YIPOOeApCpIUDaadcGDobY,55405
|
|
217
|
+
robotic/rai-robotModels/g1/meshes/left_hip_yaw_link.h5,sha256=XawwJ9lcOvQXXoGNxVgxztpD9GUe4_6ov0HiKirciPM,83521
|
|
218
|
+
robotic/rai-robotModels/g1/meshes/left_knee_link.h5,sha256=PmeuXztyh7FY8i4SKcaz_-M5agrGWPn3hawBCmKxYHo,227686
|
|
219
|
+
robotic/rai-robotModels/g1/meshes/left_rubber_hand.h5,sha256=m9plN-nRX3SPS2w2rYjWPSlSmz29cjQx_brkkDp6g_Y,586678
|
|
220
|
+
robotic/rai-robotModels/g1/meshes/left_shoulder_pitch_link.h5,sha256=apxRmfGec2sDSsr_lfLPCtoQpHNcLdXL32CBLUvwJ5I,51538
|
|
221
|
+
robotic/rai-robotModels/g1/meshes/left_shoulder_roll_link.h5,sha256=ILgnwGlmdTTI52Bx40DTBwN5ZjCbPYEvie-aPulfxLw,110923
|
|
222
|
+
robotic/rai-robotModels/g1/meshes/left_shoulder_yaw_link.h5,sha256=wTVoiXw75gxkb5nx3VN4TWmLDl04skzjP97t3bh0K18,70588
|
|
223
|
+
robotic/rai-robotModels/g1/meshes/left_wrist_pitch_link.h5,sha256=GpMuEX0cZe91Qw0-msGSC8b5ZyXpe4zxV9z5Brw2STo,27487
|
|
224
|
+
robotic/rai-robotModels/g1/meshes/left_wrist_roll_link.h5,sha256=DHwnLvXkQVUsQg77hyrswN1uuCGuuF5yWtEx4xi1iLk,97093
|
|
225
|
+
robotic/rai-robotModels/g1/meshes/left_wrist_yaw_link.h5,sha256=IPJlN6pFOoj-sHvlBMV9iK-VVK3ol63Y48U20HdI34k,89137
|
|
226
|
+
robotic/rai-robotModels/g1/meshes/logo_link.h5,sha256=WanPUKwd8MsgmbSr1IoKsZwpOxTzdVryEXx1PjfNcHk,64900
|
|
227
|
+
robotic/rai-robotModels/g1/meshes/pelvis.h5,sha256=015_bltMIYFWgLpUuoBjJZHe9d4t3MzzIa1gN9YzIp4,285394
|
|
228
|
+
robotic/rai-robotModels/g1/meshes/pelvis_contour_link.h5,sha256=IcG57In0MBNaK_WaiTQXrWUMyugt1VuiPLPu45POI_A,374563
|
|
229
|
+
robotic/rai-robotModels/g1/meshes/right_ankle_pitch_link.h5,sha256=GLJA5_9WasUw-0bcGNKgmvPIAagfsVaMq8JuZb7_CCg,23677
|
|
230
|
+
robotic/rai-robotModels/g1/meshes/right_ankle_roll_link.h5,sha256=gZ7Gb_OMCa7fZl7WwLNyxYgKduh8NbPX1p7C5Gt3qa8,171901
|
|
231
|
+
robotic/rai-robotModels/g1/meshes/right_elbow_link.h5,sha256=rU4Z5hXXLpRqLy-6OpYxoFj_3hUuv_3dxE5smjGRyGk,28432
|
|
232
|
+
robotic/rai-robotModels/g1/meshes/right_hip_pitch_link.h5,sha256=snEY_k-HA_F_T_1oVIuqzAlwp_WWNwkQAHZF5vd_Rx0,53155
|
|
233
|
+
robotic/rai-robotModels/g1/meshes/right_hip_roll_link.h5,sha256=fWWUZS7bawn6l4KRIivlfeTHLiO6OYRaqmBZBIIkT6A,55525
|
|
234
|
+
robotic/rai-robotModels/g1/meshes/right_hip_yaw_link.h5,sha256=Fmlry9DjPPoPv6hdADY7uwqI3kLH_4O7YRoLWvLekGc,83611
|
|
235
|
+
robotic/rai-robotModels/g1/meshes/right_knee_link.h5,sha256=ttukVfhvWRK2i1mNqyu8avPY4IJuHf7mB2DlQpeUj4w,226771
|
|
236
|
+
robotic/rai-robotModels/g1/meshes/right_rubber_hand.h5,sha256=OB3QW_tzbunqAi98nNA7HrX-yipRZ_m33PKXbBHugPQ,577663
|
|
237
|
+
robotic/rai-robotModels/g1/meshes/right_shoulder_pitch_link.h5,sha256=MI00T09u92XjPGAZTLafea-x1CeUqufbfjP32OTj2iQ,51991
|
|
238
|
+
robotic/rai-robotModels/g1/meshes/right_shoulder_roll_link.h5,sha256=o7gL1TKXK_ulAGYfXF6qW-hJbfHYXBLpjySCVC3omio,111016
|
|
239
|
+
robotic/rai-robotModels/g1/meshes/right_shoulder_yaw_link.h5,sha256=9yLP5Udye9wM_1CT6hcVuIIxRJCZAQ35UHGai5HZrr8,70759
|
|
240
|
+
robotic/rai-robotModels/g1/meshes/right_wrist_pitch_link.h5,sha256=X71-XyhS9bzo7oepOEPMO4qk2sOjNfHk7o-lW0_efL0,25921
|
|
241
|
+
robotic/rai-robotModels/g1/meshes/right_wrist_roll_link.h5,sha256=vnc3iLk6viIcDE9JB-C5M0F4xeLVDzLc0ZU-3eaoXIU,97717
|
|
242
|
+
robotic/rai-robotModels/g1/meshes/right_wrist_yaw_link.h5,sha256=WY-_-AoMATxCZ9yEjH92WpRfvrVuVWwwc3SoT6owpIw,94924
|
|
243
|
+
robotic/rai-robotModels/g1/meshes/torso_link.h5,sha256=wTQpDVBj_I_CVOEFsEyBHfsEuQgQy0zbYVzY8qR2PQM,569203
|
|
244
|
+
robotic/rai-robotModels/g1/meshes/waist_roll_link.h5,sha256=n98tspx87SX7J0lcHZMGOGmwsNcZ3ozA_Mm1NUIvRII,10927
|
|
245
|
+
robotic/rai-robotModels/g1/meshes/waist_support_link.h5,sha256=ixpmHi4U4F5Hl86aU4RwU13jBH_C_jEvbCkqkjEjMRM,45034
|
|
246
|
+
robotic/rai-robotModels/g1/meshes/waist_yaw_link.h5,sha256=GXkMr0tmYUvKPW5iKv8xdHYtTSppV1FLAzjv3538NtE,94546
|
|
247
|
+
robotic/rai-robotModels/objects/kitchen.g,sha256=PLi7un2u3I29Mcngc08-9J3ocTU_c5TYlXplYXTgQHU,1223
|
|
248
|
+
robotic/rai-robotModels/objects/shelf.g,sha256=ZZb8kTKrhIY9I4U_sFuGgf5V4GcNH_Zd-l7eHbAg54s,808
|
|
249
|
+
robotic/rai-robotModels/objects/tables.g,sha256=z9GifBjAaCbu3Y2ISmzhVyU9_mw2NlR87eAyj0vNYnI,455
|
|
250
|
+
robotic/rai-robotModels/panda/panda.g,sha256=XOpLtLEWIrbvKvxwvsTbaMF-E8Z2ujNHtu2ccyiprxI,3124
|
|
251
|
+
robotic/rai-robotModels/panda/panda_arm_hand_conv.g,sha256=BVDQNIAwPB45rrvLX-WYw3Ys44jeqS9upi8RCV31UcY,2296
|
|
252
|
+
robotic/rai-robotModels/panda/panda_arm_hand_conv.yml,sha256=_YP4vVVKeScSPNLRRkkiH2fnHuFUQgt12O1RnWV5mTY,2486
|
|
253
|
+
robotic/rai-robotModels/panda/panda_clean.g,sha256=6EShzBmEa2R5sJRhnGRXwLWcyjRybFY3Su-hdwz55yw,3168
|
|
254
|
+
robotic/rai-robotModels/panda/panda_deformable.g,sha256=DvkhnJYSXc1S_GRBM3iJOm6WovKYrsckzAW-rXxLqH8,6037
|
|
255
|
+
robotic/rai-robotModels/panda/panda_gripper.g,sha256=qdVvPLq8LNkcXFNVfLcYBLNvcgAt7UN3qaTYgCevi7o,846
|
|
256
|
+
robotic/rai-robotModels/panda/panda_withoutCollisionModels.g,sha256=l9VLxFzQ5zcjUglirB455T8yWt6gkcWRllyLrlVXbDc,103
|
|
257
|
+
robotic/rai-robotModels/panda/meshes/finger.h5,sha256=hzqxoufYkW0_qDgVH4ZCx7vwCeZF4s3qe0KpMyXf3Lw,12994
|
|
258
|
+
robotic/rai-robotModels/panda/meshes/hand.h5,sha256=lbiphvOO3NKhuBW6kexfbfArDcNKqpqDM9yS_bmFdss,100882
|
|
259
|
+
robotic/rai-robotModels/panda/meshes/link0.h5,sha256=wGFp4P3aAFhVCgb5idxLqUrkG2hx6KskZTK06i92YOk,284200
|
|
260
|
+
robotic/rai-robotModels/panda/meshes/link1.h5,sha256=Y-v-tXeRxK-dfRnb55_yMaveQqkj-9aHmhpbggi8CtQ,173476
|
|
261
|
+
robotic/rai-robotModels/panda/meshes/link2.h5,sha256=OPWW9Gwefyx4cpnOLZO3Gcb6yxILO34HiYIyV7kdF8U,176149
|
|
262
|
+
robotic/rai-robotModels/panda/meshes/link3.h5,sha256=EMQkZUysdapjF1pw-yFVZ9ZChtNxJB6lXaBiRGzX0Ng,198274
|
|
263
|
+
robotic/rai-robotModels/panda/meshes/link4.h5,sha256=BLYmj5sOiAAfKGNJdoXII0Sl2Ie0StQFpFjBkGH7wRY,203437
|
|
264
|
+
robotic/rai-robotModels/panda/meshes/link5.h5,sha256=TbrDtvaUYwrFJO8KKhCSF0fOZ8e6rC7GQ5xGtMrxud4,254542
|
|
265
|
+
robotic/rai-robotModels/panda/meshes/link6.h5,sha256=vWc78TMcfY5l8_dTLmypJiKsQx9Llb47BcfACXd2tOA,309727
|
|
266
|
+
robotic/rai-robotModels/panda/meshes/link7.h5,sha256=x-xcLQT0g3vrvdYhaVbX57LRrz9DT8nZFW6YN6oT0-0,172303
|
|
267
|
+
robotic/rai-robotModels/pr2/pr2.g,sha256=n9T0o0NEp5YB2lbUsgr803XUzAslYjfQWg9RYC0cFVE,2312
|
|
268
|
+
robotic/rai-robotModels/pr2/pr2_clean.g,sha256=EW73SHK0YCTp-tCcL58cixBoa0sPIrfE5PLK1kU-DYo,26814
|
|
269
|
+
robotic/rai-robotModels/pr2/pr2_conv.g,sha256=XIxIBSz5h_luzKBga2ZP2rKOLi0Cp2w0Z65NpdFUFf8,25950
|
|
270
|
+
robotic/rai-robotModels/pr2/pr2_modifications.g,sha256=3CgSjGVbO-T-RNCSqAXJJuyQxwZTNNPoYgr73iA-EyI,4659
|
|
271
|
+
robotic/rai-robotModels/pr2/pr2_modify_fixGrippers.g,sha256=kgMG39nOyMoBoBPZLlzvjm0bIa10KB8g8y5nskt1onc,712
|
|
272
|
+
robotic/rai-robotModels/pr2/pr2_modify_fixHead.g,sha256=iRlRNiCFbf6w7Qu0tn0j0qbfSTTQw59L857c7UYLsqs,152
|
|
273
|
+
robotic/rai-robotModels/pr2/pr2_modify_fixLeft.g,sha256=ZKceDnAvEaxIBX0eraFrUddhlEdP7pfIeNeGCVMXp08,364
|
|
274
|
+
robotic/rai-robotModels/pr2/pr2_modify_fixRight.g,sha256=e3qa8_0hfuTlEszsZFsXCh9BADjboSz0QX4Ma_Uo8qU,363
|
|
275
|
+
robotic/rai-robotModels/pr2/meshes/base.h5,sha256=mUEQcW30dWHw-gj_-tapWAKxejHBDFmodA3v4xFC1uY,35329
|
|
276
|
+
robotic/rai-robotModels/pr2/meshes/base_color.png,sha256=bQvqOvg14Yk2a01G2-vhLxwJ1XM_KUDWOZ9jpdE96xE,119115
|
|
277
|
+
robotic/rai-robotModels/pr2/meshes/caster.h5,sha256=M_PLVad12snpXF5I1J7mRFvMOXAb3FFyXKaUZML_Vc0,18010
|
|
278
|
+
robotic/rai-robotModels/pr2/meshes/elbow_flex.h5,sha256=i3BRP2zogdd5F9yjP1LfaUOULoRLsl2KqXaTJtXGo_w,26901
|
|
279
|
+
robotic/rai-robotModels/pr2/meshes/elbow_flex_color.png,sha256=x5Onoq07w4_Pq0fQzia2mmG8Q3sO6id_qWk_F2xCj0Q,25663
|
|
280
|
+
robotic/rai-robotModels/pr2/meshes/forearm.h5,sha256=pnUh6-8OQccCP00FYtgwsUz_0ZUyFlD56WglCGbk-4U,43914
|
|
281
|
+
robotic/rai-robotModels/pr2/meshes/forearm_color.png,sha256=h3JUqOfbajdCU5OWC0MifDJHyy37FnoP6Lt53HVzx7M,137001
|
|
282
|
+
robotic/rai-robotModels/pr2/meshes/forearm_roll.h5,sha256=CFpqdbozYIHGJUtP_uiMIoBeD0xTl82v31I0nUVd66o,18040
|
|
283
|
+
robotic/rai-robotModels/pr2/meshes/gripper_palm.h5,sha256=UuBEKAGygpuqBZzWghM_CchyigpJnpgSTP1ZrWRDSls,27385
|
|
284
|
+
robotic/rai-robotModels/pr2/meshes/gripper_palm_color.png,sha256=8kjYQp5o3RYzx11HEQKQxHeDkE9o30EOKAxs_pcTuhQ,30409
|
|
285
|
+
robotic/rai-robotModels/pr2/meshes/head_pan.h5,sha256=gu0tLHZf-I2qIqE-qa6Ym6SHCm8u3bYkB5QECy9-lyY,27901
|
|
286
|
+
robotic/rai-robotModels/pr2/meshes/head_pan_color.png,sha256=uzllVJ_AUD4fY9K0XUMnAlALhPGHgo3u4wS-o0_8Fcc,30996
|
|
287
|
+
robotic/rai-robotModels/pr2/meshes/head_tilt.h5,sha256=Xzpj00PWfICPrKtXi2vrsCqhb88z4Ua6aUa9PlTYzHE,30516
|
|
288
|
+
robotic/rai-robotModels/pr2/meshes/head_tilt_color.png,sha256=C_t-PcZm7Y6-0aHNOtY7mU4PnbIJ24xDc8m7ddtYuM0,147862
|
|
289
|
+
robotic/rai-robotModels/pr2/meshes/l_finger.h5,sha256=clug8b7SCD5vndhX4vScEuiP-bS5GemJhY-gU9pVe8U,43755
|
|
290
|
+
robotic/rai-robotModels/pr2/meshes/l_finger_color.png,sha256=uXnQzwcs86oBSVW_ovwEuazHD23p5eQAtaHCppePYbc,29539
|
|
291
|
+
robotic/rai-robotModels/pr2/meshes/l_finger_tip.h5,sha256=P9yoAq7s7Fm7d41Nk2PwJ0MyzuN88Ft5oHeXxRi1jYI,25899
|
|
292
|
+
robotic/rai-robotModels/pr2/meshes/l_finger_tip_color.png,sha256=a741yXpxqj5xQWziE18eBhX4Onni42U_E4WL2yuKNQc,27722
|
|
293
|
+
robotic/rai-robotModels/pr2/meshes/shoulder_lift.h5,sha256=hN1TK7UGwoxZ_RPigs6QhKXbCR1aE-XRk7S8-jTkWHs,27984
|
|
294
|
+
robotic/rai-robotModels/pr2/meshes/shoulder_lift_color.png,sha256=8nx5akxmO-rItjS7RgXxqZIXv0skUJSy1GJh0RuTY2s,25567
|
|
295
|
+
robotic/rai-robotModels/pr2/meshes/shoulder_pan.h5,sha256=QcqYfzGHgaKnehfzG0dWeHkjzDdcV1GqhVcQhCHdSvE,24671
|
|
296
|
+
robotic/rai-robotModels/pr2/meshes/shoulder_pan_color.png,sha256=9FhA7TLGpmbkdMZr73MfxUWUjJjTvvtiDUu7CSnSdTc,74567
|
|
297
|
+
robotic/rai-robotModels/pr2/meshes/tilting_hokuyo.h5,sha256=qUiWWxnYAkAlLGP2IEAaHPJh00So520jd_2eg-0CcM4,24865
|
|
298
|
+
robotic/rai-robotModels/pr2/meshes/tilting_hokuyo_color.png,sha256=_jzwRLyC7dFTUHYrQaGXbrHJVzX59NkB9rLe8CDOSAk,49556
|
|
299
|
+
robotic/rai-robotModels/pr2/meshes/torso_lift.h5,sha256=mM3AU--_xU_lyvMCdf52gc2SmrWSvIus5QuoSmtaFKk,27773
|
|
300
|
+
robotic/rai-robotModels/pr2/meshes/torso_lift_color.png,sha256=d4aPzvJwT9mJvm1fFcKLn3S30_bzf2XRCo12CwTpG94,108994
|
|
301
|
+
robotic/rai-robotModels/pr2/meshes/upper_arm.h5,sha256=DR9ANEt_wsEviGin-hGVhAU1UFOPsL1oKOJhC8W3iMU,42076
|
|
302
|
+
robotic/rai-robotModels/pr2/meshes/upper_arm_color.png,sha256=7Zzgfv7zrQEDkzGihI4WsCALw5VHgrqSso15W6_6Vcs,55682
|
|
303
|
+
robotic/rai-robotModels/pr2/meshes/upper_arm_roll.h5,sha256=N74aPRUhblXazcBfDAGSuToswBqzztnBZw-rUz-BfJo,30001
|
|
304
|
+
robotic/rai-robotModels/pr2/meshes/upper_arm_roll_color.png,sha256=e-agJh2xTkuaJ7YMxvIcEsnD9DXwEktOgp_78OZsvQs,25025
|
|
305
|
+
robotic/rai-robotModels/pr2/meshes/wheel.h5,sha256=fvQIc3DPuBewSl8_U2NtHX1K9gENOPix0TCc9FuX520,26486
|
|
306
|
+
robotic/rai-robotModels/pr2/meshes/wheel_color.png,sha256=TTnLNSv7bJ6o4Qoip3WLTCKkTpPWdLchWhOdv1_aHLE,62768
|
|
307
|
+
robotic/rai-robotModels/pr2/meshes/wrist_color.png,sha256=b_6yenGLjF7OI0PbvD6KlSEnrE-8COO7Mr7IYqxhN5s,24950
|
|
308
|
+
robotic/rai-robotModels/pr2/meshes/wrist_flex.h5,sha256=mxKzkKpspBdM1Vl9sOJYas1HepMy0M4rwa4NtvEYHOU,23886
|
|
309
|
+
robotic/rai-robotModels/pr2/meshes/wrist_roll.h5,sha256=XRDDvGdLSinKxFzdygRRBMW6zLubDqHGqH6CP77kBRw,17980
|
|
310
|
+
robotic/rai-robotModels/ranger/ranger.g,sha256=wOkVUoZZMUzFLreAT-5-9SfLweZB83MNDyk-h02_hgE,1269
|
|
311
|
+
robotic/rai-robotModels/ranger/ranger_clean.g,sha256=Ps3u1n0gBorsqs_dfKnXmI-pfOEmB6QY6FWP_MskZmY,2093
|
|
312
|
+
robotic/rai-robotModels/ranger/ranger_mini_conv.g,sha256=6jNaqgtUuyOMgOTD-SazpsA-JcAz2pkj2Mw5TTzDxd4,2156
|
|
313
|
+
robotic/rai-robotModels/ranger/meshes/ranger_mini3.h5,sha256=Af2ppMf2YGOUkw7S0jHxFyvBTAsAZVFGeUcgaG5ArAU,235957
|
|
314
|
+
robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel.h5,sha256=zIiMDHGxqaztUyGNeCa-XBBbSoq6Kme0dy4gA7IkWl4,268465
|
|
315
|
+
robotic/rai-robotModels/ranger/meshes/ranger_mini_v3_wheel_right.h5,sha256=Rs3a7mj3SHgRa31iNNa5RmOMGBdXrpr73GrqaIqRmqs,270937
|
|
316
|
+
robotic/rai-robotModels/robotiq/robotiq.g,sha256=3m_n4NjH7Gfp_ztWIDb-ruR74q9WhElzqkT76KPeToQ,1066
|
|
317
|
+
robotic/rai-robotModels/robotiq/robotiq_arg2f_85_model_conv.yml,sha256=bkTMr1u1WZdE1LsDFEW3_vcp632_ZXUDM7Yt9T2ZlYU,2908
|
|
318
|
+
robotic/rai-robotModels/robotiq/robotiq_clean.g,sha256=MmRhhY4HkfKj-rfY6YE__Zr_67nxATZojefCdwsZW28,3893
|
|
319
|
+
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_base_link.h5,sha256=papTdqkLlRzo_svqTXwd9Cp2qJHw2Wnt-Ct31lQCAKQ,331303
|
|
320
|
+
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_finger.h5,sha256=TYBns07SFdffSCNRZNh45_jOtprZAAIAO1WDHbvMMi0,34288
|
|
321
|
+
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_inner_knuckle.h5,sha256=KvsozDURlth6A1baeYCiKN23mOsixLbWr01G_912pTs,27256
|
|
322
|
+
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_finger.h5,sha256=YKQyaLCPsR9GTn83GSQTo6gdB7JRPaK4hqnHYJCCUFc,28402
|
|
323
|
+
robotic/rai-robotModels/robotiq/meshes/robotiq_arg2f_85_outer_knuckle.h5,sha256=2TdkUfN04jhlNfoiS49J86gYx4Ph1XMAfUwPENT4i1k,22600
|
|
324
|
+
robotic/rai-robotModels/robotiq/meshes/robotiq_ft300.ply,sha256=0zn76K_SIR85pVNO8hmbnflRsmeFKHCuCykpVTfQf6s,38626
|
|
325
|
+
robotic/rai-robotModels/scenarios/ballFinger.g,sha256=Af9naKH9zmt2esr_U8ml2zTDcM76nubKiqCLfJiyL4g,507
|
|
326
|
+
robotic/rai-robotModels/scenarios/climber.g,sha256=fUbSlFq_PVev2AxqLgytyfud6NUxvyO5NSon9wXSOJo,2016
|
|
327
|
+
robotic/rai-robotModels/scenarios/climber2.g,sha256=xYGBfNgcLfPfI6WOxOOFpGCVkusoH7gVECEGj2bwc-4,2349
|
|
328
|
+
robotic/rai-robotModels/scenarios/gripper.g,sha256=-yvc-cxVMxz7OmqVzhg6dyh21hBk9hD9wo5Uc2c4roY,447
|
|
329
|
+
robotic/rai-robotModels/scenarios/k-bars.g,sha256=qDlha9pKZ8HZgz4eLRDpStPLhxVPgTsGiMdy5DQ1kB4,2162
|
|
330
|
+
robotic/rai-robotModels/scenarios/k00.g,sha256=Bjei9rYaLLwOhOSHFjaDGc7LFDraL8sxQYtNh88p4UY,4357
|
|
331
|
+
robotic/rai-robotModels/scenarios/kswing.g,sha256=k1bND_Hr-lE5sklOraw58HdUye6iW8jTdjBUwbyRCRM,3995
|
|
332
|
+
robotic/rai-robotModels/scenarios/liftRing.g,sha256=OYcjfrP2xt8PCcVSv6uTUeBpnDeCIZq_UDJ8d490xa8,1336
|
|
333
|
+
robotic/rai-robotModels/scenarios/mobileMini.g,sha256=I7SE9YUUciZ1JrJG6BIAZ9Oho_eUa_Z76l5_h-B0wjY,1158
|
|
334
|
+
robotic/rai-robotModels/scenarios/pandaFloatingGripper.g,sha256=emCRjAxW1XAo9teBjjxvnM4C3JiCWPfiptFFr3swwfE,1508
|
|
335
|
+
robotic/rai-robotModels/scenarios/pandaSingle.g,sha256=xYsue_6-zLBScApZ564oPWwMfQkM5IS0kB35zIPtS3s,1144
|
|
336
|
+
robotic/rai-robotModels/scenarios/panda_fixGripper.g,sha256=bhkRey6igLb18HlOFj7CpAjqF6R7Z3saxevipHAn4W0,337
|
|
337
|
+
robotic/rai-robotModels/scenarios/panda_fixRobotiq.g,sha256=QVLpZCchSnoouayhIoVQcaWYHaZGVn4pIlj6nkFDHjs,1564
|
|
338
|
+
robotic/rai-robotModels/scenarios/panda_mobile.g,sha256=Om5rU2C6_GBKcZcRBZ0cTsk2gKxzwoSE-32dxBMQa-8,713
|
|
339
|
+
robotic/rai-robotModels/scenarios/panda_moveGripper.g,sha256=HyyzCAg8ksvqGxjVrAqh6r16lvifGyjQd7Txa0wkR-Q,1920
|
|
340
|
+
robotic/rai-robotModels/scenarios/panda_noGripper.g,sha256=FL5vq3ysYJl7f_y9xOBfSTYuB6btJO22f6g2Z-HU1tw,670
|
|
341
|
+
robotic/rai-robotModels/scenarios/panda_ranger.g,sha256=SpLnjGlW5qyBaVvhZ2IZw2eLnYvj3mVuDy_VmRAyhiA,472
|
|
342
|
+
robotic/rai-robotModels/scenarios/pandasTable-calibrated.g,sha256=Bt6jEu-OUGclBJFBs2Ga2j6qTmP2Nqwecj9k0CH2cNY,467
|
|
343
|
+
robotic/rai-robotModels/scenarios/pandasTable.g,sha256=BhXqZdyujDDnTCbsyHtwabTF6rRKW7WFJztmMhq2grQ,827
|
|
344
|
+
robotic/rai-robotModels/scenarios/pendulum.g,sha256=bViHSQAV_y2uMzM0Wl7jfBiJioICtJ8V2d73_wtKX7o,669
|
|
345
|
+
robotic/rai-robotModels/scenarios/ringBox.g,sha256=as-lnOJd7tSujz3nulwrBL1qtSWpw8a3EDKmRcglwv0,706
|
|
346
|
+
robotic/rai-robotModels/scenarios/simpleArm.g,sha256=N2p5TNUNVnXtKZMK691OIqOrAv4ElOn3U4-z_hRanSw,1473
|
|
347
|
+
robotic/rai-robotModels/scenarios/walker.g,sha256=0h6yAacKSQsgdu_2zIfUB7z0H3fU258amygwHZ7NVlo,1103
|
|
348
|
+
robotic/rai-robotModels/scenarios/walker1.g,sha256=FTi0HxqU2fsKgqLCkdq5VCuc3Q9pybClzwgnQvtmxlw,689
|
|
349
|
+
robotic/rai-robotModels/scenarios/walker3.g,sha256=zODCp1jzoFNLWs5f98qCkKeEcXxm8TKZ0RzPBFH1qq4,796
|
|
350
|
+
robotic/rai-robotModels/scenarios/workshop.g,sha256=2Xjh6cPk2xKbdvtDC89eDHZcRv8CxCnvDB2qR7AQWyY,5633
|
|
351
|
+
robotic/rai-robotModels/scenarios/workshopTable.g,sha256=zDvlVXHQlZV5Ppc9XbUJ6q5XjW1Fni-OsE2NHMdkGpY,4440
|
|
352
|
+
robotic/rai-robotModels/tests/arm.g,sha256=D8L6GhjHu4FFoPp_CsAQ57U9S9SF5GnfCtIKl_LPPW0,1283
|
|
353
|
+
robotic/rai-robotModels/tests/compound.g,sha256=kwI7G0K5M-EEJDsEq37aEBR-BQGSIzroFUPD2OZGrcU,555
|
|
354
|
+
robotic/rai-robotModels/tests/pr2Shelf.g,sha256=axlVxDwuLMsNGdOga40nbzK3e6dWEthQEXm25XewNTw,329
|
|
355
|
+
robotic/rai-robotModels/tests/thin.g,sha256=1bWARayk8TJutfO8CZs3GWCcBwr_oL2SRLLCP1lDMRQ,222
|
|
356
|
+
robotic/rai-robotModels/ur10/ur10.g,sha256=kdY50ure-vbOONtoeeRh7XMgoNY8qM1Vv0zzRtwChAU,316
|
|
357
|
+
robotic/rai-robotModels/ur10/ur10_clean.g,sha256=3DnKD69vgV6ybr_W7s6hsFI7witEE6TxsOQ8lvcKwbc,2984
|
|
358
|
+
robotic/rai-robotModels/ur10/ur10_conv.g,sha256=2Ohq3b3UpA31-4f431zt0YUyYl9Jlh3TJh3kfGcFp30,2301
|
|
359
|
+
robotic/rai-robotModels/ur10/meshes/base.h5,sha256=sbQdK1120CLJI_LDR5asAq9b1IGu1WfK1SbDb12IbCI,31330
|
|
360
|
+
robotic/rai-robotModels/ur10/meshes/forearm.h5,sha256=yuIHTdkov2nXep2mOKlSSXRDHk5urpfw86yH5hm30J4,359953
|
|
361
|
+
robotic/rai-robotModels/ur10/meshes/shoulder.h5,sha256=iv7DnEOvxOZnGAMl3y82ltJwRmJpdMhEF6eQrBdqh-g,203335
|
|
362
|
+
robotic/rai-robotModels/ur10/meshes/upperarm.h5,sha256=7EscqPPAzKSzbtSCMrgbI_uGhwH8MmA-x7pSxqP4L7Q,288502
|
|
363
|
+
robotic/rai-robotModels/ur10/meshes/wrist1.h5,sha256=4r7yAEKKx5zYoC2NbqL0yjGvX4ilafjrpuNP3oDKsU8,185725
|
|
364
|
+
robotic/rai-robotModels/ur10/meshes/wrist2.h5,sha256=fJSQ4Jh-ChmwvRYfDobqXssVaBZj8GhpvmPNp1UTrN0,498733
|
|
365
|
+
robotic/rai-robotModels/ur10/meshes/wrist3.h5,sha256=F8FrYVVp8YBdkgJ6EHKb5r_rm0kyhxf6b8KbwHjeegk,20770
|
|
366
|
+
robotic/src/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
+
robotic/src/cleanMeshes.py,sha256=42T9WwN_cn4u_s_BzN2eRfBQxmZTEQ6ZYPBtsesA5BM,1678
|
|
368
|
+
robotic/src/h5_helper.py,sha256=Bv1R1MF6jVKrm6X9qSxUu5tKOQt87cXrmlRml-wU2ag,1259
|
|
369
|
+
robotic/src/h5_helper.py~,sha256=TdEFuf3E6yi1tUwjBuuxc2ulR6WhpHxpL5sUUz8fOBk,1131
|
|
370
|
+
robotic/src/mesh_helper.py,sha256=AMSOz3Eew9uJkDm5tFThbfJKcEQCmGyRLN4bZphISNk,16691
|
|
371
|
+
robotic/src/meshlabFilters.mlx,sha256=SCIiIk7XZusvKEKY62pHSem_R3TcMUP8BFaLTVUcnEg,3833
|
|
372
|
+
robotic/src/mujoco_io.py,sha256=drLNE4yo30hpOY01-AsuCWKLvNoG5w2YDSzR_rlyfz0,9474
|
|
373
|
+
robotic/src/urdf_io.py,sha256=bbPcJWS9rnYk8CWgEZTmx1XJRBIDrfwgCj-S_RFxl9U,8800
|
|
374
|
+
robotic/src/yaml_helper.py,sha256=Jf9QaKSNQrPkUPqd5FUDv7_h0wDlGXrhCdMwu6y-Nh0,925
|
|
375
|
+
robotic-0.3.4.dev5.data/scripts/ry-bot,sha256=LBNbbQeNNNd_tupI5463Xe-RKSD6xy4HGTbJloisCGk,2280
|
|
376
|
+
robotic-0.3.4.dev5.data/scripts/ry-h5info,sha256=6orNP37WPoobKup0PcLXQvbiCVWqeRR_JQyMH1iXHJk,449
|
|
377
|
+
robotic-0.3.4.dev5.data/scripts/ry-info,sha256=fL5QXJL4Xx-Q42L2C29HHbj1XsmWdWiKIv9rVfc5sm4,425
|
|
378
|
+
robotic-0.3.4.dev5.data/scripts/ry-meshTool,sha256=h4f4wFPNaey3ziz870SrEvy6SsQSL-ZnR_cH3UuAZxE,101
|
|
379
|
+
robotic-0.3.4.dev5.data/scripts/ry-test,sha256=YTCSIuTA4JYk7j7TAr-t7IIp5g6hdLRlTPxJZBxQVpk,965
|
|
380
|
+
robotic-0.3.4.dev5.data/scripts/ry-urdfConvert.py,sha256=762MIDmAhdCCj55QftY7wsy9gOEs-TDEWcRPt5dECyc,2542
|
|
381
|
+
robotic-0.3.4.dev5.data/scripts/ry-view,sha256=bUrH2OrhBprvbDZ_oDCPRvGPQ1EAQ6tjgxKncff8qcI,1254
|
|
382
|
+
robotic-0.3.4.dev5.dist-info/licenses/LICENSE,sha256=oT-pAsUSXiuMq2_3omR87-GFBeBnegQYixH4Bm_7wag,1071
|
|
383
|
+
robotic-0.3.4.dev5.dist-info/METADATA,sha256=9NY11KrQOZUXVQ-8bOzFecXERQMcxON0l_UySiIXkrM,6663
|
|
384
|
+
robotic-0.3.4.dev5.dist-info/WHEEL,sha256=ITVdYpiTGnryqIbOR0i1wcdISo8YPJzlx8rAyocabzM,104
|
|
385
|
+
robotic-0.3.4.dev5.dist-info/top_level.txt,sha256=x5A4haAZ18y9FpO1IhXSVJ2TFdhVAgT5JMkejHUg_9U,8
|
|
386
|
+
robotic-0.3.4.dev5.dist-info/RECORD,,
|
robotic/nlp.py
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
import numpy as np
|
|
2
|
-
|
|
3
|
-
class OT():
|
|
4
|
-
f = 0
|
|
5
|
-
sos = 1
|
|
6
|
-
ineq = 2
|
|
7
|
-
eq = 3
|
|
8
|
-
|
|
9
|
-
class NLP():
|
|
10
|
-
"""
|
|
11
|
-
Non-Linear Mathematical Program
|
|
12
|
-
|
|
13
|
-
min_x 1^T phi_f(x) + phi_sos(x)^T phi_sos(x)
|
|
14
|
-
s.t. phi_eq(x) = 0
|
|
15
|
-
phi_ineq(x) <= 0
|
|
16
|
-
B[0] <= x <= B[1]
|
|
17
|
-
|
|
18
|
-
where:
|
|
19
|
-
x is a continous variable, in vector space R^n
|
|
20
|
-
phi_f is a vector of cost terms
|
|
21
|
-
phi_sos is a vector of least cost terms
|
|
22
|
-
phi_eq is a vector of equality constraints
|
|
23
|
-
phi_ineq is a vector of inequality constraints
|
|
24
|
-
B[0] and B[1] in R^n are, respectively, the lower and upper box bounds
|
|
25
|
-
"""
|
|
26
|
-
|
|
27
|
-
def __init__(self, *args, **kwargs):
|
|
28
|
-
pass
|
|
29
|
-
|
|
30
|
-
def evaluate(self, x):
|
|
31
|
-
"""
|
|
32
|
-
query the NLP at a point x; returns the tuple (phi,J), which is
|
|
33
|
-
the feature vector and its Jacobian; features define cost terms,
|
|
34
|
-
sum-of-square (sos) terms, inequalities, and equalities depending
|
|
35
|
-
on 'getFeatureTypes'.
|
|
36
|
-
|
|
37
|
-
If the returned Jacobian has 3 columns and #rows non-equal to
|
|
38
|
-
dim(phi) it should be interpreted by solvers as sparse in
|
|
39
|
-
triplet format; the C++ solvers exploit such sparse Jacobians,
|
|
40
|
-
e.g., to efficiently compute Gauss-Newton steps.
|
|
41
|
-
|
|
42
|
-
Parameters
|
|
43
|
-
------
|
|
44
|
-
x: np.array, 1-D
|
|
45
|
-
|
|
46
|
-
Returns
|
|
47
|
-
------
|
|
48
|
-
phi: np.array 1-D
|
|
49
|
-
J: np.array 2-D. J[i,j] is derivative of feature i w.r.t variable j, potentially sparse
|
|
50
|
-
"""
|
|
51
|
-
raise NotImplementedError()
|
|
52
|
-
|
|
53
|
-
def getDimension(self):
|
|
54
|
-
"""
|
|
55
|
-
Returns
|
|
56
|
-
-----
|
|
57
|
-
output: dimensionality of x
|
|
58
|
-
"""
|
|
59
|
-
raise NotImplementedError()
|
|
60
|
-
|
|
61
|
-
def getFeatureTypes(self):
|
|
62
|
-
"""
|
|
63
|
-
Returns
|
|
64
|
-
-----
|
|
65
|
-
output: list of feature Types
|
|
66
|
-
"""
|
|
67
|
-
return NotImplementedError()
|
|
68
|
-
|
|
69
|
-
def getBounds(self):
|
|
70
|
-
"""
|
|
71
|
-
returns 2-times-n array, where n is the dimensionality of x
|
|
72
|
-
B[0] is the lower and B[1] the upper bounds, so that B[0] <= x <= B[1]
|
|
73
|
-
|
|
74
|
-
Returns
|
|
75
|
-
------
|
|
76
|
-
B: np.array 2D (2-times-n)
|
|
77
|
-
"""
|
|
78
|
-
n = self.getDimension()
|
|
79
|
-
return np.tile([[-1.], [+1.]], (1,n))
|
|
80
|
-
|
|
81
|
-
def getFHessian(self, x):
|
|
82
|
-
"""
|
|
83
|
-
Optionally returns a Hessian of the sum of all phi_f objectives
|
|
84
|
-
The Hessian is by default approximated Gauss-Newton w.r.t. the phi_sos objectives; this
|
|
85
|
-
method allows to return an explicit Hessian also for phi_f objectives that is added to the
|
|
86
|
-
Gauss-Newton of phi_sos objectives. Needs to be sparse if $J$ is sparse. Default: empty array (zero).
|
|
87
|
-
|
|
88
|
-
Returns
|
|
89
|
-
-----
|
|
90
|
-
Hessian: np.array 2D, potentially sparse
|
|
91
|
-
"""
|
|
92
|
-
return []
|
|
93
|
-
|
|
94
|
-
def getInitializationSample(self):
|
|
95
|
-
"""
|
|
96
|
-
returns a sample to initialize an optimization, not necessarily feasible. Default: uniform within bounds
|
|
97
|
-
|
|
98
|
-
Returns
|
|
99
|
-
-----
|
|
100
|
-
x: np.array 1-D
|
|
101
|
-
"""
|
|
102
|
-
bounds = self.getBounds()
|
|
103
|
-
return np.random.uniform(low=bounds[0,:], high=bounds[1,:])
|
|
104
|
-
|
|
105
|
-
def report(self, verbose):
|
|
106
|
-
"""
|
|
107
|
-
displays semantic information on the last query. Default: empty string
|
|
108
|
-
|
|
109
|
-
Returns
|
|
110
|
-
----
|
|
111
|
-
output: string
|
|
112
|
-
"""
|
|
113
|
-
return ''
|