Skip to content

Commit

Permalink
Fixed a typo in the calculation of disbelief
Browse files Browse the repository at this point in the history
  • Loading branch information
david-istvan committed Apr 5, 2024
1 parent 77d0c63 commit b4cd824
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def normalize_belief_for_uncertainty(self):

# some floating-point issues, as usual with Python
self.b = round(self.b, 4)
self.d = round(self.b, 4)
self.d = round(self.d, 4)

def project(self):
return b + a*u
Expand Down

0 comments on commit b4cd824

Please sign in to comment.