diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-02-22 16:30:02 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-02-22 16:30:02 +0100 |
commit | ff3f2448b18ce01a7af876816df8f03cf32f3145 (patch) | |
tree | 9b5aa68eb7e2cbaf66698d049fc8c7dd79c819d5 /backends/smt2 | |
parent | c4f383e45263add92d0032be11a1b7397e4fcc25 (diff) | |
download | yosys-ff3f2448b18ce01a7af876816df8f03cf32f3145.tar.gz yosys-ff3f2448b18ce01a7af876816df8f03cf32f3145.tar.bz2 yosys-ff3f2448b18ce01a7af876816df8f03cf32f3145.zip |
Minor "write_smt2" help msg change
Diffstat (limited to 'backends/smt2')
-rw-r--r-- | backends/smt2/smt2.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/smt2/smt2.cc b/backends/smt2/smt2.cc index 50cb74ad8..1525d32ff 100644 --- a/backends/smt2/smt2.cc +++ b/backends/smt2/smt2.cc @@ -622,7 +622,7 @@ struct Smt2Backend : public Backend { log("The following yosys script will create a 'test.smt2' file for our proof:\n"); log("\n"); log(" read_verilog test.v\n"); - log(" hierarchy; proc; techmap; opt -fast\n"); + log(" hierarchy -check; proc; opt; check -assert\n"); log(" write_smt2 -bv -tpl test.tpl test.smt2\n"); log("\n"); log("Running 'cvc4 test.smt2' will print 'unsat' because y can never transition\n"); |