Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 392 Bytes

TODO.md

File metadata and controls

11 lines (8 loc) · 392 Bytes

TODO

Use Strems instead of Enum

Every single list related operation in the program uses Enum (eager) list creation instead of Streams (lazy). Its a nice to have just for the sake of the use of Streams. Performance isn't an issue, but computing the whole game before presenting it is wasteful.

This todo is done when solver, sequencer and player use Streams instead of Enums or Lists.