MCPcopy Create free account
hub / github.com/Singular/Singular / idMinEmbedding_with_map

Function idMinEmbedding_with_map

kernel/ideals.cc:2824–2833  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2822}
2823
2824ideal 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
2835ideal idMinEmbedding_with_map_v(ideal arg,intvec **w, ideal &trans, int* g)
2836{

Callers

nothing calls this directly

Calls 2

idMinEmbedding1Function · 0.85
idLiftFunction · 0.85

Tested by

no test coverage detected