Skip to content
Snippets Groups Projects
Commit 66a1570e authored by Nicolas Mansard's avatar Nicolas Mansard
Browse files

Added some traces to check the task validity.

parent 376b5c5f
No related branches found
No related tags found
No related merge requests found
......@@ -716,7 +716,13 @@ namespace dynamicgraph
sotDEBUG(1) << "Vdyn = " << (MATLAB)(VectorXd)(Cdyn*solution) << std::endl;
sotDEBUG(1) << "Vcontact = " << (MATLAB)(VectorXd)(Ccontact*solution) << std::endl;
sotDEBUG(1) << "Vzmp = " << (MATLAB)(VectorXd)(Czmp*solution) << std::endl;
for( int i=0;i<(int)stack.size();++i )
{
MatrixXd & Ctask1 = Ctasks[i];
VectorBound & btask1 = btasks[i];
sotDEBUG(1) << "Vtask"<<i<<" = " << (MATLAB)(VectorXd)(Ctask1*solution) << std::endl;
sotDEBUG(1) << "btask"<<i<<" = " << btask1 << std::endl;
}
sotDEBUG(1) << "control = " << control << std::endl;
return control;
}
......
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