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

custom clustering now takes position matrix instead of distance^2 matrix #87

Open
wants to merge 48 commits into
base: custom_cluster
Choose a base branch
from

Commits on May 19, 2022

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

Commits on May 23, 2022

  1. custom clustering now takes position matrix instead of distance^2 mat…

    …rix, to allow more general clustering algorithms
    AdamOrmondroyd committed May 23, 2022
    Configuration menu
    Copy the full SHA
    1c40b21 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2022

  1. Configuration menu
    Copy the full SHA
    634a4b8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d98cd08 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a04231a View commit details
    Browse the repository at this point in the history
  4. Merge branch 'ormorod-custom_cluster' of github.com:Ormorod/PolyChord…

    …Lite into ormorod-custom_cluster
    AdamOrmondroyd committed May 24, 2022
    Configuration menu
    Copy the full SHA
    d9571a3 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2022

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

Commits on May 26, 2022

  1. added new dimension to cluster input as position_matrix is not square…

    …. I believe this is consistent with m = number of dimensions, n = number of clusters
    AdamOrmondroyd committed May 26, 2022
    Configuration menu
    Copy the full SHA
    92b3809 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    db02cc2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    876de66 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f5f8c93 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eeb83ac View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4d68c9d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b6885cb View commit details
    Browse the repository at this point in the history
  8. Merge branch 'ormorod-custom_cluster' of github.com:Ormorod/PolyChord…

    …Lite into ormorod-custom_cluster
    AdamOrmondroyd committed May 26, 2022
    Configuration menu
    Copy the full SHA
    4f638f2 View commit details
    Browse the repository at this point in the history
  9. renamed m to nDims, n to nPoints, and position_matrix (and distance2_…

    …matrix where still required) to points
    AdamOrmondroyd committed May 26, 2022
    Configuration menu
    Copy the full SHA
    7da5423 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    fa5c42d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5184835 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    3ed846c View commit details
    Browse the repository at this point in the history
  13. swapped indices over

    AdamOrmondroyd committed May 26, 2022
    Configuration menu
    Copy the full SHA
    e4622f5 View commit details
    Browse the repository at this point in the history
  14. Merge branch 'ormorod-custom_cluster' of github.com:Ormorod/PolyChord…

    …Lite into ormorod-custom_cluster
    AdamOrmondroyd committed May 26, 2022
    Configuration menu
    Copy the full SHA
    1b90073 View commit details
    Browse the repository at this point in the history
  15. Revert "swapped indices over"

    This reverts commit e4622f5.
    AdamOrmondroyd committed May 26, 2022
    Configuration menu
    Copy the full SHA
    23d8db8 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    4a9bf0a View commit details
    Browse the repository at this point in the history

Commits on May 28, 2022

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

Commits on Jun 13, 2022

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

Commits on Jun 30, 2022

  1. wrap_cluster() adds one to the cluster list, as Python algos number c…

    …lusters from 0, but fortran wants them numbered from 1
    AdamOrmondroyd committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    da78633 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'ormorod-custom_cluster' of github.com:Ormorod/PolyChord…

    …Lite into ormorod-custom_cluster
    AdamOrmondroyd committed Jun 30, 2022
    Configuration menu
    Copy the full SHA
    512fca1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    be3467a View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. Configuration menu
    Copy the full SHA
    eb412c3 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'custom_cluster' of github.com:PolyChord/PolyChordLite i…

    …nto ormorod-custom_cluster
    AdamOrmondroyd committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    9fbf7a3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    14efda1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3029e60 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    88572e3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b49fb80 View commit details
    Browse the repository at this point in the history
  7. compute_knn() computed the full nn ordering, then returned the first …

    …k, so instead just return all of them (compute_nn()) and don't bother recalculating.
    AdamOrmondroyd committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    f8dc320 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4d95077 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2d99c89 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1a561de View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f67543d View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2022

  1. Configuration menu
    Copy the full SHA
    8954de3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ebf3b91 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1102fb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4d3adcc View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. Correct root=root -> root=0 in make_resume_file (PolyChord#92)

    * neighbor spelling (assuming we're sticking to American spelling!)
    
    * change NameError catch to check whether mpy4py was installed
    
    * set root=0 rather than erroneous root=root
    
    * Revert "neighbor spelling (assuming we're sticking to American spelling!)"
    This already appears in a different PR
    
    This reverts commit f1f52ed.
    AdamOrmondroyd authored Feb 7, 2023
    Configuration menu
    Copy the full SHA
    70628a5 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2023

  1. PWD->CURDIR

    williamjameshandley committed Feb 16, 2023
    Configuration menu
    Copy the full SHA
    6cf0fc4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3084a81 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Update python3.6 CI (PolyChord#96)

    * neighbor spelling (assuming we're sticking to American spelling!)
    
    * change to checkoutv4
    
    * change to checkout@v3
    
    * change to pythonv4
    
    * change to ubuntu-20.04
    
    * return to latest ubuntu for 3.7 and 3.8, and separately include 3.6 case
    
    * include pythons up to 3.11
    
    * enclose versions in quotes
    
    * revert spelling changes
    AdamOrmondroyd authored Feb 20, 2023
    Configuration menu
    Copy the full SHA
    1854372 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cfc77c4 View commit details
    Browse the repository at this point in the history