Explorar o código

Remove TODO SIMD (#50)

justheuristic %!s(int64=5) %!d(string=hai) anos
pai
achega
b26c1525b9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      hivemind/dht/routing.py

+ 1 - 1
hivemind/dht/routing.py

@@ -245,7 +245,7 @@ class DHTID(int):
         :return: a number or a list of numbers whose binary representations equal bitwise xor between DHTIDs.
         """
         if isinstance(other, Iterable):
-            return list(map(self.xor_distance, other))  # TODO make some SIMD
+            return list(map(self.xor_distance, other))
         return int(self) ^ int(other)
 
     @classmethod