accord-core/src/main/java/accord/utils/SortedArrays.java [1252:1278]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (c < 0)
            {
                to = i;
            }
            else if (c > 0)
            {
                from = i + 1;
            }
            else
            {
                switch (op)
                {
                    default: throw new IllegalStateException();
                    case FAST:
                        return i;

                    case CEIL:
                        to = found = i;
                        break;

                    case FLOOR:
                        found = i;
                        from = i + 1;
                }
            }
        }
        return found >= 0 ? found : -1 - to;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



accord-core/src/main/java/accord/utils/SortedArrays.java [1307:1333]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (c < 0)
            {
                to = i;
            }
            else if (c > 0)
            {
                from = i + 1;
            }
            else
            {
                switch (op)
                {
                    default: throw new IllegalStateException();
                    case FAST:
                        return i;

                    case CEIL:
                        to = found = i;
                        break;

                    case FLOOR:
                        found = i;
                        from = i + 1;
                }
            }
        }
        return found >= 0 ? found : -1 - to;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



