You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See #87. This is more or less the same issue, but now on the Allocator class.
Compared to Shape, how to implement the various operations for Allocator is more unclear. As a first pass I'm fine just setting the resulting Allocator to one of the input Allocator objects. E.g.:
This works because both of our Allocator specializations (single element tiles, and one-big tile) are agnostic to the operation. At some point derived classes will have more state (e.g., tiling info for each mode) and the operations will need to be fleshed out more at that point.
The text was updated successfully, but these errors were encountered:
Issue Description
See #87. This is more or less the same issue, but now on the
Allocator
class.Compared to
Shape
, how to implement the various operations forAllocator
is more unclear. As a first pass I'm fine just setting the resultingAllocator
to one of the inputAllocator
objects. E.g.:This works because both of our
Allocator
specializations (single element tiles, and one-big tile) are agnostic to the operation. At some point derived classes will have more state (e.g., tiling info for each mode) and the operations will need to be fleshed out more at that point.The text was updated successfully, but these errors were encountered: