Tagged Questions
The dag tag has no wiki summary.
14
votes
4answers
8k views
How do I check if a directed graph is acyclic?
How do I check if a directed graph is acyclic? And how is the algorithm called? I would appreciate a reference. Niko
12
votes
4answers
979 views
Incremental linearizing of git DAG
I'm the author of GitX. One of the features GitX has is the visualization of branches, as can be seen here.
This visualization is currently done by reading commits which are emitted from git in the ...
8
votes
2answers
417 views
Converting Directed Acyclic Graph (DAG) to tree
I'm trying to implement algoritm to convert Directed Acyclic Graph to Tree (for fun, learining, kata, name it). So I come up with the data structure Node:
/// <summary>
/// Represeting a node ...
7
votes
4answers
445 views
Maximum weight connected subgraph in an directed acyclic graph
I am working on a research problem involving logic circuits (which can be represented as DAGs). Each node in the DAG has a given weight, which can be negative. My objective is to find a connected ...
6
votes
1answer
150 views
Is there a data structure for DAGs that supports efficient edits?
I'm looking for a data structure that will store any DAG, but can efficiently (i.e., sub-linearly in the number of edges/vertices) detect if adding an edge would create a cycle (and thus prevent you ...
6
votes
2answers
428 views
DAG-oriented git browser?
There are git intros with pretty graphs to get your head around the concept of "git's history is just a DAG". I'm wondering why there are (seemingly) few visual git browsers that builds upon this ...
6
votes
2answers
535 views
Problems with a simple dependency algorithm
In my webapp, we have many fields that sum up other fields, and those fields sum up more fields. I know that this is a directed acyclic graph.
When the page loads, I calculate values for all of the ...
6
votes
5answers
4k views
How to convert Directed Acyclic Graph (DAG) to Tree
I have been looking for C# examples to transform a DAG into a Tree.
Does anyone have an examples or pointers in the right direction?
Clarification Update
I have a graph that contains a list of ...
5
votes
1answer
63 views
Ways for mapping a directed acyclic graph to a grid / matrix
I have a DAG with many thousands of vertexes and edges.
I'm looking for algorithms that can position the vertexes on grid points in a way that's the most human friendly / aesthetic. My hunch is that ...
5
votes
1answer
205 views
Counting the number of shortest paths through a node in a DAG
I'm looking for an algorithm to count the number of paths crossing a specific node in a DAG (similar to the concept of 'betweenness'), with the following conditions and constraints:
I need to do the ...
5
votes
2answers
377 views
Efficient algorithm for merging two DAGs
I have two weighted DAGs (directed acyclic graphs) and need to merge them into one, so I can get a topological ordering (it could be more than two in some cases). The problem is that the graphs are ...
5
votes
3answers
381 views
Easy way to determine whether a given graph is subgraph of some other graph?
I'm looking for an algorithm to check whether a given graph is subgraph of another given graph.
I have few conditions to make this NP complete problem bit more feasible..
The graphs have approx ...
4
votes
3answers
872 views
list of all paths from source to sink in directed acyclic graph [closed]
Possible Duplicate:
[python]: path between two nodes
Can anyone point me to some resources on how to do this? I'm using networkx as my python library.
Thanks!
4
votes
2answers
207 views
Graphing the DAG generated by make?
My understanding is that when make executes, it generates a DAG internally to represent all the dependencies in the project. Is there a way to get at that DAG and graph it, say using something like ...
4
votes
3answers
550 views
What algorithm can I apply to this DAG?
I have a DAG representing a list of properties. These properties are such that if a>b, then a has a directed edge to b. It is transitive as well, so that if a>b and b>c, then a has a directed edge to ...
3
votes
1answer
238 views
digraph partitioning to subgraphs
Given a DAG with |V| = n and has s sources we have to present subgraphs such that each subgraph has approximately k1=√|s| sources and approximately k2=√|n| nodes.
If we define the height of the DAG ...
3
votes
7answers
459 views
Can someone explain in simple terms to me what a Directed acyclic graph is?
Can someone explain in simple terms to me what a Directed acyclic graph is? I have looked on Wikipedia but it doesn't really make me see its use in programming.
3
votes
3answers
1k views
How can one implement a Compact Directed Acyclic Word Graph (CDAWG) in C?
How would one implement this data structure in C. It is a structure similar to the DAWG, that is more efficient than the trie which only compresses prefixes. The CDAWG is a data structure twice as ...
3
votes
1answer
3k views
Longest path between from a source to certain nodes in a DAG
How do i find the longest path from single source to all final destinations
i.e. For source i1, Give longest path between i1 -> o1 and i1 -> o2.
The legends described in the above graph are as ...
2
votes
2answers
44 views
Do CouchDB documents have a DAG?
I'm looking at CouchDB. Documents have versions, and you can have conflicting versions. Does it store the version sequence as a directed acyclic graph (DAG), like dvcs do? If not, how is it ...
2
votes
2answers
70 views
Directed Acyclical Graph Traversal… help?
a little out of my depth here and need to phone a friend. I've got a directed acyclical graph I need to traverse and I'm stumbling into to graph theory for the first time. I've been reading a lot ...
2
votes
1answer
397 views
How to create an iterator wrapper for DAG structure in Java?
I want to have an iterator over a data structure.
For now I don't know what data structure is, mayebe it is a DAG (directed acyclic graph), but maybe it could be also a linked list.
So I want to wrap ...
2
votes
3answers
629 views
Representing a DAG (directed acyclic graph)
I need to store dependencies in a DAG. (We're mapping a new school curriculum at a very fine grained level)
We're using rails 3
Considerations
Wider than it is deep
Very large
I estimate 5-10 ...
2
votes
3answers
489 views
Visualizing a DAG
I have a large directed acyclic graph that I would like to visualize in a bitmap image.
Ideally I'd like to have all the root nodes at the top of the image, and all of the leaf nodes at the bottom, ...
2
votes
2answers
100 views
Sampling random nodes from a DAG
I have a large directed, acylic graph (DAG) from which I would like to efficiently draw a sample node according to the following criteria:
I specify a fixed node A that must never be sampled
Nodes ...
2
votes
1answer
165 views
DAG based application
the other day I could not exprese myself correctly and get closed my answer, so here's my second shot:
I need to create a basic DAG (Directed Acyclic Graph) application, put on common words, a node ...
2
votes
4answers
276 views
Algorithms to create a tabular representation of a DAG?
Given a DAG, in which each node belongs to a category, how can this graph be transformed into a table with a column for each category? The transformation doesn't have to be reversible, but should ...
2
votes
3answers
388 views
Is there an effient way of determining whether a leaf node is reachable from another arbitrary node in a Directed Acyclic Graph?
Wikipedia: Directed Acyclic Graph
Not sure if leaf node is still proper terminology since it's not really a tree (each node can have multiple children and also multiple parents) and also I'm actually ...
2
votes
4answers
1k views
Seeking algorithm to invert (reverse? mirror? turn inside-out) a DAG
I'm looking for an algorithm to "invert" (reverse? turn inside-out?) a
DAG:
A* # I can't ascii-art the arrows, so just
/ \ # pretend the slashes are all pointing
B C ...
1
vote
2answers
100 views
How to build in Java a Weighted Directed Acyclic Graph
I did a search on similar topics, but the answers are too vague for my level of understanding and comprehension, and I don't think they're specific enough to my question.
Similar threads:
Tree ...
1
vote
1answer
33 views
Which elements does the Directed Acyclic Graph contain?
There is a picture of a DAG in the book 'Building and Testing with Gradle' which i don't understand and is not well explained.
The DAG picture contains nodes like 'projects', 'dependencies', ...
1
vote
1answer
94 views
Topological sorting and cycles
I've got some input files from my teacher wich we are supposed to test the program with. The task is to read from file, create a directed graph and print out the output. But if there is a cycle we are ...
1
vote
2answers
69 views
Parent/Child database contains cyclical references
I have a keyword table where each keyword is assigned an id and is unique. I have a second table that links ids of parent keywords to ids of child keywords. One keyword can have up to approx 800 ...
1
vote
1answer
260 views
Calculating critical path of a DAG in C++
I'm doing the calculation of the critical path for the DAG of the image, according to this algorithm for another post.My teacher requires that aarray be implemented, I simplify the homework statement, ...
1
vote
3answers
310 views
all path in a DAG (a kind of connected binary tree)
hi
i have this DAG (it is similar to a binary tree, but it is a graph.. has this a specified name?):
(each number is a node and numbers in the node are for example, the program should run with ...
1
vote
2answers
155 views
Graph iteration from bottom to top algorithm?
Given this dependency graph: What's a "good" approach to iterate through it from bottom to top?
My expected results for each "cycle" are:
Iteration step "1": Project B, Project D, Project Z, ...
1
vote
2answers
85 views
Looking for a clean and efficient algorithm for checking on and off elements of a “tree” (actually a DAG)
This is not a homework.
Visually it looks like a tree, but all leafs are unique (have unique ids in database). The hierarchy above them is somewhat arbitrary. Each checkbox has 3 states: on, off, and ...
1
vote
6answers
939 views
Shortest path in Directed Acyclic Graph
I am given a string of characters, in which every consequent pair of characters comprises an edge. What I mean by that is this is the string: ABBCAD. Edges of the string are:
A->B
B->C
A->D
Shortest ...
1
vote
2answers
226 views
Algorithm to transform a workflow DAG into parallel resource allocation?
Say I have a graph where nodes are workloads of various kinds and edges are dependencies between the workloads. (This is a DAG since cyclical dependencies must not exist.)
I also have a set of ...
1
vote
1answer
218 views
joinedload / eager loading whole (sub)-graphs in sqlalchemy
Let's say I have a Task object which can be dependent on other Tasks. Is there a way to sensibly eager/joinedload all of a given set of task's subtasks?
class Task(DeclarativeBase):
__tablename__ ...
1
vote
1answer
399 views
Finding Shortest path in DAG (unweighed), between 2 vertices
Before the Floyd–Warshall/Dijkstra replies flood comes in please let me explain the situation as i'm sure either algorithm can be tuned for this case, and it has to be as this is not a toy example ...
1
vote
3answers
452 views
How is this algorithm, for finding maximum path on a Directed Acyclical Graph, called?
Since some time, I'm using an algorithm that runs in complexity O(V + E) for finding maximum path on a Directed Acyclical Graph from point A to point B, that consists on doing a flood fill to find ...
1
vote
1answer
119 views
Search a DAG with boolean constraints on reachability
The queries are something like
Return all vertices such that
(reachable from (A and (B or C))) and (not reachable from (D and E)).
The query can be formed with any kind of boolean constraints on ...
1
vote
2answers
386 views
Add a edge to direct acyclic graph with other restrictions
I have a DAG. I have this operation to add a edge between two nodes.
If A is reachable from B, then B is A's parent. If A is reachable from B without going though another node, then B is A's direct ...
0
votes
1answer
47 views
Directed acyclic graph in web UI
I need to display a Directed Acyclic Graph in a web page. I am not looking for an off-the-shelf library or solution. I am looking for suggestions, recommendations or a push in the right direction.
1. ...
0
votes
0answers
21 views
graph partitioning terminology
Does anyone know the right term(s) for what I'm trying to do?
Suppose I have a directed acyclic graph G. I want to replace a region of the graph with a single vertex representing that entire region.
...
0
votes
1answer
66 views
Is there a name for the algorithm that finds a minimal set of resources that will allow for no resource contention on a dataflow graph/weighted DAG?
I'm not sure if this has a simple solution or is a "named" algorithm, so I thought I'd ask here.
I have a dataflow graph (DFG) from a compiler. It's an arc-weighted DAG. The arc weights denote the ...
0
votes
0answers
217 views
UCMA: connection timeout from exchange server for application endpoint
i have a userendpoint app, that successfully connects to an lync server.
now i'm trying to connect an application endpoint.
i did all the trusted application pool staff, created the certificates.
...
0
votes
2answers
155 views
What structure to represent Directed Acyclic Graph in .NET?
I'm considering representing a DAG as Dictionary(Of Integer, List(Of Integer))
Where the key will be a vertex ID and the List will contain all target vertices along edges.
I will use this structure ...
0
votes
1answer
243 views
Starting Services — Directed Acyclic Graph
The framework I'm working with consists of stateful services that have dependencies on other services, forming a directed acyclic graph http://en.wikipedia.org/wiki/Directed_acyclic_graph
I want to ...