MCPcopy Create free account
hub / github.com/JeanLucPons/VanitySearch / IsLower

Method IsLower

Int.cpp:178–194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176// ------------------------------------------------
177
178bool Int::IsLower(Int *a) {
179
180 int i;
181
182 for (i = NB64BLOCK - 1; i >= 0;) {
183 if (a->bits64[i] != bits64[i])
184 break;
185 i--;
186 }
187
188 if (i >= 0) {
189 return bits64[i]<a->bits64[i];
190 } else {
191 return false;
192 }
193
194}
195
196// ------------------------------------------------
197

Callers 1

CheckMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected