Inchan Hwang

Results 11 comments of Inchan Hwang

mind if I work on this?

@pathikrit The simplicity of your code is amazing, but I still think having flow 1 augmenting path is limiting the full power of the algorithm. How is (basically your code...

@pathikrit hmm keeping track of flow(u, v) for all pairs (u, v) seems unnecessary work. Ideas for improvement?: 1. sum(capacity(u->sink) - cap(u -> sink)) for all vertices u directed to...

```scala def maxFlow[V](capacity: Map[(V, V), Int], source: V, sink: V): Int = { val vertices = capacity.keySet.flatMap({case (u, v) => Seq(u, v)}) val cap = mutable.Map(capacity.toSeq : _*).withDefaultValue(0) val flow...

Ok I'll try to see what I can do :) Thanks for the report!

Hmm that's strange. To best of my knowledge, enum values in protobuf are serialized as numbers rather than strings. Could you provide me a snippet of the `.proto` file and...

Hmm that's strange. I'll double check to see what's going on. Thank you!

Alright I'll take a look. Thank you for reporting!!

Hmm I guess I'll have to find a way to support all of those messages. Thanks for reporting! I'll work on this next week.

I'll have to think about how to go about this, and it indeed seems pretty heavy :| I'll give it a shot if I have time.