Since I am about to share my code soon with some colleagues (I am not a professional programmer, nor are they), I have recently became more comment-conscious:
1 2 3 4 5 6 7 8 9 10
template <class ElementOfCommutativeRingWithIdentity>
class Polynomial: public HashedListBasicObjects
<Monomial<ElementOfCommutativeRingWithIdentity>>
{
public:
//If your name is (**the author of the code**),
//do not use if you don't remember what it does!
//Otherwise don't use at all!
bool IsGreaterThanZeroLexicographicOrder();
};
In fact it does something completely retarded (not what you would expect based on its name!), because I was too lazy to write it in a good fashion, hence the comment :)