Experimental Evaluation of a Branch and Bound Algorithm for Computing Pathwidth David Coudert, Dorian Mazauric, Nicolas Nisse

Total Page:16

File Type:pdf, Size:1020Kb

Experimental Evaluation of a Branch and Bound Algorithm for Computing Pathwidth David Coudert, Dorian Mazauric, Nicolas Nisse Experimental Evaluation of a Branch and Bound Algorithm for computing Pathwidth David Coudert, Dorian Mazauric, Nicolas Nisse To cite this version: David Coudert, Dorian Mazauric, Nicolas Nisse. Experimental Evaluation of a Branch and Bound Al- gorithm for computing Pathwidth. [Research Report] RR-8470, INRIA. 2014, pp.301. hal-00943549 HAL Id: hal-00943549 https://hal.inria.fr/hal-00943549 Submitted on 7 Feb 2014 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Experimental Evaluation of a Branch and Bound Algorithm for computing Pathwidth David Coudert, Dorian Mazauric, Nicolas Nisse RESEARCH REPORT N° 8470 February 2014 Project-Teams COATI ISSN 0249-6399 ISRN INRIA/RR--8470--FR+ENG Experimental Evaluation of a Branch and Bound Algorithm for computing Pathwidth∗ David Coudert†‡, Dorian Mazauric§, Nicolas Nisse‡† Project-Teams COATI Research Report n° 8470 — February 2014 — 301 pages Abstract: It is well known that many NP-hard problems are tractable in the class of bounded pathwidth graphs. In particular, path-decompositions of graphs are an important ingredient of dynamic programming algorithms for solving such problems. Therefore, computing the pathwidth and associated path-decomposition of graphs has both a theoretical and practical interest. In this paper, we design a Branch and Bound algorithm that computes the exact pathwidth of graphs and a corresponding path-decomposition. Our main contribution consists of several non-trivial techniques to reduce the size of the input graph (pre-processing) and to cut the exploration space during the search phase of the algorithm. We evaluate experimentally our algorithm by comparing it to existing algorithms of the literature. It appears from the simulations that our algorithm offers a significative gain with respect to previous work. In particular, it is able to compute the exact pathwidth of any graph with less than 60 nodes in a reasonable running-time (≤ 10 min.). Moreover, our algorithm also achieves good performance when used as a heuristic (i.e., when returning best result found within bounded time-limit). Our algorithm is not restricted to undirected graphs since it actually computes the vertex-separation of digraphs (which coincides with the pathwidth in case of undirected graphs). Key-words: Pathwidth, Branch and Bound, Sage ∗ This work has been partially supported by European Project FP7 EULER, ANR project Stint (ANR-13- BS02-0007), the Inria associated-team AlDyNet, and the project ECOS-Sud Chile. † Inria, France ‡ Univ. Nice Sophia Antipolis, CNRS, I3S, UMR 7271, 06900 Sophia Antipolis, France § Aix-Marseille Université, CNRS, LIF UMR 7279, Marseille, France RESEARCH CENTRE SOPHIA ANTIPOLIS – MÉDITERRANÉE 2004 route des Lucioles - BP 93 06902 Sophia Antipolis Cedex Etude d’un algorithme de Branch and Bound pour le calcul de la Pathwidth Résumé : Les décompositions en chemin de graphes sont très importants pour la conception d’algorithmes de programmation dynamique pour résoudre de nombreux problèmes NP-difficiles. Calculer la pathwidth et la décomposition en chemin correspondante sont donc d’un grand intérêt tant d’un point de vue théorique que pratique. Dans ce papier, nous proposons un algorithme de Branch and Bound qui calcule la pathwidth et une décomposition. Notre contribution principale réside dans les techniques que nous prouvons pour réduire la taille du graphe donné en entrée (pré- traitement) et réduire la taille de l’espace d’exploration de la phase de recherche de l’algorithme. Nous évaluons expérimentalement notre algorithme en le comparant aux algorithmes proposés dans la littérature. Les simulations montrent que notre algorithme apporte un gain significatif par rapport aux algorithmes existants. Il est capable de calculer la valeur exacte de la pathwidth de tout graphe composé d’au plus 60 sommets en un temps raisonnable (moins de 10 minutes). De plus, notre algorithme montre de bonnes performances lorsqu’il est utilisé en heuristique (c’est-à-dire lorsqu’il retourne le meilleur résultat trouvé en un temps donné). Notre algorithme n’est pas spécifique au graphes non orientés car il permet de calculer la vertex-separation des digraphes (qui coïncide avec la pathwidth dans le cas des graphes non orientés). Mots-clés : Pathwidth, Branch and Bound, Sage Experimental Evaluation of a Branch and Bound Algorithm for computing Pathwidth 3 Contents 1 Introduction 5 1.1 Practical computation of pathwidth . 5 1.2 Contributions and organization of the paper . 6 2 Preliminaries 6 2.1 Definitions and Notations . 6 2.2 Technical lemmas for preprocessing . 7 2.3 Technical lemmas for the Cut part . 8 3 The algorithm 8 3.1 Pre-processing phase . 9 3.2 Branch & Bound phase . 9 4 Simulations and interpretation of results 11 4.1 Implementation . 11 4.2 Comparison of our algorithms with BAB, MILP, and DYNPROG in random digraphs . 13 4.3 Comparison of BAB-GPP with SAT on the Rome graphs dataset . 13 4.4 Impact of prefix length . 15 4.5 Using BAB-GPP as an heuristic . 16 5 Conclusion 17 A Proofs 20 A.1 Proofs of technical lemmas for pre-processing . 20 A.2 Proofs of technical lemmas for the Cut part . 24 B Computational results on benchmark instances 26 B.1 Comparison of our algorithms with BAB, MILP, and DYNPROG in random graphs 26 B.2 TreewidthLIB . 28 B.3 VSPLIB . 33 B.4 Sage . 36 B.5 Rome graphs dataset . 50 RR n° 8470 Experimental Evaluation of a Branch and Bound Algorithm for computing Pathwidth 4 List of Figures 1 Average running time of the algorithms on random digraphs. 14 2 Computation time for Rome graphs instance . 15 3 Average running time of the algorithms on random graphs . 27 4 Computation time for instances of the TreewidthLIB with less than 110 nodes . 28 5 Computation time for instances from the VSPLIB . 37 6 Computation time for named graphs in Sage .................... 37 7 Computation time for families of graphs in Sage . 39 List of Tables 1 Versions of the B&B algorithms. 12 2 Repartition of (un)solved instances . 15 3 Pathwidth of some Mycielski graphs. 16 4 Running time of BAB-GPP for the Mycielski graph M6. 16 5 Computational results for twl. instance. 28 6 Upper bounds for twl. instance (10 min. per graph). 31 7 Computational results for twl-tsp instance. 31 8 Upper bounds for twl-tsp instance (10 min. per graph). 32 9 Computational results for vsplib_hb instance. 33 10 Upper bounds for vsplib_hb instance (10 min. per graph). 34 11 Computational results for vsplib_tree instance. 35 12 Upper bounds for vsplib_tree instance (10 min. per graph). 36 13 Computational results for sage_named instance. 38 14 Upper bounds for sage_named instance (10 min. per graph). 39 15 Computational results for sage_families instance. 40 16 Upper bounds for sage_families instance (10 min. per graph). 49 17 Computational results for rome instance. 50 18 Upper bounds for rome instance (10 min. per graph). 290 RR n° 8470 Experimental Evaluation of a Branch and Bound Algorithm for computing Pathwidth 5 1 Introduction Because of their well known algorithmic interest [15], a lot of work has been devoted to the computation of treewidth and tree-decompositions of graphs [3,33]. On the theoretical side, exact exponential algorithms [6, 20], Fixed Parameter Tractable (FPT) algorithms [8] and Approxi- mation algorithms [5, 19, 31, 36] have been designed. Unfortunately, most of these algorithms can hardly be used in practice. For instance, the algorithm in [6] is both exponential in time and space and therefore cannot be used for graphs with more than 32 nodes. Another example is the FPT algorithms whose time-complexity is at least exponential in the treewidth: there exists no efficient implementation of the Bodlaender and Kloks algorithm [8] even for graphs with treewidth at most 4. On the positive side, efficient algorithms exist for computing the treewidth of particular graph classes, e.g., graphs with treewidth at most 4 [22]. Many heuristics for computing lower or upper bounds on the treewidth have also been designed [1,9–11]. Surprisingly, much less work has been devoted to the computation of pathwidth and path- decompositions of graphs [3,32]. Indeed, the pathwidth of any n-node graph is at most O(log n) times its treewidth [3]. Hence, providing an efficient algorithm to compute pathwidth immedi- ately leads to an efficient approximation algorithm for computing the treewidth. In this paper, we design an algorithm that computes the pathwidth and a corresponding path-decomposition of graphs. We then provide an experimental analysis of our algorithm that presents a significative improvement with respect to existing algorithms. 1.1 Practical computation of pathwidth Any path-decomposition of a n-node graph G =(V,E) corresponds to a layout (i.e., an ordering) 1 (v1, ··· ,vn) of its vertices. The width of a path-decomposition is the maximum size of the border of the subgraphs induced by {v1, ··· ,vi}, i ≤ n. The pathwidth of a graph is equal to the mini- mum width of its path-decompositions. A motivation for computing path-decompositions comes from algorithmic applications. Indeed, given a path-decomposition of a graph, dynamic program- ming algorithms (whose time-complexity depends on the width of the path-decomposition) can be designed for many combinatorial optimization problems [15]. Other motivations arise from the close relationship between pathwidth and other graph invariants (related to node layouts), e.g., the node search number [12,16,30], the process number [14] and the edge search number [25].
Recommended publications
  • Vertex-Transitive Graphs That Have No Hamilton Decomposition
    Vertex-transitive graphs that have no Hamilton decomposition Darryn Bryant ∗ Matthew Dean † Abstract It is shown that there are infinitely many connected vertex-transitive graphs that have no Hamilton decomposition, including infinitely many Cayley graphs of valency 6, and including Cayley graphs of arbitrarily large valency. 1 Introduction A famous question of Lov´asz concerns the existence of Hamilton paths in vertex-transitive graphs [28], and no example of a connected vertex-transitive graph with no Hamilton path is known. The related question concerning the existence of Hamilton cycles in vertex-transitive graphs is another interesting and well-studied problem in graph theory, see the survey [23]. A Hamiltonian graph is a graph containing a Hamilton cycle. Thomassen (see [10, 23]) has conjectured that there are only finitely many non-Hamiltonian connected vertex-transitive graphs. On the other hand, Babai [8, 9] has conjectured that there are infinitely many such graphs. To date only five are known. These arXiv:1408.5211v3 [math.CO] 12 Nov 2014 are the complete graph of order 2, the Petersen graph, the Coxeter graph, and the two graphs obtained from the Petersen and Coxeter graphs by replacing each vertex with a triangle. For a regular graph of valency at least 4, a stronger property than the existence of a Hamilton cycle is the existence of a Hamilton decomposition. If X is a k-valent graph, then a Hamilton k decomposition of X is a set of ⌊ 2 ⌋ pairwise edge-disjoint Hamilton cycles in X. Given the small number of non-Hamiltonian connected vertex-transitive graphs, and the uncertainty concerning the existence of others, it is natural to ask how many connected vertex-transitive graphs have no Hamilton decomposition.
    [Show full text]
  • A Survey of Graph Coloring - Its Types, Methods and Applications
    FOUNDATIONS OF COMPUTING AND DECISION SCIENCES Vol. 37 (2012) No. 3 DOI: 10.2478/v10209-011-0012-y A SURVEY OF GRAPH COLORING - ITS TYPES, METHODS AND APPLICATIONS Piotr FORMANOWICZ1;2, Krzysztof TANA1 Abstract. Graph coloring is one of the best known, popular and extensively researched subject in the eld of graph theory, having many applications and con- jectures, which are still open and studied by various mathematicians and computer scientists along the world. In this paper we present a survey of graph coloring as an important subeld of graph theory, describing various methods of the coloring, and a list of problems and conjectures associated with them. Lastly, we turn our attention to cubic graphs, a class of graphs, which has been found to be very interesting to study and color. A brief review of graph coloring methods (in Polish) was given by Kubale in [32] and a more detailed one in a book by the same author. We extend this review and explore the eld of graph coloring further, describing various results obtained by other authors and show some interesting applications of this eld of graph theory. Keywords: graph coloring, vertex coloring, edge coloring, complexity, algorithms 1 Introduction Graph coloring is one of the most important, well-known and studied subelds of graph theory. An evidence of this can be found in various papers and books, in which the coloring is studied, and the problems and conjectures associated with this eld of research are being described and solved. Good examples of such works are [27] and [28]. In the following sections of this paper, we describe a brief history of graph coloring and give a tour through types of coloring, problems and conjectures associated with them, and applications.
    [Show full text]
  • Lombardi Drawings of Graphs 1 Introduction
    Lombardi Drawings of Graphs Christian A. Duncan1, David Eppstein2, Michael T. Goodrich2, Stephen G. Kobourov3, and Martin Nollenburg¨ 2 1Department of Computer Science, Louisiana Tech. Univ., Ruston, Louisiana, USA 2Department of Computer Science, University of California, Irvine, California, USA 3Department of Computer Science, University of Arizona, Tucson, Arizona, USA Abstract. We introduce the notion of Lombardi graph drawings, named after the American abstract artist Mark Lombardi. In these drawings, edges are represented as circular arcs rather than as line segments or polylines, and the vertices have perfect angular resolution: the edges are equally spaced around each vertex. We describe algorithms for finding Lombardi drawings of regular graphs, graphs of bounded degeneracy, and certain families of planar graphs. 1 Introduction The American artist Mark Lombardi [24] was famous for his drawings of social net- works representing conspiracy theories. Lombardi used curved arcs to represent edges, leading to a strong aesthetic quality and high readability. Inspired by this work, we intro- duce the notion of a Lombardi drawing of a graph, in which edges are drawn as circular arcs with perfect angular resolution: consecutive edges are evenly spaced around each vertex. While not all vertices have perfect angular resolution in Lombardi’s work, the even spacing of edges around vertices is clearly one of his aesthetic criteria; see Fig. 1. Traditional graph drawing methods rarely guarantee perfect angular resolution, but poor edge distribution can nevertheless lead to unreadable drawings. Additionally, while some tools provide options to draw edges as curves, most rely on straight-line edges, and it is known that maintaining good angular resolution can result in exponential draw- ing area for straight-line drawings of planar graphs [17,25].
    [Show full text]
  • Use the K-Neighborhood Subgraphs to Compute Canonical Labelings of Graphs
    mathematics Article Use the K-Neighborhood Subgraphs to Compute Canonical Labelings of Graphs Jianqiang Hao 1,*, Yunzhan Gong 2, Jianzhi Sun 1 and Li Tan 1 1 Beijing Key Laboratory of Big Data Technology for Food Safety, Beijing Technology and Business University, No. 11, Fu Cheng Road, Beijing 100048, China 2 State Key Laboratory of Networking and Switching Technology, Beijing University of Posts and Telecommunications, No 10, Xitucheng Road, Haidian District, Beijing 100876, China * Correspondence: [email protected]; Tel.: +86-10-6898-5704 Received: 5 July 2019; Accepted: 27 July 2019; Published: 31 July 2019 Abstract: This paper puts forward an innovative theory and method to calculate the canonical labelings of graphs that are distinct to Nauty’s. It shows the correlation between the canonical labeling of a graph and the canonical labeling of its complement graph. It regularly examines the link between computing the canonical labeling of a graph and the canonical labeling of its open k-neighborhood subgraph . It defines dif fusion degree sequences and entire dif fusion degree sequence . For each node of a graph G, it designs a characteristic m_NearestNode to improve the precision for calculating canonical labeling. Two theorems established here display how to compute the first nodes of MaxQ(G). Another theorem presents how to determine the second nodes of MaxQ(G). When computing Cmax(G), if MaxQ(G) already holds the first i nodes u1, u2, ··· , ui, Diffusion and Nearest Node theorems provide skill on how to pick the succeeding node of MaxQ(G). Further, it also establishes two theorems to determine the Cmax(G) of disconnected graphs.
    [Show full text]
  • Nama Penulis / Judul Tiga Kata ISBN
    Proceeding of International Conference On Research, Implementation And Education Of Mathematics And Sciences 2014, Yogyakarta State University, 18-20 May 2014 M - 22 APPLICATING CVD ALGORITHM ON EDGE-COLORING OF SPECIAL GRAPHS Nur Insani Deparment of Mathematics Education, Yogyakarta State University Abstract Heuristics algorithm is a soultion method that typically relatively quick to find a feasibel soloution with reasonable time and quality though there are no guarantees about if the quality of the solution is bad. This research explores the application of Conflicting Vertex Displacement (CVD) algorithm on edge-coloring of special graphs. This algorithm found by Fiol and Vilaltella [2] 6in 2012 and uses the idea of recolor of two “conflicts” edges (edges that are incident to a vertex) along the paths of adjacent vertices. The research tests the algorithm on special graphs, ie. bipartite graphs. Keywords: edge-coloring, heuristics, Kempe chain, bipartite graphs. INTRODUCTION Graph coloring is one of the greatest topics on the graph problem. Though many people do not consider it as an important problem, but in fact it is a very important ones. Edge coloring is a problem of coloing the edges of a graph with a minimum number of colors as possible. As it is known to be problem (even for maximum degree ), many scientists has find ways to resolve this problem either with exact algorithms or heuristics ones. Heuristics algorithm is a method designed to solve problems that are not emphasized in proving whether the solution obtained is correct, but produce a quick solution. Hopcroft and Karp [6] tried to solve the edge coloring problem for bipartite graphs by using a heuristics algorithm, while Marathe and Panconeso [11] tried to introduce another simple and distributed edge coloring algorithm in 2000.
    [Show full text]
  • Lucky Labeling of Certain Cubic Graphs
    International Journal of Pure and Applied Mathematics Volume 120 No. 8 2018, 167-175 ISSN: 1314-3395 (on-line version) url: http://www.acadpubl.eu/hub/ Special Issue http://www.acadpubl.eu/hub/ Lucky Labeling of Certain Cubic Graphs 1 2, D. Ahima Emilet and Indra Rajasingh ∗ 1,2 School of Advanced Sciences, VIT Chennai, India [email protected] [email protected] Abstract We call a mapping f : V (G) 1, 2, . , k , a lucky → { } labeling or vertex labeling by sum if for every two adjacent vertices u and v of G, f(v) = f(u). (v,u) E(G) 6 (u,v) E(G) The lucky number of a graph∈ G, denoted by η∈(G), is the P P least positive k such that G has a lucky labeling with 1, 2, . , k as the set of labels. Ali Deghan et al. [2] have { } proved that it is NP-complete to decide whether η(G) = 2 for a given 3-regular graph G. In this paper, we show that η(G) = 2 for certain cubic graphs such as cubic dia- mond k chain, petersen graph, generalized heawood graph, − G(2n, k) cubic graph, pappus graph and dyck graph. − AMS Subject Classification: 05C78 Key Words: Lucky labeling, petersen, generalized hea- wood, pappus, dyck 1 Introduction Graph coloring is one of the most studied subjects in graph theory. Recently, Czerwinski et al. [1] have studied the concept of lucky labeling as a vertex coloring problem. Ahadi et al. [3] have proved that computation of lucky number of planar graphs is NP-hard.
    [Show full text]
  • Abstracts for the 4Th Slovenian International Conference in Graph Theory
    University of Ljubljana Institute of Mathematics, Physics and Mechanics Ljubljana, Slovenia Abstracts for The 4th Slovenian International Conference in Graph Theory Bled, June 28 – July 2, 1999 Slovenia Ljubljana, 1999 Foreword It is our pleasure to welcome you at Bled, the site of the Fourth Slovenian Conference on Graph Theory. This conference has made a long way from its first meeting in Dubrovnik (now in Croatia) in 1985, organized by TomaˇzPisanski, the “father” of Graph Theory in Slovenia whose 50th anniversary along with the 70th an- niversary of Gert Sabidussi we will celebrate during this week. The sec- ond meeting was held at Bled in 1991 and coincided with the declaration of Slovenian independence. This caused a slight inconvenience to the 30 participants but the meeting will be remembered as a successful albeit ad- venturous event. In 1995 the number of participants more than tripled and the number of registered participants for the Fourth Slovenian Conference is more than hundred. In the tradition of the former meetings, the conference is strongest in the areas of algebraic and topological graph theory, but we are glad that also other branches of graph theory are well represented. The received ab- stracts promise an interesting and fruitful contribution to mathematics. We express our thanks to all of you for attending this conference and wish you a mathematically productive week, but most of all a pleasant and relaxed stay in Slovenia. This collection contains only abstracts of the talks. The proceedings of the conference will be published as a special volume of Discrete Mathematics after a thorough refereeing procedure following the standards of the journal.
    [Show full text]
  • Colouring Problems for Symmetric Configurations with Block Size 3
    Colouring problems for symmetric configurations with block size 3 Grahame Erskine∗∗ Terry Griggs∗ Jozef Sir´aˇnˇ †† [email protected] [email protected] [email protected] (corresponding author) Abstract The study of symmetric configurations v3 with block size 3 has a long and rich history. In this paper we consider two colouring problems which arise naturally in the study of these structures. The first of these is weak colouring, in which no block is monochromatic; the second is strong colouring, in which every block is multichromatic. The former has been studied before in re- lation to blocking sets. Results are proved on the possible sizes of blocking sets and we begin the investigation of strong colourings. We also show that the known 213 and 223 configura- tions without a blocking set are unique and make a complete enumeration of all non-isomorphic 203 configurations. We discuss the concept of connectivity in relation to symmetric configura- tions and complete the determination of the spectrum of 2-connected symmetric configurations without a blocking set. A number of open problems are presented. 1 Introduction In this paper we will be concerned with symmetric configurations with block size 3 and, more particularly, two colouring problems which arise naturally from their study. First we recall the definitions. A configuration (vr, bk) is a finite incidence structure with v points and b blocks, with the property that there exist positive integers k and r such that (i) each block contains exactly k points; (ii) each point is contained in exactly r blocks; and (iii) any pair of distinct points is contained in at most one block.
    [Show full text]
  • A New Generalization of Generalized Petersen Graphs*
    ISSN 2590-9770 The Art of Discrete and Applied Mathematics 3 (2020) #P1.04 https://doi.org/10.26493/2590-9770.1279.02c (Also available at http://adam-journal.eu) A new generalization of generalized Petersen graphs* Katar´ına Jasencˇakov´ a´ Faculty of Management Science and Informatics, University of Zilina,ˇ Zilina,ˇ Slovakia Robert Jajcay† Faculty of Mathematics, Physics and Informatics, Comenius University, Bratislava, Slovakia; also affiliated with Faculty of Mathematics, Natural Sciences and Information Technology, University of Primorska, Koper, Slovenia Tomazˇ Pisanski‡ Faculty of Mathematics, Natural Sciences and Information Technology, University of Primorska, Koper, Slovenia; also affiliated with FMF and IMFM, University of Ljubljana, Jadranska 19, 1000 Ljubljana, Slovenia Received 30 November 2018, accepted 13 August 2019, published online 27 July 2020 Abstract We discuss a new family of cubic graphs, which we call group divisible generalised Pe- tersen graphs (GDGP -graphs), that bears a close resemblance to the family of generalised Petersen graphs, both in definition and properties. The focus of our paper is on determin- ing the algebraic properties of graphs from our new family. We look for highly symmetric graphs, e.g., graphs with large automorphism groups, and vertex- or arc-transitive graphs. In particular, we present arithmetic conditions for the defining parameters that guarantee that graphs with these parameters are vertex-transitive or Cayley, and we find one arc- transitive GDGP -graph which is neither a CQ graph of Feng and Wang, nor a generalised Petersen graph. Keywords: Generalised Petersen graph, arc-transitive graph, vertex-transitive graph, Cayley graph, automorphism group. Math. Subj. Class.
    [Show full text]
  • The Topology of Bendless Three-Dimensional Orthogonal Graph Drawing
    The Topology of Bendless Three-Dimensional Orthogonal Graph Drawing David Eppstein Computer Science Department University of California, Irvine [email protected] Abstract. We consider embeddings of 3-regular graphs into 3-dimensional Cartesian coordinates, in such a way that two vertices are adjacent if and only if two of their three coordinates are equal (that is, if they lie on an axis-parallel line) and such that no three points lie on the same axis-parallel line; we call a graph with such an embedding an xyz graph. We describe a correspondence between xyz graphs and face-colored embeddings of the graph onto two-dimensional manifolds, and we relate bipartiteness of the xyz graph to orientability of the underlying topological surface. Using this correspondence, we show that planar graphs are xyz graphs if and only if they are bipartite, cubic, and three-connected, and that it is NP-complete to determine whether an arbitrary graph is an xyz graph. We also describe an algorithm with running time O(n2n=2) for testing whether a given graph is an xyz graph. 1 Introduction Consider a finite point set V in R3 with the following property: every axis-parallel line in R3 contains either zero or two points of V. For instance, the vertices of an axis-aligned cube have this property. Then V defines the vertex set of a cubic (that is, 3-regular) graph, in which two vertices are adjacent if and only if two of their three coordinates are equal; each vertex v is connected to the three other points of V that lie on the three axis-parallel lines through v.
    [Show full text]
  • Final Poster (Van Niel)
    Visualizing Dessins d’Enfants on the Torus Danika Van Niel Purdue Research in Mathematics Experience (PRiME) Abstract Degree Sequences Example: Toroidal Cubic Graphs Example: Petersen Graph A graph Γ = (V, E) is a pair consisting of vertices V and edges E. Such A toroidal graph Γ is said to be a Cubic Graph if it is 3-regular, that is, 2 Let Γ = (V, E) be a bipartite, toroidal graph. Upon writing F as the collec- a graph is said to be planar if it can be embedded Γ ,→ S (R) on the tion of midpoints of faces of Γ, denote the Degree Sequence of Γ as the its subdivision Γ is a graph with a degree sequence in the form sphere such that its edges do not cross. Similarly, such a graph is said to 8 9 2 multiset be toroidal if it is not planar, yet can be embedded Γ ,→ T (R) on the < = D = {3, 3,..., 3}, {2, 2,..., 2}, eP P ∈ F torus such that its edges do not cross. This project seeks to determine D = eP P ∈ B , eP P ∈ W , eP P ∈ F :| {z } | {z } ; the monodromy groups of such graphs. 2 n copies 3 n copies where eP is the number of edges emanating from each “black” vertex P ∈ B A toroidal cubic graph has |B| = 2 n vertices, |W | = 3 n edges, and |F | = n In this presentation, we discuss various examples of toroidal graphs, in- for the first component, “white vertex P ∈ W for the second component, and faces where the set eP P ∈ F is a partition of N = 6 n.
    [Show full text]
  • Optimization of Eigenvalue Bounds for the Independence and Chromatic Number of Graph Powers
    Optimization of eigenvalue bounds for the independence and chromatic number of graph powers A. Abiada;b;c, G. Coutinhod, M. A. Fiole, B. D. Nogueirad, S. Zeijlemakera aDepartment of Mathematics and Computer Science Eindhoven University of Technology, Eindhoven, The Netherlands bDepartment of Mathematics: Analysis, Logic and Discrete Mathematics Ghent University, Ghent, Belgium cDepartment of Mathematics and Data Science Vrije Universiteit Brussels, Brussels, Belgium fa.abiad.monge,[email protected] dDepartment of Computer Science Federal University of Minas Gerais, Belo Horizonte, Brazil fgabriel,[email protected] eDepartament of Mathematics Polytechnic University of Catalonia, Barcelona Barcelona Graduate School of Mathematics [email protected] Abstract The kth power of a graph G = (V; E), Gk, is the graph whose vertex set is V and in which two distinct vertices are adjacent if and only if their distance in G is at most k. This article proves various eigenvalue bounds for the independence number and chromatic number of Gk which purely depend on the spectrum of G, together with a method to optimize them. Our bounds for the k-independence number also work for arXiv:2010.12649v1 [math.CO] 23 Oct 2020 its quantum counterpart, which is not known to be a computable parameter in general, thus justifying the use of integer programming to optimize them. Some of the bounds previously known in the literature follow as a corollary of our main results. Infinite families of graphs where the bounds are sharp are presented as well. 1 Introduction For a positive integer k, the kth power of a graph G = (V; E), denoted by Gk, is a graph with vertex set V in which two distinct elements of V are joined by an edge if there is a 1 path in G of length at most k between them.
    [Show full text]