| 853 | |
| 854 | STATIC_VAR ring hilb_Qt=NULL; |
| 855 | static BOOLEAN isModule(ideal A, const ring src) |
| 856 | { |
| 857 | if ((src->VarOffset[0]== -1) |
| 858 | || (src->pCompIndex<0)) |
| 859 | return FALSE; // ring without components |
| 860 | for (int i=0;i<IDELEMS(A);i++) |
| 861 | { |
| 862 | if (A->m[i]!=NULL) |
| 863 | { |
| 864 | if (p_GetComp(A->m[i],src)>0) |
| 865 | return TRUE; |
| 866 | else |
| 867 | return FALSE; |
| 868 | } |
| 869 | } |
| 870 | return FALSE; |
| 871 | } |
| 872 | |
| 873 | void hLookSeries(ideal S, intvec *modulweight, ideal Q, intvec *wdegree) |
| 874 | { |
no outgoing calls
no test coverage detected