Reset this polynomial Enumerator with a different input polynomial
| 52 | |
| 53 | /// Reset this polynomial Enumerator with a different input polynomial |
| 54 | void Reset(poly p) |
| 55 | { |
| 56 | m_poly = p; |
| 57 | m_position = const_cast<poly>(&m_prevposition_struct); |
| 58 | assume( !IsValid() ); |
| 59 | } |
| 60 | |
| 61 | /// This enumerator is an empty polynomial by default |
| 62 | CBasePolyEnumerator(poly p = NULL): |
no outgoing calls
no test coverage detected