mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 14:04:07 +00:00
append_assume: Make append_assume on
the default for now
Having `append_assume off` needs `vcd_sim on` to not be ignored with a warning and `vcd_sim off` is still the default.
This commit is contained in:
parent
37d1234e38
commit
c5dce57067
|
@ -192,7 +192,7 @@ options are:
|
|||
| | ``prove``, | the trace. Depending on the engine and options used |
|
||||
| | ``cover`` | this may be implicitly on or not supported (as |
|
||||
| | | indicated in SBY's log output). |
|
||||
| | | Values: ``on``, ``off``. Default: ``off`` |
|
||||
| | | Values: ``on``, ``off``. Default: ``on`` |
|
||||
+-------------------+------------+---------------------------------------------------------+
|
||||
|
||||
Engines section
|
||||
|
|
|
@ -1238,7 +1238,7 @@ class SbyTask(SbyConfig):
|
|||
|
||||
if self.opt_mode != "live":
|
||||
self.handle_int_option("append", 0)
|
||||
self.handle_bool_option("append_assume", False)
|
||||
self.handle_bool_option("append_assume", True)
|
||||
|
||||
self.handle_str_option("make_model", None)
|
||||
|
||||
|
|
Loading…
Reference in a new issue