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

Function kFindInTShift

kernel/GBEngine/kutil.cc:741–751  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

739
740#ifdef HAVE_SHIFTBBA
741int kFindInTShift(poly p, TSet T, int tlength)
742{
743 int i;
744
745 for (i=0; i<=tlength; i++)
746 {
747 // in the Letterplace ring the LMs in T and L are copies thus we have to use pEqualPolys() instead of ==
748 if (pEqualPolys(T[i].p, p)) return i;
749 }
750 return -1;
751}
752#endif
753
754#ifdef HAVE_SHIFTBBA

Callers 1

kTest_LFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected