ponder-lab / Optimize-Java-8-Streams-Refactoring

Refactorings for optimizing Java 8 stream client code for greater parallelism and efficiency.
http://cuny.is/streams
Eclipse Public License 1.0
8 stars 7 forks source link

"Unreachable" streams being miscategorized #176

Closed khatchad closed 6 years ago

khatchad commented 6 years ago

Currently, we can't tell the difference between N being too small and streams actually being unreachable. Right now, we get an InstanceNotFoundException in both cases. We need to distinguish this situation because otherwise we won't count the streams we are missing from N being too small. My guess is that N being too small should count against our tool.

khatchad commented 6 years ago

Current implementation counts this situation "against" our tool as a failed precondition.