--- branches/new_design/OOPSE-2.0/src/types/PolynomialBondType.hpp 2004/11/17 06:37:56 1746 +++ branches/new_design/OOPSE-2.0/src/types/PolynomialBondType.hpp 2004/11/17 18:58:49 1747 @@ -77,11 +77,11 @@ std::ostream& operator <<(std::ostream& os, Polynomial i = pbt.polynomial_.begin(); if (i == pbt.polynomial_.end()) { - os << "This Polynomial contains nothing" << std::endl; + os << "This PolynomialBondType contains nothing" << std::endl; return os; } - os << "This Polynomial contains below terms:" << std::endl; + os << "This PolynomialBondType contains below terms:" << std::endl; while(true){ os << i->second << "*" << "(r - " << pbt.getEquilibriumBondLength() << ")" << "^" << i->first;