-
Notifications
You must be signed in to change notification settings - Fork 34
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
DPW visualization #74
Conversation
90ab308
to
2a57ed9
Compare
@zsunberg BTW: I would have expected that |
Codecov Report
@@ Coverage Diff @@
## master #74 +/- ##
==========================================
+ Coverage 83.68% 83.87% +0.19%
==========================================
Files 11 11
Lines 423 428 +5
==========================================
+ Hits 354 359 +5
Misses 69 69
Continue to review full report at Codecov.
|
That option is just to keep the D3Tree constructor from getting into an infinite loop if there are cycles, so it is a slightly different concept from detecting whether two children are the same. I think we should allow people to display D3Trees with two child nodes that are the same if they want to for some reason. So we should not fix that. |
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.
Looks good - thanks!
@lassepe do you think we should tag a new bugfix version, or just let this live in master for a while |
I'm a fan of "tag early and often" but for me this is not urgent. I just came across this bug when using DPW-MCTS for a toy project. |
Ok, I will wait for CompatHelper to run and then tag a new one. - Zach
…On Fri, Oct 23, 2020 at 2:49 PM Lasse Peters ***@***.***> wrote:
@lassepe <https://github.com/lassepe> do you think we should tag a new
bugfix version, or just let this live in master for a while
I'm a fan of "tag early and often" but for me this is not urgent. I just
came across this bug when using DPW-MCTS for a toy project.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#74 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABALI22KYYHNCEIYV4QOC43SMHT5JANCNFSM4S4R22EQ>
.
|
The D3tree visualization of the DPW includes duplicate state nodes even if
check_repeat_state = true
is passed. This is due to the fact that the visualization method usestree.transitions
even iftree.unique_transitions
is available.