-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add code for MDP paper #720
Conversation
@@ -1411,6 +1411,15 @@ function construct_belief_update( | |||
end | |||
outgoing_belief[node_i] = PY_X * PX / PY | |||
end | |||
if length(outgoing_belief) == 2 | |||
for (node_i, belief) in incoming_belief | |||
if belief < 1e-6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to think about this. We encounter numerical issues as we approach the edge of the belief space
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #720 +/- ##
==========================================
+ Coverage 93.40% 93.41% +0.01%
==========================================
Files 27 27
Lines 3397 3404 +7
==========================================
+ Hits 3173 3180 +7
Misses 224 224 ☔ View full report in Codecov by Sentry. |
No description provided.