OGDF » Developer's Guide » Porting Guide » Elderberry
OGDF_LEAK_CHECK
enables the address sanitizer for COIN as well. This prevents false positives resulting from different parts of an application being built with and without the address sanitizer. See here.
GraphObserver::reInit()
was removed as it was never actually called.
The class MinCut
was renamed to MinimumCutStoerWagner
and is now a template, e.g., you can use MinimumCutStoerWagner<int>
when you have integer weights. Its methods were also renamed and now return const-references (where appropriate) instead of copying data. The returned lists are now ArrayBuffers.
The code
transforms to
RadialTreeLayout::leaves()
and RadialTreeLayout::connectedComponentDistance()
have been removed. The latter was not properly implemented and had no effect on the layout.