JAL-2480 include sequenceFeatureStore in createDatasetSequence
[jalview.git] / src / jalview / datamodel / features / NCList.java
index 6471e42..0af9d50 100644 (file)
@@ -412,8 +412,12 @@ public class NCList<T extends ContiguousI>
    */
   protected int findFirstOverlap(long from)
   {
-    // TODO binary search
-    // for now quick cheat linear search
+    /*
+     * The NCList paper describes binary search for this step,
+     * but this not implemented here as (a) I haven't understood it yet
+     * and (b) it seems to imply complications for adding to an NCList
+     */
+
     int i = 0;
     if (subranges != null)
     {