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
{{ message }}
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
fix(core): improve dead-loop avoidance in OptimizeInputs (v2) (#206)
Currently, OptimizeInputsTask avoids a dead-loop with a sequential
traversal of a potentially long list of tasks, with a dynamic cast for
each of them (see #29). This alternative uses a hashset of previously
visited expressions for the same purpose, similarly to explored_group.
This is the second attempt, after #196.
0 commit comments