Stephen North
Stephen North
I don’t believe dot is able to do that. > On Feb 6, 2020, at 3:29 AM, skorsky wrote: > > > fdp allows cluster / subgraphs, but only...
This looks reasonable. Conceptually, what could make it faster? If we had agclone() we would probably just do something very much like your code. libcdt has a notion of viewpathing...
You could manually set one of the edges to be drawn pointing the other way, e.g. digraph G {a -> a; a -> a [dir=back]} It would be nice to...
hmmm can you send a sketch of what you would like to see?
It’s a constant generated by GNU flex. You can find this in the file lib/cgraph/scan.c that is generated by running flex on scan.l. You could add -DYY_BUF_SIZE=64368 or somesuch to...
There may be (and often are) multiple sections, in, say a piecewise cubic Bezier spline that has to route around a number of obstacles, or in orthogonal routes that have...
Yes, I agree that the crossing seems to be a bug, since local optimization should detect that exchanging the virtual node for the middle of the red edge with the...
Its a bug, it should report the problem with the input graph and adjust it before proceeding or exit gracefully. On Mon, Apr 3, 2017 at 2:58 AM Chiel ten...
OSX does Address Space Layout Randomization. https://en.wikipedia.org/wiki/Address_space_layout_randomization Programs that rely hashing or comparing addresses could be affected. This can be disabled with the linker option no_pie http://stackoverflow.com/questions/23897963/documented-way-to-disable-aslr-on-os-x So for graphviz,...
Why, yes, it does, since 2005. https://linux-audit.com/linux-aslr-and-kernelrandomize_va_space-setting/ It’s been a while but I’m pretty sure I’ve done sudo echo 0 > /proc/sys/kernel/randomize_va_space remember to set it back to 2 when...