A typed-specific sequencer pointer p_sequencer tracking issue

In reply to cgales:

In reply to UVM_LOVE:
You should never use p_sequencer. It adds unnecessary complexity to your environment and significantly limits reuse.
You can reference m_sequencer if you need to use the config_db(), which is typically the only thing you need from a sequencer.
If you need to reference other sequencer handles in a virtual sequence, maintain sequencer handles in the virtual sequence itself.

Thanks for letting me know that. I will do that. this question for understading about them.

I’m starting at non-scratch enviroment. someone has implemented with bunch of p_sequence so I need to understand how does it work in the system.