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
Alright, it seems that a very simple implementation approach is:
class PScanReverse:
@staticmethod
def pscan(A, X):
# call reverse version of PScan
return PScan.pscan_rev(A, X)
@staticmethod
def pscan_rev(A, X):
# call reverse version of PScan
return PScan.pscan(A, X)
def forward(...)
# same of `PScan.forward` but make some sequential adjustments
...
def backward(...)
# same of `PScan.backward` but make some sequential adjustments
...
Some tasks need to reverse scan sequences, but a
flip -> scan->flip
operation too slow.The text was updated successfully, but these errors were encountered: