Skip to content
Snippets Groups Projects
Commit e333e0c0 authored by Olivier Stasse's avatar Olivier Stasse
Browse files

[wip/sot-core-v3] Release 4.6.0

Fix device.cpp + add test_device
Introduces FeaturePose with SE(3) and R3xSO(3)
parent d667a193
No related branches found
No related tags found
No related merge requests found
...@@ -4,8 +4,7 @@ ...@@ -4,8 +4,7 @@
ORG= stack-of-tasks ORG= stack-of-tasks
NAME= sot-core NAME= sot-core
VERSION= 4.5.0 VERSION= 4.6.0
PKGREVISION= 1
PKGNAME= ${NAME}-v3-${VERSION} PKGNAME= ${NAME}-v3-${VERSION}
......
SHA1 (sot-core-4.5.0.tar.gz) = 16ede3f2fb97bffa3fbc84ca592abee48e9bd9c1 SHA1 (sot-core-4.6.0.tar.gz) = 007e06c3e955d9fc31aec22b3c5f80611e14ca85
RMD160 (sot-core-4.5.0.tar.gz) = 7ec0e92eee0ab50dac2af2a0d40f2f4afce8c79c RMD160 (sot-core-4.6.0.tar.gz) = f7d32e55106ae7775b6b9a54c87f499864c0914f
Size (sot-core-4.5.0.tar.gz) = 1107245 bytes Size (sot-core-4.6.0.tar.gz) = 1120031 bytes
SHA1 (patch-aa) = d0f79fa4777967d2d114a1f83ae3c9406e572f43
From 8a36be8624dd19753d115edcdb8a7e77d464a5c4 Mon Sep 17 00:00:00 2001
From: Guilhem Saurel <guilhem.saurel@laas.fr>
Date: Fri, 13 Sep 2019 13:50:57 +0200
Subject: [PATCH] include pinocchio before boost
ref https://github.com/stack-of-tasks/pinocchio/issues/849
---
include/sot/core/device.hh | 2 ++
include/sot/core/robot-simu.hh | 2 ++
2 files changed, 4 insertions(+)
diff --git a/include/sot/core/device.hh b/include/sot/core/device.hh
index f81de5ed..fe1e6693 100644
--- include/sot/core/device.hh
+++ include/sot/core/device.hh
@@ -13,6 +13,8 @@
/* --- INCLUDE --------------------------------------------------------- */
/* --------------------------------------------------------------------- */
+#include <pinocchio/fwd.hpp>
+
/* -- MaaL --- */
#include <dynamic-graph/linear-algebra.h>
namespace dg = dynamicgraph;
diff --git a/include/sot/core/robot-simu.hh b/include/sot/core/robot-simu.hh
index 60a8b56c..2c3da3e7 100644
--- include/sot/core/robot-simu.hh
+++ include/sot/core/robot-simu.hh
@@ -13,6 +13,8 @@
/* --- INCLUDE --------------------------------------------------------- */
/* --------------------------------------------------------------------- */
+#include <pinocchio/fwd.hpp>
+
/* -- MaaL --- */
#include <dynamic-graph/linear-algebra.h>
namespace dg = dynamicgraph;
--
2.17.1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment