ソースを参照

Minor tweaks in Keyset.

Stefano Cossu 6 年 前
コミット
dd907931b2
1 ファイル変更2 行追加2 行削除
  1. 2 2
      lakesuperior/model/structures/keyset.pyx

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

@@ -26,7 +26,7 @@ cdef class Keyset:
     data block, so e.g. bulk removal and intersection are much more efficient
     than individual record operations.
     """
-    def __cinit__(self, size_t capacity=0, expand_ratio=.75):
+    def __cinit__(self, size_t capacity=0, float expand_ratio=.75):
         """
         Initialize and allocate memory for the data set.
 
@@ -58,7 +58,7 @@ cdef class Keyset:
         """
         Place the cursor at a certain index, 0 by default.
         """
-        self.cur = idx
+        self.cur = min(idx, self.free_i)
 
 
     cdef size_t size(self):