Skip to content
Snippets Groups Projects
Commit d2603724 authored by Pierre Fernbach's avatar Pierre Fernbach
Browse files

clean cout output

parent 87e0057b
No related branches found
No related tags found
No related merge requests found
......@@ -364,13 +364,13 @@ ResultDataCOMTraj solveEndEffector(const ProblemData& pData,const Path& path, co
if(verbose){
std::cout<<"End eff H = "<<std::endl<<H<<std::endl;
std::cout<<"End eff g = "<<std::endl<<g<<std::endl;
std::cout<<"Dim Var = "<<dimVar(pData)<<std::endl;
std::cout<<"Dim H = "<<H.rows()<<" x "<<H.cols()<<std::endl;
std::cout<<"Dim g = "<<g.rows()<<std::endl;
std::cout<<"Dim A = "<<A.rows()<<" x "<<A.cols()<<std::endl;
std::cout<<"Dim b = "<<b.rows()<<std::endl;
}
// call the solver
std::cout<<"Dim Var = "<<dimVar(pData)<<std::endl;
std::cout<<"Dim H = "<<H.rows()<<" x "<<H.cols()<<std::endl;
std::cout<<"Dim g = "<<g.rows()<<std::endl;
std::cout<<"Dim A = "<<A.rows()<<" x "<<A.cols()<<std::endl;
std::cout<<"Dim b = "<<b.rows()<<std::endl;
VectorX init = VectorX(dimVar(pData));
// init = (pData.c0_ + pData.c1_)/2.;
......
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