We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No response
sage: g=Graph('J??s[`HS@O_') sage: g.treewidth(algorithm='tdlib') 3 sage: g.treewidth(algorithm='sage') 3
This graph has treewidth 3 according to HoG.
sage: g=Graph('J??s[`HS@O_') sage: g.treewidth(algorithm='tdlib') 4 sage: g.treewidth(algorithm='sage') 3
@felix-salfelder This issue is similar to #38159. The graph J??s[`HS@O_ is given in .gr format below:
J??s[`HS@O_
p tw 11 15 1 7 1 8 2 9 2 10 3 6 3 11 4 6 4 8 4 10 5 7 5 9 5 11 6 7 8 9 10 11
The text was updated successfully, but these errors were encountered:
I found the smallest graph for which g.treewidth(algorithm='tdlib') != g.treewidth(algorithm='sage'). It has 10 vertices:
g.treewidth(algorithm='tdlib') != g.treewidth(algorithm='sage')
sage: g=Graph('I@?LShgTG') sage: g.treewidth(algorithm='tdlib') 4 sage: g.treewidth(algorithm='sage') 3 p tw 10 15 1 7 1 8 2 9 2 10 3 4 3 7 3 9 4 8 4 10 5 6 5 7 5 9 6 8 6 10 9 10
Sorry, something went wrong.
Thank you, very useful. Definitely a bug, possibly to do with preprocessing. I tried
$ ./tdecomp --ex17 < sage_bug_39404.gr > ex17.td $ ./tdecomp --ta < sage_bug_39404.gr > ta.td $ grep ^s ta.td ex17.td ta.td:s td 7 4 10 ex17.td:s td 7 5 10 <= !! $ td-validate sage_bug_39404.gr ta.td valid $ td-validate sage_bug_39404.gr ex17.td valid
iirc ex17 == pp+ta, but I need more time to debug.
No branches or pull requests
Steps To Reproduce
No response
Expected Behavior
This graph has treewidth 3 according to HoG.
Actual Behavior
Additional Information
@felix-salfelder This issue is similar to #38159. The graph
J??s[`HS@O_
is given in .gr format below:Environment
Checklist
The text was updated successfully, but these errors were encountered: