aboutsummaryrefslogtreecommitdiffstats
path: root/examples/smtbmc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/smtbmc')
-rw-r--r--examples/smtbmc/demo1.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/smtbmc/demo1.v b/examples/smtbmc/demo1.v
index d9be41513..567dde148 100644
--- a/examples/smtbmc/demo1.v
+++ b/examples/smtbmc/demo1.v
@@ -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