caseyagraff / dagma

A lightweight pipelining tool for computation.
BSD 2-Clause "Simplified" License
1 stars 0 forks source link

Don't require foreach variables to be hashable #22

Open caseyagraff opened 4 years ago

caseyagraff commented 4 years ago

Currently in _evaluate() in ForeachComputeNode, we use "set(foreach_vals)" and "vals[val]" which both require individual foreach value to be hashable.

Remove this requirement by checking and changing behavior if it is not hashable.