Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ARenanse authored May 7, 2020
1 parent 94e6e96 commit f3f4585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ReplicaABC.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def run(self):

#Calculate Likelihood Probability with the Theta_proposal and New Proposals for Miscellaneous Parameters.(Note this is a log probability)
LHProposalProb, infoLH = self.Likelihood(MiscProposalList, Theta_proposal)
if (len(infoLH == 0) or (infoLH[0] == None)):
if ((len(infoLH) == 0) or (infoLH[0] == None)):
maxLoss = None

else:
Expand Down

0 comments on commit f3f4585

Please sign in to comment.