Presentation is loading. Please wait.

Presentation is loading. Please wait.

Interval, circle graphs and circle graph recognition using split decomposition Presented by Steven Correia Kent state university Nov-18-2011

Similar presentations


Presentation on theme: "Interval, circle graphs and circle graph recognition using split decomposition Presented by Steven Correia Kent state university Nov-18-2011"— Presentation transcript:

1 Interval, circle graphs and circle graph recognition using split decomposition Presented by Steven Correia Kent state university Nov-18-2011 Email: scorreia@kent.edu 1 Based on :[1][4]

2 Background and motivation Can highly connectivity of protein in cells be found easily? How should I manage routing of wires in VLSI ? How should I do memory management in small devices like PDA and cell phones? 2 http://pixiedusthealing.blogspot.com/2011/03/earth-hour-internal-versus-external.html

3 Background and motivation Can highly connectivity of protein in cells be found easily? How should I manage routing of wires in VLSI ? How should I do memory management in small devices like PDA and cell phones? Solution I think intersection model can be used. 3 http://pixiedusthealing.blogspot.com/2011/03/earth-hour-internal-versus-external.html

4 4 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

5 Interval graph – intersection model An intersection graph of a multi-set of intervals on the real line. A vertex corresponds to an interval where as an edge between every pair of vertices corresponding to intervals that overlaps. Let {I1, I2,..., In} ⊂ P(R) be a set of intervals. The corresponding interval graph is G = (V, E), where V = {I1, I2,..., In}, and {Iα, Iβ} ∈ E if and only if Iα ∩ Iβ ≠ ∅. 5 based on:[4]

6 Circle graph – intersection model An intersection graph of set of chords of circle This is an undirected graph whose vertices can be associated with chords of a circle such that two vertices are adjacent if and only if the corresponding chords cross each other The chromatic number of a circle graph is the minimum number of colors that can be used to color its chords so no two chords intersects that has the same color 6 based on:[4]

7 7 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

8 Forbidden interval graphs (e.g.: asteroid triple graph) Forbidden circle graphs Forbidden graphs 8 Images taken from:[1][4]

9 9 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References

10 Related work 10

11 11 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

12 Modular decomposition How should I decompose a graph? 12 based on:[2]

13 Modular decomposition How should I decompose a graph? 13 I’ll find its Modules! based on:[2]

14 Modular decomposition Module. AKA: Autonomous set Closed set Stable set Clump Committee Externally Related Set Interval Non simplifiable Sub-networks Partite Set 14

15 Modular decomposition Modular Decomposition : A Module is a set of vertices that are indistinguishable from outside 15 based on:[2] B C E f g h j k

16 Modular decomposition Modular Decomposition : A Module is a set of vertices that are indistinguishable from outside 16 based on:[2] B C E f g h j k

17 Modular decomposition Modular Decomposition : A Module is a set of vertices that are indistinguishable from outside 17 Not a module! based on:[2] B C E f g h k j

18 Another way to view a module Biclique : biclique(complete bipartite graph) is a special kind of bipartite graph where every vertex of the first set is connected to every vertex of the second set. A complete bipartite graph, G := (V 1 + V 2, E), is a bipartite graph such that for any two vertices, v 1 ∈ V 1 and v 2 ∈ V 2, v 1 v 2 is an edge in G. The complete bipartite graph with partitions of size |V 1 |=m and |V 2 |=n, is denoted K m,n. 18 Module based on:[2]

19 Between two modules Another way to see this: Module No module can contain vertices from both sets! 19 based on:[2]

20 Modular decomposition Separating a Module: 20 based on:[2]

21 Modular decomposition Separating a Module: Any two disjoint modules form either a biclique or are disconnected 21 based on:[2]

22 The Quotient graph When placing a vertex instead of each maximal module, we get the quotient graph Modular decomposition is also called Substitution Decomposition, or S- decomposition Quotient graph 22 based on:[2]

23 The Quotient graph The quotient graph can again have modules! Thus: Recursive Structure! 23 based on:[2]

24 The degenerate/prime tree Modules: {a,b,c},{d},{e,f,g},{a,b,c,d,e,f,g} A node corresponds to the set of all its leaves All modules are all: node OR: union of children of D-node 24 based on:[2] P_4 has no nontrivial modules!

25 C E D D D B C E f g h j k DD f g D h jk The degenerate/prime tree cont.. For D nodes the quotient graph is without edges or is a clique! 25 based on:[2]

26 26 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

27 The split decomposition 27 based on:[1]

