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
the code is not very efficient at all, it seems; we can just early return instead of iterating through the entire control every single step of the cse machine
I'm pretty sure this alone accounts for most of the 40minutes
same thing for the switch case logic, lots of unnecessary computation
@sayomaki :
consider using javascript's Array.some() or Array.every() instead
@RichDom2185 :
yes that also works, no need for a for loop, though I think the logic can be improved further
because the same computation is being repeated at every step
it should have been memoised
just create a new field in the control item and calculate it once only instead of calculating n times for each item where n is the number of control items
The text was updated successfully, but these errors were encountered:
The
canAvoidInstr
function is extremely inefficient and slows down the deployment each time by almost one hour!@RichDom2185 and @sayomaki commented:
the code is not very efficient at all, it seems; we can just early return instead of iterating through the entire control every single step of the cse machine
I'm pretty sure this alone accounts for most of the 40minutes
same thing for the switch case logic, lots of unnecessary computation
@sayomaki :
consider using javascript's Array.some() or Array.every() instead
@RichDom2185 :
yes that also works, no need for a for loop, though I think the logic can be improved further
because the same computation is being repeated at every step
it should have been memoised
just create a new field in the control item and calculate it once only instead of calculating n times for each item where n is the number of control items
The text was updated successfully, but these errors were encountered: