get rid of comments

This commit is contained in:
Vitor Santos Costa 2013-04-16 21:14:05 +01:00
parent 1c9cc469d5
commit cb08a542e2
2 changed files with 4 additions and 4 deletions

View File

@ -201,9 +201,9 @@ struct CmpLitLvTypes
if (types1.lid() < types2.lid()) {
return true;
}
// vsc if (types1.lid() == types2.lid()){
// return types1.logVarTypes() < types2.logVarTypes();
//}
if (types1.lid() == types2.lid()){
return types1.logVarTypes() < types2.logVarTypes();
}
return false;
}
};

View File

@ -137,7 +137,7 @@ void
ParfactorList::print() const
{
Parfactors pfVec (pfList_.begin(), pfList_.end());
// vsc std::sort (pfVec.begin(), pfVec.end(), sortByParams());
std::sort (pfVec.begin(), pfVec.end(), sortByParams());
for (size_t i = 0; i < pfVec.size(); i++) {
pfVec[i]->print();
std::cout << std::endl;