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
I have an issue when I run the optimize algorithm on this FST.
The algorithm panics because of an unwrap() occurring in the decode function that happens just after a minimize. More exactly, decode(tr.ilabel) is called with an ilabel == 0 which implies calling a get on a negative value here.
The issue seems to be introduced by this PR #166 as the algorithm doesn't panic in the latest commit before that change (8f7f486).
The text was updated successfully, but these errors were encountered:
I have an issue when I run the
optimize
algorithm on this FST.The algorithm panics because of an
unwrap()
occurring in thedecode
function that happens just after aminimize
. More exactly,decode(tr.ilabel)
is called with anilabel == 0
which implies calling a get on a negative value here.The issue seems to be introduced by this PR #166 as the algorithm doesn't panic in the latest commit before that change (8f7f486).
The text was updated successfully, but these errors were encountered: