Skip to content

Commit

Permalink
feat(nurturing): adjust style score
Browse files Browse the repository at this point in the history
  • Loading branch information
NateScarlet committed Jun 6, 2021
1 parent 8f2ad23 commit 0bb0258
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions auto_derby/jobs/nurturing.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,18 +296,17 @@ def _running_style_single_score(


def _running_style_scores(ctx: Context, race1: race.Race) -> Tuple[float, float, float, float]:

lead = _running_style_single_score(
ctx, race1, ctx.lead, (5000, 3000, 500, 500, 1000),
)
head = _running_style_single_score(
ctx, race1, ctx.head, (4500, 2000, 1500, 500, 1500)
ctx, race1, ctx.head, (4800, 2000, 1400, 500, 1300)
)
middle = _running_style_single_score(
ctx, race1, ctx.middle, (4000, 2000, 2000, 200, 1800)
ctx, race1, ctx.middle, (4500, 1800, 2000, 200, 1500)
)
last = _running_style_single_score(
ctx, race1, ctx.last, (4000, 1500, 2500, 200, 1800)
ctx, race1, ctx.last, (4300, 1500, 2300, 200, 1700)
)

if (
Expand Down

0 comments on commit 0bb0258

Please sign in to comment.