Explorar el Código

No, don't parallelize; use weighed key comparison.

Stefano Cossu hace 6 años
padre
commit
9ae394aa24
Se han modificado 1 ficheros con 7 adiciones y 2 borrados
  1. 7 2
      lakesuperior/model/structures/keyset.pyx

+ 7 - 2
lakesuperior/model/structures/keyset.pyx

@@ -144,8 +144,13 @@ cdef class Keyset:
         """
         cdef size_t i
 
-        for i in prange(self.free_i):
-            if memcmp(val, self.data + i, TRP_KLEN) == 0:
+        for i in range(self.free_i):
+            # o is least likely to match.
+            if (
+                val[0][2] == self.data[i][2] and
+                val[0][0] == self.data[i][0] and
+                val[0][1] == self.data[i][1]
+            ):
                 return True
         return False