osqp-eigen icon indicating copy to clipboard operation
osqp-eigen copied to clipboard

Simple Eigen-C++ wrapper for OSQP library

Results 36 osqp-eigen issues
Sort by recently updated
recently updated
newest added

This MR fixes some warnings thrown by c++17 using `-Wall` ``` In file included from /src/Solver.cpp:11:0: osqp_eigen/OsqpEigen/Solver.hpp: In constructor 'OsqpEigen::Solver::Solver()': osqp_eigen/OsqpEigen/Solver.hpp:53:14: warning: 'OsqpEigen::Solver::m_isSolverInitialized' will be initialized after [-Wreorder] bool m_isSolverInitialized;...

This will be merged after #123. Thanks to this PR it will be possible to avoid this kind of problem in the future.

Hi there, Just wanted to know how to run the tests in the tests folder when building. I tried running `make test` however, received an error stating: ``` Running tests......

I believe this issue robotology/ycm#169 is an issue here as well.

Hi! I am looking for a reference for the included [MPC example](https://github.com/robotology/osqp-eigen/blob/master/example/src/MPCExample.cpp) @GiulioRomualdi any hints on the system that corresponds to the that example? Thanks.

I am now using quadratic programming to solve a trajectory planning problem, and the test scenario is to overtake a vehicle. I try OSQP diresctly and OSQP eigen. OSQP works...

In many of my projects, I am using SIMD flags with Eigen for improved performance (e.g., march=native). This PR adds an option to enable this in gcc and clang compilers....

This is how I build the wrapper: (I am using windows btw) ``` git clone https://github.com/robotology/osqp-eigen.git cd osqp-eigen mkdir build && cd build cmake ../ cmake --build . --config Debug...

CMakeFiles/main.dir/main.cpp.o:in the function‘testQP()’: main.cpp:(.text+0x5b5):for‘OsqpEigen::Solver::Solver()’an undefined reference CMakeFiles/main.dir/main.cpp.o:in the function‘std::default_delete::operator()(OsqpEigen::Settings*) const’: main.cpp:(.text._ZNKSt14default_deleteIN9OsqpEigen8SettingsEEclEPS1_[_ZNKSt14default_deleteIN9OsqpEigen8SettingsEEclEPS1_]+0x1e):‘OsqpEigen::Settings::~Settings()’an undefined reference CMakeFiles/main.dir/main.cpp.o:in the function‘std::default_delete::operator()(OsqpEigen::Data*) const’: main.cpp:(.text._ZNKSt14default_deleteIN9OsqpEigen4DataEEclEPS1_[_ZNKSt14default_deleteIN9OsqpEigen4DataEEclEPS1_]+0x1e):‘OsqpEigen::Data::~Data()’an undefined reference collect2: error: ld returned 1 exit status src/CMakeFiles/main.dir/build.make:120: recipe for...