roboptim-core icon indicating copy to clipboard operation
roboptim-core copied to clipboard

RobOptim Core Layer: interface and basic mathematical tools

Results 18 roboptim-core issues
Sort by recently updated
recently updated
newest added

Dear all, I have tried to download the repo through the following command ``` git clone --recursive https://github.com/roboptim/roboptim-core.git ``` as suggested due to the presence of submodules. But I obtain...

I built the entire 3.1 version of the library using Robotpkg, since the Ubuntu version is only the 2.0 one, while . The library was built, but then i implemented...

Using the the branch `origin/dev` I receive the following errors: ``` ndehio@ndehio-5540:~/src/roboptim-core/build$ make /usr/bin/cmake -H/home/ndehio/src/roboptim-core -B/home/ndehio/src/roboptim-core/build --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /home/ndehio/src/roboptim-core/build/CMakeFiles /home/ndehio/src/roboptim-core/build/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[1]: Entering...

Some people are interested in using RobOptim on Windows, so this is worth investigating. @kayusawa could you make a summary of your tests regarding the compilation of RobOptim on Windows?...

enhancement

While most plugins do query the full constraint Jacobian through `impl_jacobian`, CFSQP can and does query single rows of the Jacobian matrix (e.g. gradient w.r.t. the `i`-th parameter for the...

guidelines

Compilation currently fails on Travis with `osx` + `gcc-4.8`. It seems that system includes (e.g. `-isystem /usr/include`) end up being treated as normal includes (`-I/usr/include`), and warnings in Eigen become...

bug
travis

This issue list known Eigen bugs that may impact RobOptim users: - [ ] [Crash when accessing sparse matrix row](http://eigen.tuxfamily.org/bz/show_bug.cgi?id=980) - fixed in Eigen's [3fcd51f0b38a](https://bitbucket.org/eigen/eigen/commits/3fcd51f0b38a/) (v3.2) - [ ] [Error...

bug
external dependency

QP solvers usually describe quadratic functions as: ``` f(x) = 0.5 x^T H x + x^T g + λ ``` but in RobOptim, `GenericNumericQuadraticFunction` considers: ``` f(x) = x^T A...

enhancement

enhancement
external dependency

cc @thomas-moulard C++14 is out, and the urge to use C++11 features is getting strong. What is currently stopping us from moving to C++11? Ubuntu 12.04's GCC? Most features seem...

enhancement