-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output for this circuit depends on order on NMOS side of NAND3. #7
Comments
Graph structure for the failed configuration: VDD |
The problem stemmed from the memoization technique used to avoid infinite recursion. When memoized nodes were encountered before being evaluated, they were processed as "false" (=inactive). Fixing this required implementing a sort of trigger interrupt to finish evaluation of all nodes waiting on certain nodes to be processed. |
The text was updated successfully, but these errors were encountered: