Skip to content

Commit f17d721

Browse files
committed
Merge branch 'v3.0.2' of github.com:ethz-adrl/control-toolbox into v3.0.2
2 parents 4ee6a33 + b4684fe commit f17d721

20 files changed

+449
-216
lines changed

.github/workflows/ccpp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ControlToolbox CI
1+
name: unit tests
22

33
on:
44
pull_request:
+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
name: build examples (incl. hpipm)
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- v3*
7+
- 3*
8+
- 4*
9+
- 2*
10+
- v2*
11+
- master
12+
schedule:
13+
- cron: "0 2 * * 0"
14+
15+
jobs:
16+
ct_build_ex:
17+
runs-on: ${{ matrix.os }}
18+
strategy:
19+
matrix:
20+
os: [ubuntu-16.04, ubuntu-18.04]
21+
compiler: [gcc, clang]
22+
23+
steps:
24+
- name: checkout code
25+
uses: actions/checkout@v2
26+
- name: Install cmake
27+
run: |
28+
sudo apt-get update >/dev/null # suppress output
29+
sudo apt-get install cmake >/dev/null # suppress output
30+
- name: Create workspace
31+
run: |
32+
mkdir -p ~/catkin_ws/src
33+
cd ~/catkin_ws/src
34+
ln -s $GITHUB_WORKSPACE .
35+
- name: Install Gtest
36+
run: |
37+
sudo apt-get update >/dev/null # suppress output
38+
sudo apt-get install cmake >/dev/null # suppress output
39+
sudo apt install libgtest-dev >/dev/null # suppress output
40+
cd /usr/src/gtest/ >/dev/null # suppress output
41+
sudo mkdir build && cd build >/dev/null # suppress output
42+
sudo cmake .. -DBUILD_SHARED_LIBS=ON >/dev/null # suppress output
43+
sudo make >/dev/null # suppress output
44+
sudo cp *.so /usr/lib >/dev/null # suppress output
45+
cd ~/ >/dev/null # suppress output
46+
- name: Install deb-packaged dependencies
47+
run: |
48+
cd ~/catkin_ws/src/control-toolbox/ct
49+
chmod 775 install_deps.sh
50+
sudo ./install_deps.sh
51+
- name: Install blasfeo and hpipm
52+
run: |
53+
cd ~/catkin_ws/src/control-toolbox/ct
54+
chmod 775 install_hpipm.sh
55+
sudo ./install_hpipm.sh
56+
- name: build ct_core examples
57+
continue-on-error: false
58+
env:
59+
CC: ${{ matrix.compiler }}
60+
run: |
61+
cd ~/catkin_ws/src/control-toolbox/ct_core
62+
mkdir build && cd build
63+
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=false -DBUILD_EXAMPLES=true -DCMAKE_CXX_FLAGS="-w"
64+
make
65+
sudo make install
66+
- name: build ct_optcon examples, also those requiring hpipm.
67+
continue-on-error: false
68+
env:
69+
CC: ${{ matrix.compiler }}
70+
run: |
71+
cd ~/catkin_ws/src/control-toolbox/ct_optcon
72+
mkdir build && cd build
73+
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=false -DBUILD_EXAMPLES=true -DCMAKE_CXX_FLAGS="-w"
74+
make
75+
sudo make install

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ CMakeCache.txt
99
!Findhpipm.cmake
1010
!FindCppAD.cmake
1111
!FindCppADCG.cmake
12-
!Findllvm.cmake
13-
!Findclang.cmake
12+
!FindLLVM.cmake
13+
!FindClang.cmake
1414
!ct_core/cmake/ct_coreConfig.cmake
1515
!ct_optcon/cmake/ct_optconConfig.cmake
1616
!ct_rbd/cmake/ct_rbdConfig.cmake

ct/install_cppadcg.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ yes Y | sudo apt-get install llvm
99
## install CppAD
1010
mkdir /tmp/cppadcg_deps
1111
cd /tmp/cppadcg_deps
12-
wget https://github.com/coin-or/CppAD/archive/20200000.2.tar.gz
13-
tar -xzf 20200000.2.tar.gz
14-
cd CppAD-20200000.2
12+
wget https://github.com/coin-or/CppAD/archive/20200000.3.tar.gz
13+
tar -xzf 20200000.3.tar.gz
14+
cd CppAD-20200000.3
1515
mkdir build
1616
cd build
1717
cmake -Dcppad_prefix:PATH='/usr/local' ..
@@ -21,9 +21,9 @@ sudo make install
2121
## install CppADCodeGen
2222
git clone https://github.com/joaoleal/CppADCodeGen.git /tmp/CppADCodeGen
2323
cd /tmp/CppADCodeGen
24-
git checkout v2.4.2 ## commit matching Cppad 2020 version
24+
git checkout v2.4.3
2525
mkdir -p build
2626
cd build
27-
cmake .. #-DLLVM_VERSION=6.0
27+
cmake ..
2828
make
2929
sudo make install

ct/install_hpipm.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Now installing blasfeo, using a specific commit/tag (!)"
55
cd /tmp
66
git clone https://github.com/giaf/blasfeo.git
77
cd /tmp/blasfeo
8-
git checkout 50dc49e # we currently are on this release
8+
git checkout cc90e14 # we currently are on this commit.
99
make static_library
1010
sudo make install_static
1111

@@ -14,7 +14,7 @@ echo "Now installing hpipm, using a specific commit/tag (!)"
1414
cd /tmp
1515
git clone https://github.com/giaf/hpipm.git
1616
cd /tmp/hpipm
17-
git checkout 0.1.2
17+
git checkout 5d9909f # we currently are on this commit.
1818
make static_library
1919
make examples
2020
sudo make install_static

ct_core/CMakeLists.txt

+11-5
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ find_package(Eigen3 REQUIRED)
2121
find_package(Boost COMPONENTS REQUIRED)
2222

2323
## find and include optional dependencies
24-
find_package(llvm QUIET)
25-
find_package(clang QUIET)
24+
find_package(LLVM QUIET)
25+
find_package(Clang QUIET)
2626
if(LLVM_FOUND AND CLANG_FOUND)
2727
message(STATUS "Found LLVM/CLANG version " ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR})
2828
set (LLVM ON)
@@ -100,10 +100,14 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/ct/core/templateDir.h.in ${CM
100100
## define the directories to be included in all ct_core targets
101101
list(APPEND ct_core_target_include_dirs ${EIGEN3_INCLUDE_DIR})
102102
if(${CMAKE_VERSION} VERSION_LESS "3.12.0")
103-
list(APPEND ct_core_target_include_dirs ${PYTHON_INCLUDE_DIRS})
103+
if(PYTHONLIBS_FOUND)
104+
list(APPEND ct_core_target_include_dirs ${PYTHON_INCLUDE_DIRS})
105+
endif()
104106
else()
105-
list(APPEND ct_core_target_include_dirs ${Python_INCLUDE_DIRS})
106-
list(APPEND ct_core_target_include_dirs ${Python_NumPy_INCLUDE_DIRS})
107+
if(Python_FOUND AND ${Python_VERSION_MAJOR} EQUAL 3)
108+
list(APPEND ct_core_target_include_dirs ${Python_INCLUDE_DIRS})
109+
list(APPEND ct_core_target_include_dirs ${Python_NumPy_INCLUDE_DIRS})
110+
endif()
107111
endif()
108112
list(APPEND ct_core_target_include_dirs ${QWT_INCLUDE_DIR})
109113
list(APPEND ct_core_target_include_dirs $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>)
@@ -146,6 +150,8 @@ target_link_libraries(ct_core INTERFACE
146150
dl # required for gcc compatibility
147151
)
148152

153+
set(ct_core ct_core CACHE INTERNAL "ct_core library target.")
154+
set(ct_plot ct_plot CACHE INTERNAL "ct_plot library target.")
149155

150156
##################
151157
# BUILD EXAMPLES #

ct_core/cmake/Findclang.cmake ct_core/cmake/FindClang.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ FIND_PATH(CLANG_INCLUDE_DIRS clang/Basic/Version.h HINTS ${LLVM_INCLUDE_DIRS})
4444
INCLUDE(FindPackageHandleStandardArgs)
4545
# handle the QUIETLY and REQUIRED arguments and set CLANG_FOUND to TRUE
4646
# if all listed variables are TRUE
47-
find_package_handle_standard_args(CLANG DEFAULT_MSG
47+
find_package_handle_standard_args(Clang DEFAULT_MSG
4848
CLANG_INCLUDE_DIRS
4949
CLANG_LIBS)
5050

51-
MARK_AS_ADVANCED(CLANG_INCLUDE_DIRS CLANG_LIBS)
51+
MARK_AS_ADVANCED(CLANG_INCLUDE_DIRS CLANG_LIBS)

ct_core/cmake/FindCppADCG.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ELSE()
3838
INCLUDE(FindPackageHandleStandardArgs)
3939
# handle the QUIETLY and REQUIRED arguments and set CPPADCG_FOUND to TRUE
4040
# if all listed variables are TRUE
41-
find_package_handle_standard_args(CppAD DEFAULT_MSG
41+
find_package_handle_standard_args(CppADCG DEFAULT_MSG
4242
CPPADCG_INCLUDE_DIRS)
4343

4444
MARK_AS_ADVANCED(CPPADCG_INCLUDE_DIRS CPPADCG_LIBRARIES)
File renamed without changes.

ct_doc/doc/changelog.dox

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
For a complete list of changes, we encourage you to check out our git repository at https://github.com/ethz-adrl/control-toolbox
77

88
\section cl_v302 Version 3.0.2
9-
- upgraded HPIPM to version 0.1.1, which simplified the interface for getting Riccati-matrices from the solver
9+
- upgraded HPIPM to a version close to master, which simplified the interface for getting Riccati-matrices from the solver
1010
- resolved ordering-bug for box-constraints
1111
- switched back to differential formulation of LQ problems to maintain comparability with other solutions
1212
- simplified user-interface to the 7 different iLQR-style solver variants
1313
- removed copied code from external repos (CppAD and CppADCodeGen) and provided install script instead
1414

15-
\section cl_v301 Version 3.0.2
15+
\section cl_v301 Version 3.0.1
1616
- enabled compatibility with pure cmake (no catkin or ROS required anymore)
1717
- fixed bug in explicit template prespecification
1818
- fixed bug in exporting dependencies on external solvers

ct_doc/doc/installation.dox

+3-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,9 @@ The following dependencies and bindings are optional but can help to enhance the
136136
(for ct::optcon::SnoptSolver and ct::optcon::IpoptSolver as used by ct::optcon::DMS)
137137

138138
- <a href="https://github.com/giaf/blasfeo">blasfeo</a> linear algebra and <a href="https://github.com/giaf/hpipm">HPIPM solver</a> as
139-
alternative high-performance (constrained) linear-quadratic optimal control solver. The CT currently supports hpipm version 0.1.2.
140-
Detailed reference about blasefeo can be found <a href="https://arxiv.org/abs/1704.02457">here</a>.
139+
alternative high-performance (constrained) linear-quadratic optimal control solver. The CT currently supports a hpipm version close to master.
140+
Please use the script install_hpipm.sh in control-toolbox/ct in order to retrieve a version of hpipm which is guaranteed to be tested
141+
in combination with CT. Detailed reference about blasefeo can be found <a href="https://arxiv.org/abs/1704.02457">here</a>.
141142
Both packages were developed by <a href="https://www.syscop.de/people/dr-gianluca-frison">Gianluca Frison</a>, <a href="https://www.syscop.de/">University of Freiburg</a>.
142143
Warning note : When installing blasfeo, a configuration step may be necessary. See https://blasfeo.syscop.de/docs/install/#configuration for how to set the build target to your architecture.
143144
We advice to run the tests provided by blasfeo to check the correct installation. If not configured properly, blasfeo may be installed succesfully, the CT may be built succesfully with hpipm dependencies, but a "illegal operation (core dumped)" is raised when calling hpipm.

ct_models/CMakeLists.txt

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
cmake_minimum_required (VERSION 3.5)
22

3-
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/compilerSettings.cmake)
4-
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/explicitTemplateHelpers.cmake)
5-
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/clang-cxx-dev-tools.cmake)
3+
if(NOT TARGET clang-format)
4+
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/compilerSettings.cmake)
5+
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/explicitTemplateHelpers.cmake)
6+
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/clang-cxx-dev-tools.cmake)
7+
endif()
68
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/ct-cmake-helpers.cmake)
79

