| 2822 | } |
| 2823 | |
| 2824 | ideal idMinEmbedding_with_map(ideal arg,intvec **w, ideal &trans) |
| 2825 | { |
| 2826 | int *red_comp=(int*)omAlloc((arg->rank+1)*sizeof(int)); |
| 2827 | int del=0; |
| 2828 | ideal res=idMinEmbedding1(arg,FALSE,w,red_comp,del); |
| 2829 | trans=idLift(arg,res,NULL,TRUE,FALSE,FALSE,NULL); |
| 2830 | //idDeleteComps(res,red_comp,del); |
| 2831 | omFree(red_comp); |
| 2832 | return res; |
| 2833 | } |
| 2834 | |
| 2835 | ideal idMinEmbedding_with_map_v(ideal arg,intvec **w, ideal &trans, int* g) |
| 2836 | { |
nothing calls this directly
no test coverage detected