get rid of comments
This commit is contained in:
parent
1c9cc469d5
commit
cb08a542e2
@ -201,9 +201,9 @@ struct CmpLitLvTypes
|
|||||||
if (types1.lid() < types2.lid()) {
|
if (types1.lid() < types2.lid()) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// vsc if (types1.lid() == types2.lid()){
|
if (types1.lid() == types2.lid()){
|
||||||
// return types1.logVarTypes() < types2.logVarTypes();
|
return types1.logVarTypes() < types2.logVarTypes();
|
||||||
//}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -137,7 +137,7 @@ void
|
|||||||
ParfactorList::print() const
|
ParfactorList::print() const
|
||||||
{
|
{
|
||||||
Parfactors pfVec (pfList_.begin(), pfList_.end());
|
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++) {
|
for (size_t i = 0; i < pfVec.size(); i++) {
|
||||||
pfVec[i]->print();
|
pfVec[i]->print();
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
|
Reference in New Issue
Block a user