Fact-checked by Grok 2 weeks ago

Planarity testing

Planarity testing is the algorithmic problem in of determining whether a given undirected admits a planar , meaning its vertices can be represented as points in the plane and its edges as non-intersecting curves connecting those points. The concept of planarity originates from foundational results in and , with Kazimierz Kuratowski's 1930 theorem providing a complete characterization: a is planar it contains no subdivision of the K_5 or the K_{3,3} as a minor. Early efforts to algorithmically test planarity relied on constructive methods, such as the Auslander-Parter algorithm from 1961, which builds a planar incrementally by adding cycles and achieves a of O(n^3) for a with n vertices. Breakthroughs in the late and led to linear-time , marking a significant advancement in computational efficiency. The Lempel-Even-Cederbaum (LEC) , introduced in 1967, uses based on st-numberings to test planarity in O(n) time. Independently, Hopcroft and Tarjan developed in 1974 the first explicitly linear-time planarity test using path and (DFS) techniques to detect embedding conflicts. Subsequent refinements have produced simpler and more implementable linear-time , often employing advanced data structures. The Shih-Hsu from 1999 utilizes PC-trees—generalizations of PQ-trees—to represent partial and perform vertex addition in O(n) time, noted for its conceptual simplicity. Building on this, the Boyer-Myrvold of 2004 introduces addition with flexible embedding flips via DFS, achieving O(n) time while providing a robust framework for practical implementations in libraries. These methods not only test planarity but also construct a combinatorial , essential for applications in VLSI , , and geographic systems.

Fundamentals

Definition of Planar Graphs

A graph in graph theory is a mathematical structure consisting of a set of vertices connected by edges, where an undirected simple graph has no loops or multiple edges between the same pair of vertices. Vertices represent points or nodes, edges represent connections between them, and adjacency indicates the presence of an edge linking two vertices. A is an undirected simple graph that can be embedded in the such that no two edges intersect except possibly at shared vertices. Such an embedding assigns positions to vertices and paths (straight lines or curves) to edges without crossings, preserving the graph's adjacency relations. Embeddings can be geometric, where edges are straight-line segments between vertex points, or more general, allowing curved paths as long as they do not cross. Combinatorial embeddings, in contrast, abstractly specify the cyclic order of edges around each vertex without reference to specific positions or shapes in the plane. Basic examples of planar graphs include trees, which have no cycles and thus embed without crossings, and cycles C_n, which form simple closed loops. The complete graph K_4, with four vertices all pairwise connected, is planar and can be drawn as a tetrahedron projection. However, K_5, the complete graph on five vertices, is non-planar and cannot be embedded without edge crossings. For connected planar graphs, Euler's formula relates vertices v, edges e, and faces f via v - e + f = 2.

Importance and Applications

Planarity testing is essential in computational because it determines whether a admits a planar , which avoids edge crossings and simplifies subsequent tasks such as , , and optimization in systems where intersections increase complexity or cost. Efficient algorithms for this test enable the construction of such embeddings, facilitating clearer representations and more effective problem-solving in sparse structures that bound the number of edges relative to vertices. Key applications span multiple domains, including very-large-scale integration (VLSI) , where testing ensures wire layouts minimize crossings to reduce signal and fabrication challenges. In (PCB) layouts and mapping, planarity testing supports non-crossing connections that enhance reliability and ease of assembly. Geographic information systems (GIS) leverage it for map drawing, representing regions and borders without overlaps to maintain spatial accuracy and readability. Additionally, in software , such as UML diagrams, planarity testing aids in generating hierarchical drawings that improve comprehension of system architectures. The broader impact of planarity testing extends to the study of minor-closed graph classes, as planarity is characterized by the absence of specific forbidden minors (K₅ and K₃,₃), providing a foundational for analyzing related properties like bounded genus or . It serves as a building block for more complex problems, such as crossing number minimization, where non-planar graphs are approximated by removing or rerouting edges to approach planarity while optimizing edge intersections. Historically, interest in planarity testing surged in the 1960s from , driven by needs in circuit layout and early computational algorithms like those by Lempel, Even, and Cederbaum in 1967.

Theoretical Foundations

Planarity Criteria

Planarity criteria provide fundamental mathematical conditions that distinguish planar graphs from non-planar ones, offering quantitative constraints based on the structural properties of vertices, edges, and faces in a planar . These criteria, derived primarily from topological invariants, serve as necessary conditions for planarity and underpin many testing algorithms by allowing quick rejection of obviously non-planar graphs. A cornerstone of these criteria is , which relates the number of vertices V, edges E, and faces F (including the outer infinite face) in a connected plane graph. For any connected plane graph, V - E + F = 2. This holds for any of the graph in the plane without edge crossings. The formula extends to disconnected plane graphs: if the graph has c connected components, then V - E + F = 1 + c, accounting for the additional components by treating each as a separate "" in the plane, with the outer face shared. To derive edge bounds from , consider the for faces, which states that each edge is incident to exactly two faces (or one if a bridge, but for bounds we assume simple graphs without bridges). More precisely, the sum of the degrees of the faces (where the of a face is the number of edges bounding it) equals $2E. In a simple plane , every face has at least 3, so $2E \geq 3F, or F \leq \frac{2E}{3}. Substituting into for a connected simple plane with V \geq 3, we get V - E + F = 2, so F = 2 - V + E. Then, $2 - V + E \leq \frac{2E}{3}, which rearranges to $2 - V + E - \frac{2E}{3} \leq 0, or \frac{E}{3} \leq V - 2, hence E \leq 3V - 6. This bound is tight for maximal planar graphs (triangulations), where all faces are triangles. For bipartite planar graphs, the bound tightens because all faces must have even degree, and thus at least 4 (no odd cycles). The face degree inequality becomes $2E \geq 4F, or F \leq \frac{E}{2}. Substituting into yields $2 - V + E \leq \frac{E}{2}, so $2 - V + \frac{E}{2} \leq 0, or \frac{E}{2} \leq V - 2, hence E \leq 2V - 4 for connected bipartite plane graphs with V \geq 2. This reflects the sparser structure enforced by bipartiteness. Whitney's theorem provides a qualitative criterion related to embeddings: every 3-connected planar graph has a unique plane embedding up to reflection and choice of the outer face, implying that planarity testing for such graphs also determines the embedding uniquely. This uniqueness strengthens the theoretical foundation for criteria by linking structural connectivity to embedding properties.

Forbidden Subgraphs and Characterizations

A key structural characterization of planar graphs is provided by Kuratowski's theorem, which states that a finite undirected graph is planar if and only if it contains no subgraph that is a subdivision of K_5 (the complete graph on five vertices) or K_{3,3} (the complete bipartite graph on two parts of three vertices each). This theorem, published in 1930, reduces planarity testing to detecting these specific forbidden configurations. A subdivision of a H is formed by replacing zero or more edges of H with internally vertex-disjoint paths of length at least two, thereby inserting degree-two vertices along those edges while preserving the original vertex degrees and connectivity. Thus, the forbidden subgraphs in Kuratowski's theorem are not necessarily isomorphic copies of K_5 or K_{3,3}, but rather graphs topologically equivalent to them via such edge replacements. An equivalent formulation, known as Wagner's theorem, characterizes planar graphs using the minor relation instead of subdivisions. It states that a finite undirected is planar if and only if it contains neither K_5 nor K_{3,3} as a . A M is a of a G if M can be obtained from G by a sequence of operations consisting of edge deletions, deletions, and edge contractions (where contracting an edge merges its endpoints into a single , removing any loops or edges created). Wagner's 1937 result shows that the two characterizations coincide, as subdivisions correspond to a restricted form of minors without contractions. The necessity part of these theorems—that graphs containing subdivisions or minors of K_5 or K_{3,3} are non-planar—follows from violations of for planar embeddings. For K_5, with 5 vertices and 10 edges, v - e + f = 2 (where f is the number of faces) combined with the face-handshaking lemma $2e \geq 3f (assuming no multiple edges) implies e \leq 3v - 6 = 9, a . Similarly, K_{3,3} with 6 vertices and 9 edges violates the analogous bound for bipartite planar graphs, e \leq 2v - 4 = 8. Subdivisions and contractions preserve these density violations, ensuring non-planarity. The sufficiency—that absence of such forbidden structures implies planarity—is established via a high-level , embedding the graph by iteratively resolving potential crossings based on connectivity properties. These characterizations highlight that planarity defines a minor-closed family of graphs, meaning if a graph is planar, so are all its minors. The Robertson–Seymour theorem extends this by proving that every minor-closed family of finite graphs has a finite set of forbidden minors, confirming that \{K_5, K_{3,3}\} fully describes planarity without additional exclusions.

Algorithms

Incremental Construction Methods

Incremental construction methods for planarity testing build a planar embedding of a graph by successively adding structural elements—such as paths, vertices, or edges—while maintaining the planarity of the partial embedding at each step. These approaches originated in the mid-20th century and laid the groundwork for efficient planarity algorithms, focusing on sequential embedding to both test planarity and produce a combinatorial representation of the embedding if the graph is planar. By attempting to embed incrementally and detecting impossibilities through crossing attempts or boundary violations, these methods determine non-planarity when an addition cannot be performed without violations. The path addition method, introduced by Hopcroft and Tarjan in 1974, constructs the embedding by adding paths between vertices on the boundaries of existing faces, ensuring no crossings are introduced. It begins with an initial cycle forming the outer face and uses to identify low-degree vertices suitable for sequential embedding. Each path is routed along face boundaries or by splitting adjacent faces, preserving the planar structure. If a path's endpoints lie on non-adjacent faces in a way that prevents non-crossing routing, planarity is violated. This method achieves , O(n), where n is the number of vertices. A high-level pseudocode outline for the path addition process is as follows:
Initialize the embedding with a cycle as the initial face.

While there are unprocessed edges forming paths:
    Identify low-degree vertices u and v via DFS ordering.
    Locate the faces incident to u and v in the current embedding.
    If u and v are on the same face boundary:
        Embed the path inside that face, subdividing it.
    Else if on adjacent faces:
        Merge or split faces to route the path without crossings.
    Update face boundaries and vertex incidences.
    If routing causes a crossing or impossible split, report non-planar.
This sequential addition ensures the embedding evolves correctly, with each step verifiable in amortized time across all operations. The addition method, proposed by Lempel, Even, and Cederbaum in , incrementally inserts vertices into an existing planar , placing each new inside a face and connecting it to boundary vertices, thereby splitting the face according to the vertex's degree. It relies on a specific ordering, such as an st-numbering, to ensure that connections respect the current face structure and degree constraints, avoiding crossings by confining new edges to the split face. The original formulation runs in O(n²) time, but subsequent optimizations using data structures like PQ-trees reduced it to O(n). In the edge addition method, edges are added between non-adjacent vertices on the same face boundary, with planarity checked by verifying that the new edge does not cross existing ones within the face . The process starts with a sparse initial and builds up by inserting edges one at a time, updating face cycles to reflect the new divisions. This detects non-planarity if an edge would require crossing or if endpoints are not co-facial. An efficient linear-time implementation was developed by Boyer and Myrvold in , emphasizing edge-by-edge updates for simplicity and speed. The construction sequence method encompasses these techniques by viewing the as built through a series of planar-preserving operations—adding paths, vertices, or edges in a predefined order—and tests planarity by simulating the process step by step. If all additions succeed without violations, the is planar, and the final is obtained; otherwise, non-planarity is confirmed at the failure point. In their basic optimized forms, these incremental methods operate in time, providing both testing and capabilities essential for early computational .

DFS-Based Methods

DFS-based methods for planarity testing leverage (DFS) to explore the structure, construct a , and analyze edge relationships to determine embeddability in the while producing a combinatorial if planar. These approaches build on earlier incremental construction techniques by performing a global DFS traversal to classify edges and compute structural properties like lowpoints, enabling efficient detection of non-planarity through forbidden subdivisions such as K_{3,3} or K_5. The seminal Hopcroft-Tarjan algorithm, developed in 1974, achieves linear-time planarity testing by using DFS to build a spanning tree and classify edges into tree edges, back edges, and fronds (a type of non-tree edge). During the DFS traversal, vertices receive depth-first numbers (dfn), and lowpoints are computed to identify the lowest reachable ancestor via back edges from a vertex or its descendants, facilitating the ordering of edges around vertices. The algorithm embeds the graph by testing left-right planarity conditions on branches of the DFS tree, interleaving fronds and subtrees while checking for conflicts that indicate non-planar configurations, such as improperly nested or crossing back edges forming subdivisions of K_{3,3} or K_5. If no such conflicts arise, it outputs a combinatorial embedding represented as a rotation system, specifying the cyclic order of edges incident to each vertex. A key component in both Hopcroft-Tarjan and subsequent methods is the lowpoint computation, which guides edge placement and non-planarity detection. The lowpoint low for a v is defined as the minimum of its DFS number dfn, the lowpoints of its children in the DFS tree, and the DFS numbers of targets reachable via back edges incident to v or its descendants. This can be computed recursively during the DFS post-order traversal, as shown in the following :
function DFS(v):
    dfn[v] = low[v] = counter++
    for each neighbor w of v:
        if dfn[w] is undefined:
            parent[w] = v
            DFS(w)
            low[v] = min(low[v], low[w])
        elif w != parent[v]:
            low[v] = min(low[v], dfn[w])
This structure allows interleaving of edges around vertices based on lowpoint values to build the without crossings. The Boyer-Myrvold , introduced in , refines the DFS-based approach with a simplified that processes biconnected components separately to avoid numbering conflicts and streamline edge interleaving. It performs DFS numbering and lowpoint computation similarly to Hopcroft-Tarjan but uses a for biconnected components (bicomps) that supports constant-time flips of embeddings, enabling efficient handling of edge additions within components. Non-planarity is detected by attempting to embed paths for back edges; failure to find a conflict-free path reveals a K_{3,3} or K_5 subdivision. Like its predecessor, it produces a rotation system as output if the graph is planar, achieving O(n) time overall through optimized traversal and local adjustments. These DFS-based methods offer advantages in relative to earlier techniques and high , with implementations demonstrating practical on large due to their linear time bounds and straightforward recursive structure.

Dynamic and Parallel Algorithms

