In https://github.com/ApolloAuto/apollo/blob/v6.0.0/modules/planning/math/piecewise_jerk/piecewise_jerk_path_problem.cc#L84  I find P is not upper triangular matrix,and osqp 0.5.0 will trans P to upper triangular matrix by drop some elements: https://github.com/oxfordcontrol/osqp/blob/v0.5.0/src/osqp.c#L114  https://github.com/oxfordcontrol/osqp/blob/v0.5.0/src/cs.c#L288  This makes the constraint( -2 * w_dddx / delta_s^2 * x(i)'' * x(i + 1)'' ) doesn't work
In https://github.com/ApolloAuto/apollo/blob/v6.0.0/modules/planning/math/piecewise_jerk/piecewise_jerk_path_problem.cc#L84

I find P is not upper triangular matrix,and osqp 0.5.0 will trans P to upper triangular matrix by drop some elements:

https://github.com/oxfordcontrol/osqp/blob/v0.5.0/src/osqp.c#L114
https://github.com/oxfordcontrol/osqp/blob/v0.5.0/src/cs.c#L288

This makes the constraint( -2 * w_dddx / delta_s^2 * x(i)'' * x(i + 1)'' ) doesn't work