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
Interesting. Yeah agree that doesn't look right.
I suspect this was missed since in nearly all the cases I use this, I only ever run the elaborate() step once. What you are doing should be supported though! Something must be leaking between elaborations.
Take a look at this example:
test.rdl
In test code I first override parameter N with 2, then I override for another instance with 3.
I expect print to be:
N 2
N 3
What I get is:
N 2
N 5
If I remove default parameter value it works correctly and I get:
N 2
N 3
Seems like a bug?
The text was updated successfully, but these errors were encountered: