-
-
Notifications
You must be signed in to change notification settings - Fork 528
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
Find all the minimal separators of a graph #37743
Labels
Comments
This is certainly a good idea to add a method for generating these separators. |
Great! I already have the algorithm written down. I will add a PR asap and link it here. |
may be in file |
5 tasks
vbraun
pushed a commit
to vbraun/sage
that referenced
this issue
Jan 23, 2025
Fixes sagemath#37743. Adds an iterator over the minimal separators of an undirected graphs. We also fix the behavior of some methods using parameter `forbidden_vertices` (added in sagemath#39151) when the input is an iterator. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. - [x] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - sagemath#12345: short description why this is a dependency --> <!-- - sagemath#34567: ... --> URL: sagemath#39341 Reported by: David Coudert Reviewer(s): Dima Pasechnik
vbraun
pushed a commit
to vbraun/sage
that referenced
this issue
Jan 25, 2025
Fixes sagemath#37743. Adds an iterator over the minimal separators of an undirected graphs. We also fix the behavior of some methods using parameter `forbidden_vertices` (added in sagemath#39151) when the input is an iterator. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. - [x] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - sagemath#12345: short description why this is a dependency --> <!-- - sagemath#34567: ... --> URL: sagemath#39341 Reported by: David Coudert Reviewer(s): Dima Pasechnik
vbraun
pushed a commit
to vbraun/sage
that referenced
this issue
Jan 26, 2025
Fixes sagemath#37743. Adds an iterator over the minimal separators of an undirected graphs. We also fix the behavior of some methods using parameter `forbidden_vertices` (added in sagemath#39151) when the input is an iterator. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. - [x] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - sagemath#12345: short description why this is a dependency --> <!-- - sagemath#34567: ... --> URL: sagemath#39341 Reported by: David Coudert Reviewer(s): Dima Pasechnik
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem Description
Implement a function to find the list of all the minimal separators of a graph based on Berry's algorithm.
Proposed Solution
Implement the algorithm from this paper for finding all the minimal separators of a graph: https://doi.org/10.1007/3-540-46784-X_17
Alternatives Considered
Some other alternatives were considered, but the most useful use case at the time was to find all the minimal separators in one go for which, Berry's algorithm seemed fit.
Additional Information
No response
Is there an existing issue for this?
The text was updated successfully, but these errors were encountered: