UVM OVM Connect Phase

Hi,

In OVM and UVM the connect phase executes buttom-up.

Is there any necessity that this phase is made to run buttom-up?

Thanks,
Sunil.

No, the connect phase is doing a simple recursive depth-first traversal of the component hierarchy. The only phase where you should really be concerned about the ordering is the build phase where you apply settings.

In reply to dave_59:

Thanks Dave.