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 Dafny Python runtime implements "get subsequence" in O(k), where k is the length of the subsequence. (code)
The Unicode partitioning code hopes that "get subsequence" is O(1) for reasonable performance in a runtime.
The linked code runs very slowly as as result of the slow implementation.
This creates challenges when I'm working with large JSON files using the Dafny JSON tools.
The text was updated successfully, but these errors were encountered:
Unicode partitioning code: https://github.com/dafny-lang/libraries/blob/master/src/Unicode/UnicodeEncodingForm.dfy#L123-L128
The Dafny Python runtime implements "get subsequence" in O(k), where k is the length of the subsequence. (code)
The Unicode partitioning code hopes that "get subsequence" is O(1) for reasonable performance in a runtime.
The linked code runs very slowly as as result of the slow implementation.
This creates challenges when I'm working with large JSON files using the Dafny JSON tools.
The text was updated successfully, but these errors were encountered: