| 203 | } |
| 204 | |
| 205 | ideal idrCopyR_NoSort(ideal id, ring src_r, ring dest_r) |
| 206 | { |
| 207 | assume(src_r->cf==dest_r->cf); |
| 208 | ideal res; |
| 209 | prCopyProc_t prproc; |
| 210 | if (rField_has_simple_Alloc(dest_r)) |
| 211 | prproc = pr_Copy_NoREqual_NSimple_NoSort; |
| 212 | else |
| 213 | prproc = pr_Copy_NoREqual_NoNSimple_NoSort; |
| 214 | res = idrCopy(id, src_r, dest_r, prproc); |
| 215 | return res; |
| 216 | } |
| 217 | |
| 218 | ///////////////////////////////////////////////////////////////////////// |
| 219 | // idrShallowCopy |
no test coverage detected