Dennis Block

Results 15 comments of Dennis Block

That's because the position values are overridden by the algorithm you are using. You could implement a new algorithm that does nothing, like this: ``` public class NoOpAlgorithm implements Algorithm...

Well, the point of the algorithms is calculating the positions for each node in the graph. If you try to "disable" the position setting the whole algorithm code is useless....

This is not possible with the current version without changes.

The problem is that `s1` does not have a connection to the rest of your nodes. The only algorithm that supports single nodes without a connection is the `FruchtermanReingoldAlgorithm`. Future...

Unfortunately the current algorithm that we use only works with directed rooted trees, which is an acyclic connected graph. In other words, it doesn't work with loops. Therefore we need...