Skip to content
Snippets Groups Projects
Commit e801df73 authored by Andrei Herdt's avatar Andrei Herdt Committed by Olivier Stasse
Browse files

Minor change

parent 337c48cb
No related branches found
No related tags found
No related merge requests found
......@@ -542,7 +542,8 @@ GeneratorVelRef::updateProblem(QPProblem & Pb, const std::deque<support_state_t>
Pb.clear(QPProblem::VECTOR_D);
//Intermediate vector
MAL_VECTOR(MV,double);
boost_ublas::vector<double> MV(m_N);
MV.clear();
// Final scaled products that are added to the QP
MAL_MATRIX(weightMTM,double);
......@@ -603,6 +604,8 @@ GeneratorVelRef::computeTerm(MAL_MATRIX (&weightMM, double), double weight,
{
weightMM = weight*MAL_RET_A_by_B(M1,M2);
}
void
GeneratorVelRef::computeTerm(MAL_MATRIX (&MM, double),
const MAL_MATRIX (&M1, double), const MAL_MATRIX (&M2, double))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment