Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This commit updates container_loops.jl to use the new iteration protocol #426

Merged
merged 2 commits into from
Sep 11, 2018

Commits on Aug 7, 2018

  1. This commit updates container_loops.jl to use the new iteration protocol

    (introduced in 0.7.0-DEV) more thoroughly. It is not compatible with 0.6.
    
    In addition, it fixes a bug in container_loops.jl in which the length()
    function when applied to subranges (i.e., inclusive(a,b,c) or
    exclusive(a,b,c)) returned the length of the whole container instead
    of the length of the subrange. (There should be no value returned
    for the length of the subrange since the data structure does not support
    an O(1) algorithm or even O(log n) algorithm to compute the length.)
    
    Some other smaller changes in this commit are as follows.
    
        IntSet was changed to BitSet (name change in 0.7.0-DEV)
        Small updates to documentation
        Some assert statements in balanced_tree.jl that were present
        during development are deleted.
    StephenVavasis committed Aug 7, 2018
    Configuration menu
    Copy the full SHA
    5092dcc View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2018

  1. Configuration menu
    Copy the full SHA
    8ac6dd4 View commit details
    Browse the repository at this point in the history