Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-centroidal-dynamics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Humanoid Path Planner
hpp-centroidal-dynamics
Commits
ffc898f3
Commit
ffc898f3
authored
8 years ago
by
andreadelprete
Browse files
Options
Downloads
Patches
Plain Diff
Improvements to README
parent
d41d783b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+21
-2
21 additions, 2 deletions
README.md
with
21 additions
and
2 deletions
README.md
+
21
−
2
View file @
ffc898f3
...
@@ -26,11 +26,30 @@ The test ```test_LP_solvers``` tries to solve some LP problems using qpOases and
...
@@ -26,11 +26,30 @@ The test ```test_LP_solvers``` tries to solve some LP problems using qpOases and
*
[
cdd lib
](
https://www.inf.ethz.ch/personal/fukudak/cdd_home/
)
*
[
cdd lib
](
https://www.inf.ethz.ch/personal/fukudak/cdd_home/
)
*
[
qpOases (version >= 3.0beta)
](
https://projects.coin-or.org/qpOASES
)
*
[
qpOases (version >= 3.0beta)
](
https://projects.coin-or.org/qpOASES
)
You can install cdd lib under Ubuntu 12.04 with the following command:
## Installation Steps for Ubuntu 12.04
You can install cdd lib with the following command:
```
```
sudo apt-get install libcdd-dev
sudo apt-get install libcdd-dev
```
```
For Eigen and qpOases follow the instructions at the relative webpage (links in the list above).
You can install Eigen3 with the following command:
```
sudo apt-get install libeigen3-dev
```
Install qpOases from sources following the instructions on its
[
webpage
](
https://projects.coin-or.org/qpOASES
)
.
Note that you need to compile qpOases into a dynamic library (not a static one).
Then you can build the library using CMake:
```
mkdir $ROBUST_EQUI_LIB_DIR/build
cd $ROBUST_EQUI_LIB_DIR/build
cmake -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
make install
```
Currently, CMake may have problems finding CDD and qpOases.
If this is the case you can specify their paths manually, for instance:
```
cmake -DCDD_LIBRARY=/usr/lib/libcdd.so -DqpOASES_INCLUDEDIR=${QP_OASES_DIR}/include -DqpOASES_LIB=${QP_OASES_DIR}/bin/libqpOASES.so -DCMAKE_INSTALL_PREFIX=${DEVEL_DIR}/install ..
```
### Optional
### Optional
As an alternative to qpOases you can use
[
CLP
](
https://projects.coin-or.org/Clp
)
to solve linear programs.
As an alternative to qpOases you can use
[
CLP
](
https://projects.coin-or.org/Clp
)
to solve linear programs.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment