In the existing approach, we compute all generators in one go during the instantiation of the Generators struct. These generators are stored in RAM and later retrieved using an index/iterator.
To support memory-constrained systems, we can trade memory with compute performance and can implement a type of Generators which computes the generator when it is retrieved using an index/iterator.
In the existing approach, we compute all generators in one go during the instantiation of the
Generators
struct. These generators are stored in RAM and later retrieved using an index/iterator. To support memory-constrained systems, we can trade memory with compute performance and can implement a type ofGenerators
which computes the generator when it is retrieved using an index/iterator.