planar-graph Questions
6
What is the most efficient way to generate a large (~ 300k vertices) random planar graph ("random" here means uniformly distributed)?
Lulalulea asked 12/7, 2010 at 20:33
2
For the purpose of this post, by a plane graph, or a planar map, I will mean an abstract graph that can be drawn in the plane (or equivalently on the sphere), together with the circular order of th...
Hatbox asked 30/3, 2013 at 16:56
4
Solved
I have a set of non-intersecting lines, some of which are connected at vertices. I'm trying to find the smallest polygon, if one exists, that encloses a given point. So, in the image below, out of ...
Repel asked 22/4, 2013 at 6:36
1
Solved
I have two sets of n nodes. Now I want to connect each node from one set with another node from the other set. The resulting graph should have no intersections.
I know of several sweep line algori...
Magnuson asked 29/6, 2016 at 8:53
1
Solved
I have an undirected graph with fixed node positions. The nodes cannot be moved, merged, removed or otherwise altered. The edges are fixed to their nodes, but do not have to be straight.
I need to...
Erminna asked 25/5, 2016 at 12:17
1
Solved
I am about to implement an algorithm for calculating a planar embedding.
I have started to verify my results by running against a set of graphs (rome graphs) and comparing my results to the result...
Citation asked 25/2, 2014 at 11:58
2
Solved
The following algorithm problem occurred to me while drawing a graph for something unrelated:
We have a plane drawing of a bipartite graph, with the disjoint sets arranged in columns as shown. H...
Longmire asked 20/11, 2013 at 21:43
2
Solved
I have a number of polygons each represented as a list of points. I'm looking for a fast algorithm to go through the list of polygons and uncross all of the crossed edges until no crossed edges rem...
Matrimonial asked 4/1, 2013 at 1:38
2
Solved
What are some edge overlap minimization techniques when laying out a graph? (Preferably related to GraphViz) Also are there any existing software that can layout a graph in a planar fashion?
Curre...
Tailwind asked 27/2, 2010 at 15:2
2
Solved
I'm using Processing to develop a navigation system for complex data and processes. As part of that I have gotten into graph layout pretty deeply. It's all fun and my opinions on layout algorithms ...
Brick asked 18/11, 2011 at 13:32
1
Solved
I encountered many problems that can be formulated as graph problem.
It is in general NP-hard but sometimes the graph can be proved to be planar.
Hence, I am interested in learning these problems a...
Slangy asked 21/6, 2011 at 16:54
1
Solved
I am using networkx (a python graph-drawing package) http://networkx.lanl.gov/index.html for one of my project. Though networkx is pretty cool, the display function kind of sucks due to number of c...
Bechtel asked 20/2, 2011 at 16:10
2
Solved
I have relatively small (40-80 nodes) cubic (3-regular) planar graphs, and I have to decide their Hamiltonicity. I am aware of the fact that this task is NP-complete, but I hope for asymptotically ...
Aoudad asked 5/7, 2010 at 0:56
4
In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints.
Their are man...
Hurds asked 21/1, 2010 at 6:3
4
Solved
I'm learning about the Planar Graph and coloring in c++. But i don't know install the algorithm to do this work. Someone please help me?
Here i have some information for you! This is my code! And ...
Paphos asked 6/12, 2009 at 8:6
3
Solved
I have a geometric undirected planar graph, that is a graph where each node has a location and no 2 edges cross, and I want to find all cycles that have no edges crossing them.
Are there any good ...
Dramamine asked 8/5, 2009 at 3:13
1
© 2022 - 2024 — McMap. All rights reserved.