Michael Kunz

Results 9 comments of Michael Kunz

I second @sereda expectation of causality, in that a loaded value V(K) must be updated when the key is invalidated. Has there been a consensus how to work around this...

-E- is displayed when there is not enough space to display the value (see LcdSkin#isNoOfDigitsInvalid) but the check seems broken to me, because sometimes I see -E- after the number...

This method is a good candidate for interpolation search.

An `UnsupportedConfigurationException` occurs when the interactive cycle breaker reverses edges on a node with layer constraint. For now I'm just omitting the layer constraints when doing an incremental/interactive layout. ```...

The branch is called `main` so the version must be `main-SNAPSHOT` This should be fixed in the docs

Please make it possible to adjust line join and line cap for renderers and/or change the default values. When rendering data as a polyline with very acute angles the joins...

@ennerf thanks, I also used a custom renderer. ```java public class Demo extends Application { @Override public void start(Stage primaryStage) throws Exception { XYChart chart = new XYChart(); DefaultDataSet dataSet...

I'm going with ```java gc.setLineJoin(StrokeLineJoin.BEVEL); gc.setLineCap(StrokeLineCap.BUTT); ``` because when exceeding the miter limit the join will fall back to a bevel anyways and these differences/changes in representation might be irritating...

When talking about IntelliJ there is [Structural Replace](https://www.jetbrains.com/help/idea/2024.1/structural-search-and-replace-dialogs.html) which allows you to find all method calls to the testng Assertion class and replace them with switched first and second parameters...