Australia in Australia strat.
This commit is contained in:
parent
4560ecfb63
commit
7d1b4d4537
|
@ -35,12 +35,20 @@ def australiaStrat(context : Context) -> Prediction:
|
|||
hour = t.hour
|
||||
p = Prediction()
|
||||
|
||||
if hour > 22 or hour < 6:
|
||||
p.probability = 0.0
|
||||
p.reasons.append('It\'s night-time in Australia, so it must be day-time here.')
|
||||
if context.in_australia:
|
||||
if hour > 22 or hour < 6:
|
||||
p.probability = 1.0
|
||||
p.reasons.append('It\'s night-time in Australia, and that\'s where we\'re at.')
|
||||
else:
|
||||
p.probability = 0.0
|
||||
p.reasons.append('It\'s day-time in Australia, and that\'s where we\'re at.')
|
||||
else:
|
||||
p.probability = 1.0
|
||||
p.reasons.append('It\'s day-time in Australia, so it must be night-time here.')
|
||||
if hour > 22 or hour < 6:
|
||||
p.probability = 0.0
|
||||
p.reasons.append('It\'s night-time in Australia, so it must be day-time here.')
|
||||
else:
|
||||
p.probability = 1.0
|
||||
p.reasons.append('It\'s day-time in Australia, so it must be night-time here.')
|
||||
return p
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user