Sequence library selection mode UVM_SEQ_LIB_USER

In reply to Dhaval P:

You can set the selection mode at the beginnining of the run_phase like this:

task run_phase(uvm_phase phase);
  my_seq_lib lib = my_seq_lib::type_id::create("lib");
  lib.selection_mode = UVM_SEQ_LIB_RAND;

  // .......
endtask