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
Right now the cycle detection isn't very helpful since it doesn't tell you where the actual problem is.
It would be nice if it included a vector of the cycle path that triggered it, for example: SolventError::CycleDetected(vec!["foo", "bar", "baz", "foo"]).
The text was updated successfully, but these errors were encountered:
I just pushed a commit that should do what you want. It passes internal tests, but I haven't used it myself (I haven't used solvent in years). Let me know if it works for you.
Right now the cycle detection isn't very helpful since it doesn't tell you where the actual problem is.
It would be nice if it included a vector of the cycle path that triggered it, for example:
SolventError::CycleDetected(vec!["foo", "bar", "baz", "foo"])
.The text was updated successfully, but these errors were encountered: