From d7763634b68a735443c61aa32918ee0cdd6e9250 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 21 Jul 2016 13:34:33 +0200 Subject: After reading the SV spec, using non-standard predict() instead of expect() --- examples/smtbmc/demo1.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/smtbmc') diff --git a/examples/smtbmc/demo1.v b/examples/smtbmc/demo1.v index 59e497825..2e628b7da 100644 --- a/examples/smtbmc/demo1.v +++ b/examples/smtbmc/demo1.v @@ -8,7 +8,7 @@ module demo1(input clk, input addtwo, output iseven); cnt = (iseven ? cnt == 10 : cnt == 11) ? 0 : next_cnt; assert property (cnt != 15); - // initial expect ((iseven && addtwo) || cnt == 9); + // initial predict ((iseven && addtwo) || cnt == 9); endmodule module inc(input addtwo, output iseven, input [3:0] a, output [3:0] y); -- cgit v1.2.3