810

@@ -12,7 +14,9 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
1214
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wfatal-errors -std=c++14 -Wall -Wno-unknown-pragmas")
1315
set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
1416

15-
find_package(ct_rbd REQUIRED)
17+
if(NOT TARGET ${ct_rbd})
18+
find_package(ct_rbd REQUIRED)
19+
endif()
1620
find_package(Boost REQUIRED system filesystem)
1721

1822
# extract interface compile definitions from previous ct packages as options

ct_optcon/CMakeLists.txt

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
cmake_minimum_required (VERSION 3.5)
22

3-
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/compilerSettings.cmake)
4-
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/explicitTemplateHelpers.cmake)
5-
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/clang-cxx-dev-tools.cmake)
3+
if(NOT TARGET clang-format)
4+
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/compilerSettings.cmake)
5+
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/explicitTemplateHelpers.cmake)
6+
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/clang-cxx-dev-tools.cmake)
7+
endif()
68
include(${CMAKE_CURRENT_SOURCE_DIR}/../ct/cmake/ct-cmake-helpers.cmake)
79

810

@@ -16,7 +18,9 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
1618

1719

1820
## find and include required dependencies
19-
find_package(ct_core REQUIRED)
21+
if(NOT TARGET ${ct_core})
22+
find_package(ct_core REQUIRED)
23+
endif()
2024
# extract interface compile definitions from ct_core as options
2125
importInterfaceCompileDefinitionsAsOptions(ct_core)
2226

@@ -57,13 +61,14 @@ else(LAPACK_FOUND)
5761
endif(LAPACK_FOUND)
5862

5963

60-
## include HPIPM
64+
## include blasfeo and hpipm, assumed to be installed in "/opt"
65+
list(APPEND CMAKE_PREFIX_PATH "/opt")
6166
find_package(blasfeo QUIET)
6267
find_package(hpipm QUIET)
6368
if(blasfeo_FOUND AND hpipm_FOUND)
6469
message(STATUS "Found HPIPM and BLASFEO")
6570
set(HPIPM ON)
66-
list(APPEND HPIPM_LIBS ${hpipm_LIBRARIES} ${blasfeo_LIBRARIES})
71+
list(APPEND HPIPM_LIBS hpipm blasfeo)
6772
list(APPEND ct_optcon_COMPILE_DEFINITIONS HPIPM)
6873
else()
6974
message(WARNING "Could not find HPIPM or BLASFEO")
@@ -156,6 +161,7 @@ target_link_libraries(ct_optcon INTERFACE
156161
${PRESPEC_LIB_NAMES}
157162
)
158163

164+
set(ct_optcon ct_optcon CACHE INTERNAL "ct_optcon library target.")
159165

160166
##################
161167
# BUILD EXAMPLES #

ct_optcon/cmake/Findblasfeo.cmake

-42
This file was deleted.

ct_optcon/cmake/Findhpipm.cmake

-42
This file was deleted.

0 commit comments

Comments
 (0)