Yossi Gil
Yossi Gil
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);...
This one is not simplified: ```java a==b+2-5 ``` to ```java a==b-3 ```
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...
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...
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...