astroplan icon indicating copy to clipboard operation
astroplan copied to clipboard

created a weighted scorer and started writing tests

Open kvyh opened this issue 9 years ago • 2 comments

I created a weighted scorer that scores by running (in essense):

total_score = np.zeros(len(blocks))
for i, block in enumerate(blocks):
    score = sum([constraint.weight * constraint(....) for constraint in block.constraints])
    score /= sum(weights)
    total_score[i] = score

kvyh avatar Aug 23 '16 02:08 kvyh

Hey @kvyh, I'm not sure why this PR is still hanging around and not merged – was there anything left to do on this one, or shall I merge it?

bmorris3 avatar Feb 02 '17 16:02 bmorris3

@bmorris3 - Could we start with the bugfixes, to make sure new features do still work as expected? The green status here is misleading as it was green many month ago before things started to brake.

bsipocz avatar Feb 02 '17 16:02 bsipocz