projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
948aac9
)
Made examples/smtbmc/demo1.v more interesting
author
Clifford Wolf
<clifford@clifford.at>
Fri, 2 Sep 2016 11:54:24 +0000
(13:54 +0200)
committer
Clifford Wolf
<clifford@clifford.at>
Fri, 2 Sep 2016 11:54:24 +0000
(13:54 +0200)
examples/smtbmc/demo1.v
patch
|
blob
|
history
diff --git
a/examples/smtbmc/demo1.v
b/examples/smtbmc/demo1.v
index d9be415138a2afa54145c653dd8a4bc544569895..567dde1483e9307cd188bbb31875c8045da9e294 100644
(file)
--- 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