Skip to content
Snippets Groups Projects
Commit 1c79996b authored by Lukas Cejka's avatar Lukas Cejka Committed by Tomáš Oberhuber
Browse files

Commented out checking for head and tail of warpList, as they don't contain...

Commented out checking for head and tail of warpList, as they don't contain values, they're just marks to the end of the list.
parent 05b7ac24
No related branches found
No related tags found
1 merge request!45Matrices revision
......@@ -84,10 +84,10 @@ public:
// TEST
for( warpInfo< MatrixType >* i = this->getHead(); i != this->getTail()->next; i = i->next )
{
if( i == this->getHead() )
std::cout << "Head:" << "\ti->localLoad = " << i->localLoad << "\ti->offset = " << i->offset << "\ti->rowOffset = " << i->rowOffset << std::endl;
else if( i == this->getTail() )
std::cout << "Tail:" << "\ti->localLoad = " << i->localLoad << "\ti->offset = " << i->offset << "\ti->rowOffset = " << i->rowOffset << std::endl;
if( i == this->getHead() );
// std::cout << "Head:" << "\ti->localLoad = " << i->localLoad << "\ti->offset = " << i->offset << "\ti->rowOffset = " << i->rowOffset << std::endl;
else if( i == this->getTail() );
// std::cout << "Tail:" << "\ti->localLoad = " << i->localLoad << "\ti->offset = " << i->offset << "\ti->rowOffset = " << i->rowOffset << std::endl;
else
std::cout << "\ti->localLoad = " << i->localLoad << "\ti->offset = " << i->offset << "\ti->rowOffset = " << i->rowOffset << std::endl;
}
......
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