`uvm_do_with(m_top_seq, {m_sub_seq.num_of_trans == 0;})
The above example results in a runtime null object failure for m_sub_seq
Is there a way to overcome this without copying all m_sub_seq random variables to m_top_seq ?
`uvm_do_with(m_top_seq, {m_sub_seq.num_of_trans == 0;})
The above example results in a runtime null object failure for m_sub_seq
Is there a way to overcome this without copying all m_sub_seq random variables to m_top_seq ?