28 After decomposition we find the exact location on circle arc where the chord could be placed. The idea of the algorithm is one can prove in O(n 2 ) time that a graph is indecomposable (prime graph) with respect to split decomposition. Algorithm produce circular ordering of vertices in that time and check if that circular ordering correctly represents G. The split decomposition cont.. We get a quotient graph such that for each pair of parts, the edges that run between them form a biclique 28 based on:[2]

29 Parts are circle => graph is circle AB CD v u 29 based on:[2] v u

30 AB CD vv u u Parts are circle => graph is circle 30 based on:[2] v u

31 AB CD vv u uu v Parts are circle => graph is circle 31 based on:[2] v u

32 AB CD vv u u Parts are circle => graph is circle 32 based on:[2] v u

33 33 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

34 Interval model can be constructed Clique corresponds to pair-wise intersection of intervals in intersection graph. Finding maximum clique in original graph can be done by finding maximum intersecting intervals in intersection model Maximum clique 34 based on:[9]

35 35 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

36 Helly circle graph : A graph G is a Helly circle graph if G is a circle graph and there exists a model of G by chords such that every three pairwise intersecting chords intersect at the same point. No diamond should be present. Unit circle graphs : a graph G is a unit circle graph if there is a model L for G such that all the chords are of the same length Proper circular-arc graphs: A proper circular arc graph is a circular arc graph that has an intersection model in which no arc properly contains another. They are subclass of circle graphs. The representation in arcs can be trivially transformed in the model in chords. Related graphs 36 based on:[1][10]

37 37 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

38 Some NP-Hard problems easily solved on Circle Graphs: Independent Set solvable using O(n 2 ) dynamic programming Many problem that are NP-complete on general graph have polynomial solution when restricted to circle graph –Treewidth of a circle graph can be determined, in O(n 3 ) time and thus an optimal tree decomposition constructed in polynomial time –Chordal graph can be found in O(n 3 ) time –Maximum clique of a circle graph can be found in O(nlog 2 n) time Circular-arc graph can help to utilize storage in small digital devices. Applications 38

39 The network of protein interactions- proteins as nodes and protein interactions as undirected edges. Aim our analysis was to identify highly connected sub graphs (clusters) that have more interactions within themselves and fewer with the rest of the grap h Cliques indicate tightly interacting protein network modules Used to reveal cellular organization and structure and understanding of cellular modularity Applications dependent on maximum clique 39 Image taken from:[11]

40 Wire routing in VLSI design. In our case routing area is rectangle. The perimeter of rectangle represents terminals. Goals of wire routing step is to ensure that different nets stay electrically disconnected. If there is crossing then the intersecting part must be laid out in different conducting layer. Predict routing complexity and layer design Applications on VLSI design 40 Image taken from:[5]

41 41 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

42 A circle graph is an intersection graph of a set of chords of a circle Splitting the graphs in subgraphs solve reduce the complexity of a problem and makes the running time faster Many hard problems can be solved within polynomial time by using circle graph intersection model Wire routing design Find strong bonding in cell structure Helps to efficiently manage memory storage Conclusion 42 Thank you

43 43 Outline Definition Interval graph Circle graph Forbidden interval and circle graphs Related work Modular decomposition Detection of circle graph – Split decomposition Maximum click in graph Related Graphs Application Reduce the complexity of many problems Memory management VLSI design Max clique applications Conclusion References Image taken from:[4]

44 [1] Spinrad, Jeremy (1994), "Recognition of circle graphs", Journal of Algorithms 16 (2): 264–282 [2] Graph Decompositions: Modular Decomposition, Split Decomposition, and others Presentation primarily influenced by papers of McConnell, Spinrad and Hsu [3] Algorithmic graph theory – Martin Charles Golumbic(2 nd edition 2004) [4] http://en.wikipedia.org [5] http://www.rulabinsky.com/cavd/text/chap04-3.html [5] http://www.rulabinsky.com/cavd/text/chap04-3.html [6] Recognizing Circle Graphs in Polynomial Time CSABA P. GABOR AND KENNETH J. SUPOWIT Princeton University. Princeton, New Jersey AND WEN-LIAN HSU Northwestern University, Evanston, Illinois [7] http://www.rulabinsky.com/cavd/text/chap04-3.html [8] http://mathworld.wolfram.com/DiamondGraph.html [9] http://arxiv.org/PS_cache/arxiv/pdf/0707/0707.3619v16.pdf [10] Some new results on circle graphs, Guillermo Duran [11 ]http://www.pnas.org/content/100/21/12123.full References 44


Download ppt "Interval, circle graphs and circle graph recognition using split decomposition Presented by Steven Correia Kent state university Nov-18-2011"

Similar presentations


Ads by Google