Dynamic algorithms for planarity testing enable efficient handling of graph modifications, such as insertions and deletions of vertices and edges, while maintaining the planarity and a corresponding . Early contributions in the late introduced on-line planarity testing for incremental updates in streaming graphs, supporting edge additions one at a time with planarity checks at each step. These methods use O(n) space and achieve O(log n) amortized time per edge insertion or test, alongside O(log n) worst-case time for vertex insertions. By the , fully dynamic variants extended this to deletions, with applications in maintaining planar representations under arbitrary sequences of operations. Such algorithms rely on dynamic embeddings that preserve rotation systems, which encode the cyclic ordering of edges incident to each to represent the embedding combinatorially. Key techniques involve incremental updates through local re-s, where changes propagate only to affected substructures using auxiliary data like SPQR-trees to perform flips—reversals of embedding orientations—in affected biconnected or triconnected components without rebuilding the entire embedding. Modern fully dynamic approaches preprocess the initial graph in O(n) time and handle subsequent edge insertions or deletions in amortized O(log³ n) time, detecting non-planarity in O(1) time via compatibility checks on pending edges. Examples include the on-line testing frameworks for streaming scenarios, which process edges sequentially while ensuring the remains planar. A 2024 algorithm for dynamic single-source upward planar digraphs supports edge insertions and deletions in O(log² n) worst-case time while maintaining an upward combinatorial , with queries in O(log² n) worst-case time. Limitations persist, as worst-case updates can demand O(n) time for extensive re-embeddings in highly connected components. Parallel algorithms accelerate planarity testing by distributing computations across processors, building on sequential methods like for concurrent execution. A 2024 thesis presents parallel variants of for multicore systems using a layer-based approach, achieving O(n) total work and O(n) span in the work-span model, with practical speedups of 2.4–2.7x on planar graphs using 16 cores. These use parallel DFS to build spanning trees and resolve embedding conflicts via coordinated merging of sub-embeddings. Central techniques include parallel lowpoint computation—assigning the smallest discovery time reachable from a subtree—via pointer doubling to simulate upward traversals in logarithmic rounds, enabling concurrent identification of back edges and cycles. Conflict resolution proceeds by parallelizing walk-up and walk-down phases across biconnected components, flipping orientations as needed to embed edges without crossings. However, these algorithms are not fully work-efficient, often incurring O(n log n) total work due to synchronization overheads, and worst-case parallel time can degrade to O(n) in dense graphs with heavy contention.

Complexity and Implementations

Time and Space Complexity

The development of planarity testing algorithms began with polynomial-time methods in the early , such as the O(V^3) algorithm by Auslander and Parter in 1961 and the O(VE) approach by Lempel, Even, and Cederbaum in 1967, which equates to O(V^2) for dense graphs. These were followed by improvements in the late and early , but the breakthrough came in 1974 with the Hopcroft-Tarjan algorithm, which achieved the first linear-time complexity of O(V) using a path-addition scheme based on . Subsequent refinements, including those by Booth and Lueker in 1976 using PQ-trees and Boyer and Myrvold in 2004 with a simplified DFS-based method, have maintained this O(V) upper bound, establishing it as the best-known for exact planarity testing. Space complexity for planarity testing algorithms is typically , as adjacency lists require O(V + E) storage, which simplifies to O(V) for sparse graphs common in planar contexts, and embedding representations like rotation systems add another O(V). DFS-based methods, such as Hopcroft-Tarjan and its variants, utilize stack space for or during traversal and conflict detection. A fundamental lower bound for exact planarity testing is Ω(V), arising from the need to read the entire input in the , as the adjacency representation requires at least linear size. No sublinear-time algorithms exist for exact testing due to this input constraint, though sublinear-time approximations are possible in the property testing framework, where the goal is to distinguish planar graphs from those far from planarity with high probability by querying a small of edges. Runtime can be influenced by preprocessing steps, such as decomposing the into biconnected components via DFS, which adds O(V) time but enables modular testing on each component.
Algorithm Type
Incremental (e.g., vertex-addition)O(V)O(V)
DFS-based (e.g., Hopcroft-Tarjan)O(V)O(V)
Dynamic (e.g., on-line insertions)O(V + U)O(V)
This table summarizes key categories, where U denotes the number of updates in dynamic settings; all achieve optimal linear bounds for static cases.

Practical Implementations and Software

