You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Paths Between query, there is a cycle problem. if graph is undirected.
For example,
In this example, the only path not including cycle is the path( shown red ) from glyph8 to glyph17. However, algorithm also finds the paths which inludes cycles. For example, glyph17-glyph10-glyph17 is a path includes cycle.
To eliminate this problem, we need to purify the graph after we find the paths. Purify operation is mentioned in this article but details of it is not given in article. Purify operation should be implemented to solve this problem.
The text was updated successfully, but these errors were encountered:
For Paths Between query, there is a cycle problem. if graph is undirected.
For example,
In this example, the only path not including cycle is the path( shown red ) from glyph8 to glyph17. However, algorithm also finds the paths which inludes cycles. For example, glyph17-glyph10-glyph17 is a path includes cycle.
To eliminate this problem, we need to purify the graph after we find the paths. Purify operation is mentioned in this article but details of it is not given in article. Purify operation should be implemented to solve this problem.
The text was updated successfully, but these errors were encountered: