Home | History | Annotate | Download | only in Skyline

Lines Matching refs:cout

548             //                //                std::cout << "nbLowerElts" << nbLowerElts << std::endl;
652 //EIGEN_DBG_SKYLINE(std::cout << "SkylineMatrix:: swap\n");
661 std::cout << "SkylineMatrix& operator=(const SkylineMatrix& other)\n";
688 std::cout << "upper elements : " << std::endl;
690 std::cout << m.m_data.upper(i) << "\t";
691 std::cout << std::endl;
692 std::cout << "upper profile : " << std::endl;
694 std::cout << m.m_data.upperProfile(i) << "\t";
695 std::cout << std::endl;
696 std::cout << "lower startIdx : " << std::endl;
698 std::cout << (IsRowMajor ? m.m_colStartIndex[i] : m.m_rowStartIndex[i]) << "\t";
699 std::cout << std::endl;
702 std::cout << "lower elements : " << std::endl;
704 std::cout << m.m_data.lower(i) << "\t";
705 std::cout << std::endl;
706 std::cout << "lower profile : " << std::endl;
708 std::cout << m.m_data.lowerProfile(i) << "\t";
709 std::cout << std::endl;
710 std::cout << "lower startIdx : " << std::endl;
712 std::cout << (IsRowMajor ? m.m_rowStartIndex[i] : m.m_colStartIndex[i]) << "\t";
713 std::cout << std::endl;