The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
47 views

Number of edges between the two subsets of a bipartitioned graph

Given a graph G=(V, E), a subset S that belongs to V, and the subset S' containing every vertex of G not belonging to S, I want to count the total number of edges between the nodes of S and S'. An ...
0
votes
1answer
28 views

Induced subgraphs in neo4j

I have a graph in neo4j, and for a given node N, I would like to find all nodes that are reachable in a path of no longer than P steps from N, as well as all links between that set of nodes. It seems ...
0
votes
1answer
15 views

Counting and listing motifs in SAGE

The question was correctly answered in http://ask.sagemath.org/question/2612/motifs-and-subgraphs I'm counting the number of 3-motifs (3-nodes isophormic class of connected subgraphs) in a random ...
0
votes
2answers
84 views

Extract subgraph in neo4j

I have a large network stored in Neo4j. Based on a particular root node, I want to extract a subgraph around that node and store it somewhere else. So, what I need is the set of nodes and edges that ...
1
vote
1answer
25 views

Pick all subgraphs by a specific pattern from a graph

So I'm looking forward to pick a lets say a triangle/square/../hexagon from a graph. What do i mean by that: input from keybord: a-b b-c c-a and output m-n-o, x-y-z, s-t-u (where each of this ...
2
votes
1answer
111 views

Graphviz subgraphs looking like record shaped nodes

I'm trying to generate graph for GStreamer applications where are many nested bins. Each bin have some elements but bin for parent bin looks like any other common element that have pads (sinks and ...
1
vote
1answer
77 views

How to find largest connected subgraph in neo4j

yes, like the title says, I have a social graph stored in neo4j, about 1 million nodes and 20million relationships, I want to get the the largest connected subgraph, so I can continue my work. now I ...
1
vote
1answer
70 views

NetworkX: Subgraph Isomorphism by edge and node attributes

Suppose I have 2 graphs A and B and I want to know if A is a subgraph of B. The nodes contain attributes, say, 'size' and 'material'. When I run: GM = ...
1
vote
1answer
82 views

Extracting subgraph from neo4j database

I have a graph in neo4j database. I want to extract a sub graph given a particular node and a particular depth. I tried using the traversal framework, but it only returns a set of paths. It gives ...
0
votes
0answers
21 views

Implementing different routes(missions) in digraph [closed]

I need advice about Python libraries and packages. Which library and functions are best to use for implementing directed graph with defined subgraphs. Subgraphs represent different missions as set of ...
3
votes
1answer
190 views

Loading a Neo4j subgraph into Networkx

I have been dealing with Neo4j through python's Bulbflow and now need a way to save/export subgraphs. I have seen Java and even Ruby approaches for doing this, however a simple Python approach seems ...
0
votes
1answer
77 views

Networkx, DIAC graph, subgraph from a node with deph limit

I have a Digraph constructed with networkx that has 37379 nodes and 61263 edges. I would like to extract for a node target, a subgraph that contain only the target node and the first nodes that are ...
2
votes
2answers
214 views

Neo4J Subgraphs or Multiple Databases

I have my Neo4J (embedded) database setup like this: I attach several user nodes to the reference node. To each user node can be attached one or more project nodes. To each project node is a complex ...
0
votes
1answer
87 views

Extracting subgraphs (cliques) within graph on Netlogo

I have a netlogo question. I have some graph structures of nodes connected with (undirected) links. I need to figure out which is the smallest subgraph within one of these structures. Basically ...
2
votes
2answers
93 views

GraphViz enforce columns

I have the following dot: digraph G { rank="same"; subgraph sys { 1 [shape=record, label="| | Système"]; } subgraph obj { 2 [shape=box, label="Sites"]; ...
0
votes
2answers
278 views

Force GraphViz force align between subgraph

I use GraphViz with the following dot file: digraph "Fast-forward" { rankdir=LR; subgraph master { "5c071a6b2c" -> "968bda3251"; } subgraph branch { ...
0
votes
0answers
171 views

Java JGraphT: Enumerate all subgraphs with max. number of edges of a given Graph

I'm working with graphs in java for the first time. I'm using JGraphT to model my graphs. My problem is the following: I have an undirected graph given in advance. Now I want to extract all possible ...
1
vote
1answer
145 views

Topological order for a dependency subgraph

I'm looking for a variation of the standard topological sort algorithm which operates on a subset of nodes. Consider a graph of labeled nodes with three types of directed edges: "depends on", ...
0
votes
1answer
118 views

Algorithms for maximum weighted spanning weakly connected DAG

Is there an algorithm to find maximum weight spanning DAG that is weakly connected in a directed graph where every cut has sets that are weakly connected (There is at least one directed path from one ...
2
votes
1answer
131 views

graphviz circle subgraph

I have a graphviz representation with 7 subgraph clusters. In each subgraph there is around 20 nodes interconnected. Each subgraph have 3 to 10 links with one or more cluster (one node in cluster 1 ...
2
votes
1answer
191 views

How do I get graphviz to generate fixed sized subgraphs?

I've been struggling with this for a while and cannot seem to find a straight answer. I'm working with compound subgraphs in graphviz and cannot seem to find the right combination of settings to force ...
3
votes
1answer
93 views

SQL: Finding a subgraph

I have a graph network stored in an SQL server. The graph network ( collection of labeled, undirected and connected graphs) is stored in Vertex-Edge mapping scheme (i.e there are 2 tables..one for ...
1
vote
0answers
108 views

fixed subgraphes in graphviz

I'm trying to route schematics in graphviz (dot). My components are subgraphes. If i try to connect my components graphviz draw edges through the components (subgraphes), moves nodes and edges (and so ...
0
votes
1answer
599 views

Graphviz subgraph alignment issue

I am trying to force the nodes to have a specified position in the graph. While doing so, the different sub-graphs are not aligned properly. The code to generate this graph is : digraph { rankdir=LR; ...
1
vote
1answer
771 views

Subgraph layout in graphviz

I have code to display two subgraphs: graph { rankdir=LR; subgraph cluster01 { label="t=0" a0 [label="A"]; a1 [label="B"]; a2 [label="C"]; a5 ...
0
votes
0answers
130 views

Python networkx Drawing overlay subgroups in a graph

I am wondering if it is possible to create a graph using python and possibly networkx, overlaid subgraphs having different colors? These subgraphs are cluster of nodes. An example of such graph can ...
0
votes
0answers
36 views

Error when extracting frequent subgraphs

I used this tool "gspan" to extract frequent sub-graphs in linux: http://www.cs.ucsb.edu/~xyan/software/gSpan.htm An error occurred after extracting some the sub-graphs saying "segmentation fault". ...
1
vote
2answers
94 views

K-Size Subgraphs

I need an algorithm to find k-size subgraphs of a large graph. What is your suggestion? Note: My graph is undirected. Thanks in advance.
7
votes
1answer
998 views

graph - How to find maximum induced subgraph H of G such that each vertex in H has degree ≥ k

Here is an excise for graph. Given an undirected graph G with n vertices and m edges, and an integer k, give an O(m + n) algorithm that finds the maximum induced subgraph H of G such that each ...
3
votes
2answers
2k views

List of C++ libraries for Graph Theory

I'm going to start a scientific project about automata and graph theory, and I'm searching for a graph library that supports features like: directed/undirected graphs graph isomorphism test (i.e. is ...
3
votes
1answer
395 views

Why does Graphviz no longer minimise edge lengths when subgraphs are introduced

I have this Graphviz graph: digraph { rankdir="LR"; overlap = true; Node[shape=record, height="0.4", width="0.4"]; Edge[dir=none]; A B C D E F G H I A -> B -> C D -> ...
0
votes
2answers
115 views

subgraph of an acyclic graph covering some selected nodes but other nodes not on the path

I have a undirected and unweighted (or all edges are weighted 1) acyclic graph (G=VxE). Some of this graph's nodes are selected as sV (sV is subset of V). Problem is, I want to find the subgraph ...
0
votes
2answers
59 views

algo for reducing a graph while preserving edge values along paths from a start node to an end node

I have a directed cyclic graph with values at edges but no values at nodes. The graph has a start node and an end node, and I want to preserve the set of paths through the graph but I don't care ...
1
vote
2answers
279 views

Creating a subgraph of a graph induced by node list

I'm currently using Graph, however it lacks a method to create a subgraph of the original graph induced by given list of vertices. I've written a stub which does it using Graph's accessors, but ...
3
votes
1answer
205 views

Finding the best subgraph

I am trying to solve the following problem: Given a connected graph G = (V, E) and a vertex t ∈ V, I need to find a subgraph G'= (V', E ') where t ∈ V'. G' should maximize some objective function ...
1
vote
1answer
387 views

Generate all possible subgraphs of a directed graph keeping the number of vertices

I have two lists of vertices: V and S. I would like to generate all possible directed graphs from V and S so, that each vertex from V has only one out-edge and exactly one in-edge, and each vertex ...
0
votes
2answers
2k views

top-down subragpraphs, left-right inside subgraphs

I'd like to have my graph looks like this, but I can only get this. The problem is, rankdir does not work in subgraph (bug 1279 in graphviz). So, how to emulate it? The code: digraph G { node ...
0
votes
1answer
433 views

JGrapht: Generate subgraphs with DirectedSubgraph.java class

I use jgrapht. I will generate subgraphs. I think jgrapht-0.8.2/jgrapht-0.8.2/src/org/jgrapht/graph/DirectedSubgraph.java is useful for this purpose. But I could not find how can I use this class? ...
1
vote
2answers
680 views

Induced subgraph; existence of path between two nodes

Sorry for the wall of text, its as concise as I could make it! I've got one very large directed graph, G, and subset of vertices, S, from within G. What I want to do is find the subgraph of G ...
3
votes
1answer
194 views

Time complexity of n-vertex subgraph enumeration

I have an algorithm for creating a list of all possible subgraphs on P vertices through a given vertex. It's not perfect but I think it should be working alright. The problem is I get lost when I try ...
5
votes
2answers
591 views

Pattern matching in graphs

I'm trying to find tool/algorithm for searching sections that corresponds to specified pattern in oriented graph, e.g.: A->B->C or or A<->B->C Please, suggest me direction of my searches. I mean ...
4
votes
2answers
1k views

How can I get dot to draw connected subgraphs side by side?

This is what the generated graph looks currently: And here is the code for this: digraph { rankdir=TB; subgraph cluster01 { label="1.fázis" aSTART; node [shape = doublecircle]; ...
2
votes
1answer
441 views

subgraphs in a graph

I have a main graph and another small graph, suppose that the small graph could be repeated in the main graph as a subgraph with a degree of similarity(not necessarily the same small graph) What's a ...
1
vote
1answer
266 views

subgraph isomorphism [closed]

I need a generic algorithm to solve the problem of subgraph isomorphism, we have tow graphs T and G, is T a subgraph in T?
0
votes
2answers
457 views

algorithm to check whether a given graph is subgraph of another graph [closed]

i assume that we have 2 labeled graphs G and T and the algorithm determine if G a subgraph of T and the corresponding vertices in the main graphT and the subgraph G should have same label
3
votes
1answer
1k views

Graphviz: how to rotate a node (or a subgraph)?

I am trying to have a node (or a subgraph, enclosing a node - whichever is possible/easier) rotated, like shown in this image: (Note that it doesn't matter to me if the "B" label is rotated - only ...
7
votes
4answers
1k views

minimum connected subgraph containing a given set of nodes

I have an unweighted, connected graph. I want to find a connected subgraph that definitely includes a certain set of nodes, and as few extras as possible. How could this be accomplished? Just in ...
4
votes
1answer
2k views

Find all complete sub-graphs within a graph

Is there a known algorithm or method to find all complete sub-graphs within a graph? I have an undirected, unweighted graph and I need to find all subgraphs within it where each node in the subgraph ...
4
votes
3answers
2k views

Graph Algorithm To Find All Paths Between N Arbitrary Vertices

I have an graph with the following attributes: Undirected Not weighted Each vertex has a minimum of 2 and maximum of 6 edges connected to it. Vertex count will be < 100 Graph is static and no ...
4
votes
2answers
1k views

Algorithms for subgraph isomorphism detection

Subgraph isomorphism is an NP Complete problem. The most widely used algorithm is the one proposed by Ullman. Can someone please explain the algorithm to me in layman's language? I read the above ...

1 2