Skip to content

Commit

Permalink
munkres has a known infinite loop problem. this addresses that.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoughlin committed May 2, 2024
1 parent 7200eeb commit f317666
Show file tree
Hide file tree
Showing 3 changed files with 670 additions and 2 deletions.
4 changes: 3 additions & 1 deletion gwemopt/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@
import ligo.segments as segments
import numpy as np
from astropy.time import Time
from munkres import Munkres, make_cost_matrix

from gwemopt.tiles import balance_tiles, optimize_max_tiles, schedule_alternating
from gwemopt.utils import angular_distance
from gwemopt.utils.munkres import Munkres, make_cost_matrix

# from munkres import Munkres, make_cost_matrix


def get_altaz_tile(ra, dec, observer, obstime):
Expand Down
Loading

0 comments on commit f317666

Please sign in to comment.