Made examples/smtbmc/demo1.v more interesting

This commit is contained in:
Clifford Wolf 2016-09-02 13:54:24 +02:00
parent 948aac9e1e
commit 068d5bc02f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ module demo1(input clk, input addtwo, output iseven);
`ifdef FORMAL
assert property (cnt != 15);
initial assume (!cnt[3] && !cnt[0]);
initial assume (!cnt[2]);
`endif
endmodule