MCPcopy Create free account
hub / github.com/Singular/Singular / operator>=

Function operator>=

IntegerProgramming/BigInt.cc:190–194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188}
189
190bool operator>=(const BigInt& a,const BigInt& b)
191{
192 if (mpz_cmp(a.value,b.value)<0) return false;
193 return true;
194}
195
196bool operator==(const BigInt& a,const BigInt& b)
197{

Callers

nothing calls this directly

Calls 1

BigIntClass · 0.85

Tested by

no test coverage detected