Yossi Gil

Results 29 issues of Yossi Gil

Quality assurance

new-tipper
Namespace
236526

Quality assurance

Instead of ```java @Test public void wikiPageRanksExample() { final Graph g = makeWikiExample(); assertEquals(11, g.size()); assertEquals(5, g.sourcesCount()); assertEquals(1, g.sinksCount()); assertEquals(1, g.inDegree(g.vertex("A"))); assertEquals(0, g.outDegree(g.vertex("A"))); assertEquals(6, g.inDegree(g.vertex("E"))); assertEquals(3, g.outDegree(g.vertex("E"))); assertEquals(11, Iterables.count(g.preOrder())); verifyPreorder(g);...

236526

This one is not simplified: ```java a==b+2-5 ``` to ```java a==b-3 ```

bug
On hold

can anything be done for `0+(x + 0 + y + (x + 2)`, without knowing the type of `x` or `y`? I doubt it, yet the tests say it...

bug
Challenge

Add a new handler and a new command, to do spartanization step by step. This means, find a tip, apply it, repeat. I think this would be fun! What do...

enhancement
Challenge
maintenance
First priority

I fixed some of the problems, and disabled the tipper, but there is more work to be done: - The condition of the if statement must be ANDed with the...

bug