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
With this snippet and the latest 2.0, which creates an automaton with 1000 strings of 2000 characters each build() takes forever to complete, I eventually killed it:
>>> from array import array
>>> from acora import AcoraBuilder
>>> tks =[array('h', range(x, x+1000)).tostring() for x in range(1000)]
>>> builder = AcoraBuilder(*tks)
>>> ac=builder.build()
The text was updated successfully, but these errors were encountered:
With this snippet and the latest 2.0, which creates an automaton with 1000 strings of 2000 characters each
build()
takes forever to complete, I eventually killed it:The text was updated successfully, but these errors were encountered: