Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ERGO-Code/basiclu
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ERGO-Code/basiclu
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: buckets
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 19 files changed
  • 2 contributors

Commits on May 12, 2019

  1. Implement basiclu_factorize_buckets().

    basiclu_factorize() now calls basiclu_factorize_buckets() with argument
    buckets = NULL. Writing a separate interface for factorization with
    buckets was necessary to maintain the old API. The implementation has
    only been tested through test_factorize() in Julia. In particular rank
    deficient matrices have not been tested.
    lschork committed May 12, 2019
    Configuration menu
    Copy the full SHA
    0c798c2 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2019

  1. Keep track of # active columns.

    Store # columns that are in any column list in struct lu.ncol_active.
    Terminate Markowitz search when # searched columns == # active columns.
    This is necessary to avoid traversing all column lists when only a few
    columns have been loaded into lists. For example, when the user provides
    a column permutation through the buckets argument, then in each
    factorization step only one column is loaded into the lists.
    lschork committed May 13, 2019
    Configuration menu
    Copy the full SHA
    3d7342c View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2020

  1. Merge branch 'master' into buckets

    Changed license to dual-licensing under GPL v3 and MIT.
    Lukas Schork committed Mar 28, 2020
    Configuration menu
    Copy the full SHA
    3927b1d View commit details
    Browse the repository at this point in the history
Loading