Jump to content

overlapped implication vs logical AND. |-> vs. &&


Recommended Posts

When used in a coverpoint, what is the difference between overlapped implication and logical AND?

 

|-> vs. &&

 


   cp_test : cover property ( @(posedge clk) disable iff (!resetn)

      A |-> B );

 


   cp_test : cover property ( @(posedge clk) disable iff (!resetn)

      A && B );

 



?

 

A colleague asked me.  It seems to me they are the same and the logical AND is more readable.

Link to comment
Share on other sites

Hi,

  firstly that isn't a coverpoint, it's a cover property :-)

 

The difference between A |-> B and A && B is that implication also evaluates to true if A is false, i.e.

A |-> B is the same as (not A or (A and ) 

The standard says that the cover property statement will also report the number of vacuous passes (i.e. the case where  you cover A |-> B and A is false).

 

I guess the other difference is that the implication operator applies to sequences (which doesn't really affect your example as A and B are just sequences of length 1 in a sense). Whereas && won't work on a sequence, you'd have to use "and" or "intersect".

 

So I guess in this case of just testing logical values that have a sequence length of 1, && is more readable.

 

regards

Alan

Link to comment
Share on other sites

It is bad coding style and discouraged to use implication in cover property for the vacuity reason that Tudor has explained. This question often comes up and we now have it as part of our SV Quiz @ http://www.verifjobs.com 

 

We discuss this in our SVA book in the coding guidelines chapter and we are adding it as a rule to our upcoming DVRules-SVA product too!

 

Regards

Srini

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...