| 251 | } |
| 252 | |
| 253 | static void insert_into_cache_term(cache_term *T, const poly multiplier, |
| 254 | const poly p) |
| 255 | { |
| 256 | const ring r = currRing; |
| 257 | T->insert(cache_term::value_type(p_Head(multiplier, r), p_Copy(p, r))); |
| 258 | } |
| 259 | |
| 260 | static poly get_from_cache_term(const cache_term::const_iterator itr, |
| 261 | const poly multiplier) |
no test coverage detected