Hi,
I am trying following piece of code to ignore certain bins on some condition -
covergroup tr_cg;
option.per_instance = 1;
coverpoint cov_tr.event_id{
ignore_bins id1 = {[0:7]} iff (index == 1);
}
encgroup
This cover group is part of agent(agent has multiple instances) and wanted to ignore bins depending on my agent instance index. But seems bins are not ignored per condition.
Please let me know what I am missing here.
thanks !