Tagged Questions
The jgrapht tag has no wiki summary.
2
votes
2answers
167 views
how to use Graph Theory for scheduling execution order?
I am designing an application, which executes a series of plugins. A plugin's execution might/might not be dependent on another/other plugins execution. i.e some (not all) of the plugins expect other ...
2
votes
2answers
639 views
Graph Theory: Find the Jordan center?
I'm trying to find the set of vertices that minimizes their distance to other vertices on a weighted graph. Based on a cursory wikipedia search, I think that this is called the Jordan Center. What are ...
2
votes
2answers
591 views
Java: Why does this method have side effects?
I have a method that is producing side effects, even though certain variables are marked final. Why is this? Perhaps I am confused about what final does.
@Test
public void testSubGraph() {
...
2
votes
2answers
567 views
Java Code Review: Generate a subgraph
I'm using JGraphT and I want to generate a subgraph, like this:
If there's a graph like {stuff -> a -> b -> stuff}, and you ask for the subgraph in direction of {a -> b}, you'll get {a ...
2
votes
3answers
1k views
Java: Minimum spanning tree with JGraphT?
I have a problem that can essentially be viewed as a graph. I'm considering using JGraphT to implement it instead of rolling my own. What would be the best way to get a minimum spanning tree out of a ...
2
votes
2answers
778 views
Java: JGraphT: Iterate through nodes
I'm trying to iterate through all nodes, so I can print them out for graphviz. What is the best way to do that using the JGraphT library?
public static void main(String[] args) {
...
2
votes
1answer
1k views
Show weights in JgraphT
I have implemented this Graph:
ListenableDirectedWeightedGraph<String, MyWeightedEdge> g =
new ListenableDirectedWeightedGraph<String, MyWeightedEdge>(MyWeightedEdge.class);
In ...
1
vote
1answer
83 views
What to do when .equals() can't be set correctly?
I'm trying to use the excellent JGraphT library to write a Scrabble program in Java as practice with directed acyclic graphs and Java.
So, my edges are going to be letters and the vertices bitsets ...
1
vote
0answers
61 views
jGraphT for Objective C?
I'm looking for a Directed Acyclic Graph implementation in Objective C.
I've had enormous success with jGraphT in the Java space. I'm using a DirectedGraph to model a power subsystem, and now I need ...
1
vote
0answers
492 views
Java:JGraphT add edges using a loop
Is it possible to add edges to a graph through the use of a loop? I am parsing a String to determine the appropriate edges and labels. For some reason it will only add the edge for the first round ...
1
vote
1answer
430 views
Java library for trees similar to JGraphT for graphs?
I'm a big fan of JGraphT, a Java library for graphs. Could anyone recommend a similar Java library for trees? Preferrably FOSS.
What I need is a good API, preferrably typesafe with generics which ...
1
vote
1answer
139 views
JGraph - overriding cell drag
This is quite a long shot, I know it's a question about a very specific package.
I'm trying to stop nodes from dragging into a certain area of the graph.
I have written code to detect when the mouse ...
1
vote
3answers
587 views
Java: How does my Prim's look?
I am trying to implement Prim's minimum spanning tree algorithm with JGraphT. How does it look?
One issue I ran into was JGraphT's handling of everything like it's directed. So sometimes it is ...
1
vote
1answer
734 views
Java: Prim's with Fibonacci heap? (JGraphT)
JGraphT has a nice Fibonacci Heap class. How can I use it to implement Prim's minimum spanning tree algorithm?
0
votes
0answers
11 views
jgrapht class in jgrapht that will allow me to construct a graph dynamically
I'm looking for a class in jgrapht that will allow me to construct a graph
dynamically and generate new edge in the given graph at run
time based on branch of the algorithm .
I need to ...
0
votes
0answers
13 views
jgrapht with view in java
I have created my own view in eclipse. I have also created an applet for generating graph using JGrapht library. Now I want that graph to embed into the view without opening any new window.
Code for ...
0
votes
1answer
19 views
Changing contents of vertex with JGraphT
Is there a method to change the contents of a vertex while keeping all its edges. I couldn't find one but it seems like something that would be provided.
0
votes
1answer
50 views
TextRank Run time
I implemented textrank in java but it seems pretty slow. Does anyone know about its expected performance?
If it's not expected to be slow, could any of the following be the problem:
1) It didn't ...
0
votes
0answers
28 views
JpGraph Error 6007
I have JGraph 3.0 in my (php-mysql) application. But when I click on it I get JpGraph Error 6007
Sanity check for automatic Gantt chart size failed. Either the width (=1348) or height(=35667) is ...
0
votes
1answer
61 views
JGraphT cannot be cast to org.jgrapht.graph.DefaultWeightedEdge
I'm new Java and am using jGraphT to create a SimpleDirectedWeightedGraph. I'm getting this error when trying to set weights on my edges after creating and adding them to the graph:
Exception in ...
0
votes
0answers
75 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? ...
0
votes
3answers
296 views
JGraph in a JFrame
I want to draw some graphs including vertices and edges in my application. I found that JGraph is a good library for plotting graphs. I went through some online sources about it but couldn't find any ...
0
votes
0answers
148 views
Directed Weighted Graph in JGraphT Library [closed]
How can i create Directed Weighted Graph using JGraphT Library
0
votes
0answers
44 views
Print edge weight instead (start vertex;end vertex)
I have ListenableDirectedWeighted Graph and want to print edge weight instead (start vertex;end vertex).
How can I do it?
0
votes
1answer
166 views
How can I find the shortest cycle in a Directed, Weighted Graph?
I am looking for the easiest way to find the shortest cycle in a graph.
0
votes
0answers
31 views
Move the label of the vertices in with graph
I am trying to move the vertices' labels outside the node in graph. The setLabelposition method does not seem to work for the vertices; It just works for the edges. Any suggestions?
thank you
0
votes
0answers
64 views
How do I get a ordered dependency iterator using JGraphT
I'm working on a js dependency management project. I've been pointed at JGraphT which seems to offer a lot of handy stuff.
However I'm having trouble finding the specific info I want which is how I ...
0
votes
0answers
273 views
Running the GraphEd example found in JGraph-5
I'm new to JGraph5. Need to design an interface using it. Before that want to run the GraphEd example found in JGraph-5.
I created a project GraphEd in eclipse and replaced the code with the code ...
0
votes
1answer
245 views
jgrapht-jdk1.6 “HelloJGraphT.java” compilation problem
JGraphT package includes some examples to experiment oneself. HelloJGraphT.java is one of them. I can run it, without any error, in Netbeans6.0.1. But, when i use dos command prompt in the following ...
0
votes
1answer
528 views
import jgrapht package into my netbeans project
I am not knowing how to use the classes written in netbeans for one of my project . in which folder should i place the jgrapht package . will i have to write the import statement if yes then what do i ...
0
votes
1answer
529 views
Java: edit and recompile .jar?
I downloaded JGraphT, and I want to make some changes to the core files. I'm using Eclipse. It wants a .jar or .zip to attach source files to the .class file. I have the .java file, but I'm not sure ...
0
votes
2answers
271 views
Java: .equals() failing for sets (JGraphT)
I can't figure out what's going wrong here. This test fails:
@Test
public void testSimpleCase() {
assertTrue(JGraphtUtilities.graphEquality(ChooseRootTest.generateSimpleCaseGraph(), ...