The (BGL), a C++ template library for algorithms, provides an implementation of the Boyer-Myrvold planarity testing and algorithm, which supports undirected graphs and outputs a combinatorial if the graph is planar. The Open Graph Drawing Framework (OGDF), another C++ library focused on graph drawing, includes implementations of the Booth-Lueker algorithm (using PQ-trees) and Boyer-Myrvold, along with extensions for constrained planarity testing such as cluster-planarity. In , the NetworkX library offers a basic planarity testing function via check_planarity, which is based on the Left-Right Planarity Test and returns either a planar or a Kuratowski counterexample for non-planar graphs. Empirical benchmarks on large planar graphs with up to 1,000,000 vertices demonstrate that modern implementations achieve near-linear runtimes in practice, with experimental variants like Haeupler-Tarjan outperforming Boyer-Myrvold by 70-80% on connected and biconnected graphs of density up to 3n-6 edges. A ported Boyer-Myrvold implementation in OGDF runs 35% faster than the library's native version, making it suitable for graphs exceeding 10^5 vertices, though embedding computation adds overhead compared to testing alone. Evaluations from a confirm that parallel variants of Boyer-Myrvold, implemented in C++ using ParlayLib, scale effectively on multi-core processors, achieving 2.4-2.7x speedups on 16 cores for graphs with 500,000 to 1.3 million vertices and up to 22x on non-planar instances due to early termination. Practical challenges include efficiently handling disconnected graphs, which algorithms address by testing each separately before combining embeddings, and dense graphs near the planar density bound, where memory for adjacency structures becomes a bottleneck despite O(n + m) . Output formats often include combinatorial embeddings that can be converted to visual representations, such as for planar drawings in OGDF, facilitating integration with visualization tools for exporting non-crossing layouts. Recent developments feature experimental parallel C++ implementations tailored for environments, enabling planarity testing on massive graphs up to 90 million vertices with multi-core speedups. OGDF's also supports extensions for advanced applications, such as level-planar layouts in hierarchical graphs.

References

  1. [1]
    [PDF] Planarity Testing and Embedding - Brown CS
    Dynamic algorithms have also been devised for efficiently determining planarity and com- puting a planar embedding of graphs where edges and vertices are added ...
  2. [2]
    None
    Error: Could not load webpage.<|separator|>
  3. [3]
    A new planarity test - ScienceDirect.com
    In this paper, we developed a very simple linear time testing algorithm based only on a depth-first search tree.
  4. [4]
    On the Cutting Edge: Simplified O(n) Planarity by Edge Addition
    Jan 1, 2004 · In this paper, we improve upon our conference proceedings formulation and upon the Shih-Hsu PC-tree, both of which perform comprehensive tests ...<|separator|>
  5. [5]
    Simple Graph -- from Wolfram MathWorld
    A simple graph is an unweighted, undirected graph with no loops or multiple edges. The term 'graph' usually refers to a simple graph.Missing: authoritative sources
  6. [6]
    [PDF] Introduction to Graph Theory - FSU Math
    The most basic graph is the simple graph as defined above. Since the edges of a simple graph are undirected, they are represented by unordered pairs of vertices.Missing: authoritative sources
  7. [7]
    Planar Graphs - Discrete Mathematics
    When a connected graph can be drawn without any edges crossing, it is called planar. When a planar graph is drawn in this way, it divides the plane into ...
  8. [8]
    12.2: Definitions of Planar Graphs - Engineering LibreTexts
    Jun 29, 2021 · The drawing is planar if none of the curves cross themselves or other curves, namely, the only points that appear more than once on any of the ...
  9. [9]
    [PDF] Chapter 2 Plane Embeddings - ETH Zürich
    Figure 2.2: A planar graph (left) and a plane embedding of it (right). A geometric graph is a graph together with a drawing, in which all edges are realized as ...<|control11|><|separator|>
  10. [10]
    planar graph in nLab
    Jan 23, 2018 · A planar graph is a graph which may be embedded into a surface of genus 0 (such as a sphere or the Euclidean plane) without crossing edges.
  11. [11]
    [PDF] Planar Graphs, part 1 25.1 Introduction - Computer Science
    Dec 2, 2009 · Here's a formal definition of a planar graph. Definition 25.2.1. A graph is planar if there exists an embedding of the vertices in IR2, f : V → ...
  12. [12]
  13. [13]
    Planarity Testing | SpringerLink
    Planarity testing has applications to computer-aided circuit design and VLSI layout by determining whether a given network can be realized in the plane.
  14. [14]
    Graph Theory - Planarity Testing Algorithms - Tutorials Point
    Geographical Mapping: Planarity testing is useful for representing maps and regions in a way that avoids overlapping edges between borders or regions.
  15. [15]
    A new approach for visualizing UML class diagrams
    Testing for the consecutive ones property, interval graphs, and graph planarity using PQ-tree algorithms. Journal of Computer and System Sciences 13, 335--379.
  16. [16]
    [PDF] Planar Graphs
    Euler's formula can be useful for showing that certain graphs cannot occur as plane graphs. The graph K5, for example, has 10 > 3 · 5 6 edges, more than allowed ...Missing: Reinhard | Show results with:Reinhard
  17. [17]
    Sur le problème des courbes gauches en Topologie - EuDML
    Sur le problème des courbes gauches en Topologie. Casimir Kuratowski · Fundamenta Mathematicae (1930). Volume: 15, Issue: 1, page 271-283; ISSN: 0016-2736 ...
  18. [18]
    Preview
    ### Summary of Planar Graphs, Euler's Formula, and Bounds for Edges in Planar Graphs
  19. [19]
    Über eine Eigenschaft der ebenen Komplexe
    Wagner, K. Über eine Eigenschaft der ebenen Komplexe. Math. Ann. 114, 570–590 (1937). https://doi.org/10.1007/BF01594196
  20. [20]
    [PDF] Lempel, Even, and Cederbaum Planarity Method - IME-USP
    Receives a biconnected graph and returns YES if is planar, and NO otherwise. Number the vertices of according to an LEC-numbering. Each iteration begins with:.Missing: paper | Show results with:paper
  21. [21]
    Efficient Planarity Testing | Journal of the ACM - ACM Digital Library
    This paper describes an efficient algorithm to determine whether an arbitrary graph G can be embedded in the plane.Missing: survey | Show results with:survey
  22. [22]
    (PDF) The Hopcroft-Tarjan Planarity Algorithm - ResearchGate
    This is an expository article on the Hopcroft-Tarjan planarity algo-rithm. A graph-theoretic analysis of a version of the algorithm is presented.
  23. [23]
  24. [24]
  25. [25]
  26. [26]
  27. [27]
    The complexity of planarity testing - ScienceDirect.com
    We clarify the computational complexity of planarity testing, by showing that planarity testing is hard for L , and lies in SL . This nearly settles the ...
  28. [28]
    [PDF] Lecture 6 Contents 1 Introduction to Property Testing and Planarity
    In this lecture, we discuss a sublinear algorithm for planarity testing, extendable to other minor- closed properties, through reduction to the ...Missing: broader impact
  29. [29]
    On-Line Planarity Testing | SIAM Journal on Computing
    In this paper we investigate upward planarity testing of single-source digraphs; we provide a new combinatorial characterization of upward planarity and ...Missing: survey | Show results with:survey
  30. [30]
  31. [31]
    [PDF] The Open Graph Drawing Framework (OGDF) | Brown CS
    We present the Open Graph Drawing Framework (OGDF), a C++ library of algorithms and data structures for graph drawing. The ultimate goal of the OGDF is to ...Missing: Boost NetworkX
  32. [32]
    check_planarity — NetworkX 3.5 documentation
    Check if a graph is planar and return a counterexample or an embedding. A graph is planar iff it can be drawn in a plane without any edge intersections.Missing: software libraries Boost Library OGDF
  33. [33]
    [PDF] Evaluation and Comparison of Planarity Algorithms
    To test a graph's planarity using the technique of edge addition, Boyer and Myrvold described an algorithm [BM04], which consists of a preprocessing phase that ...
  34. [34]
    [PDF] New Parallel Algorithms for Planarity Testing - DSpace@MIT
    May 10, 2024 · In this thesis, we will describe and analyze two new parallel algorithms for planarity testing, both derived from the Boyer-Myrvold algorithm.