| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
| |
The output width for the boolean value should not influence the
operation width. The previous incorrect width extension would still
produce correct results, but could produce invalid smt2 output for
reduction operators when the output width was larger than the width of
the vector to which the reduction was applied.
This fixes #3654
|
| |
|
|
|
|
|
|
| |
* Fixed $cover handling
* Improved sparse memory handling when writing traces
* JSON summary output
|
| |
|
|
|
|
| |
Without x-bits they are equivalent
|
| |
|
| |
|
|
|
|
|
|
| |
This is not valid when the prefix of a trace already violates
assertions. This can happen when the trace generating solver doesn't
look for a minimal length counterexample.
|
|
|
| |
I have added an optional flag to smtbmc that causes failed temporal induction counterexample traces to be checked for duplicate states and reported to the user, since loops in the counterexample mean that increasing the induction depth won't help prove a design's safety properties.
|
|
|
|
|
| |
The "uninitialized" value is a _list_ of chunks that are part of the
initial state for the witness trace.
|
|
|
|
|
|
|
| |
The witness metadata was missing fine grained FFs completely and for
coarse grained FFs where the output connection has multiple chunks it
lacked the offset of the chunk within the SMT expression. This fixes
both, the later by adding an "smtoffset" field to the metadata.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This verifies that the given constraints force an assertion failure.
This is useful to debug witness trace conversion (and minimization).
|
|
|
|
|
| |
Adds a new json based aiger map file and yosys-witness converters to us
this to convert between native and AIGER witness files.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This adds a native json based witness trace format. By having a common
format that includes everything we support, and providing a conversion
utility (yosys-witness) we no longer need to implement every format for
every tool that deals with witness traces, avoiding a quadratic
opportunity to introduce subtle bugs.
Included:
* smt2: New yosys-smt2-witness info lines containing full hierarchical
paths without lossy escaping.
* yosys-smtbmc --dump-yw trace.yw: Dump results in the new format.
* yosys-smtbmc --yw trace.yw: Read new format as constraints.
* yosys-witness: New tool to convert witness formats.
Currently this can only display traces in a human-readable-only
format and do a passthrough read/write of the new format.
* ywio.py: Small python lib for reading and writing the new format.
Used by yosys-smtbmc and yosys-witness to avoid duplication.
|
| |
|
|
|
|
|
|
| |
This attribute can be used by formal backends to indicate which clocks
were mapped to the global clock. Update the btor and smt2 backend which
already handle clock inputs to understand this attribute.
|
| |
|
|
|
|
| |
Fixes #3431, fixes #3344
|
|
|
|
|
|
|
|
| |
This approach had major issues with ROMs whose initialization was not
fully defined. If required, memory_map -rom-only -keepdc should be
called early in a formal flow instead. (This does require a careful
choice of optimization passes though. Sby's scripts will be updated
accordingly.)
|
|
|
|
| |
Use it when invoking memory_map -rom-only from write_{smt2,btor}.
|
|
|
|
|
|
| |
This avoids provability regressions now that we infer more ROMs.
This fixes #3378
|
| |
|
|\
| |
| | |
smtbmc: recognize cvc5 and fix unrolling for cvc4/cvc5
|
| | |
|
| | |
|
|\ \
| | |
| | | |
add smtlib2_comb_expr
|
| |/ |
|
|/ |
|
|
|
|
| |
Fixes: #3330
|
| |
|
|
|
|
| |
this was broken by the `--keep-going` changes
|
|\
| |
| | |
smtbmc: Avoid unnecessary deep copies during unrolling
|
| | |
|
|\ \
| |/
|/| |
smtbmc `--keep-going`
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
add argument for printing cell names in yosys-smtbmc
|
| | |
|
|/
|
|
|
|
| |
smtbmc.py
Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
|
| |
|
| |
|
|
|
|
| |
Fixes #2999.
|
| |
|
|
|
|
|
|
|
|
| |
s/((Claire|Xen|Xenia|Clifford)\s+)+(Wolf|Xen)\s+<(claire|clifford)@(symbioticeda.com|clifford.at|yosyshq.com)>/Claire Xenia Wolf <claire@yosyshq.com>/gi;
s/((Nina|Nak|N\.)\s+)+Engelhardt\s+<nak@(symbioticeda.com|yosyshq.com)>/N. Engelhardt <nak@yosyshq.com>/gi;
s/((David)\s+)+Shah\s+<(dave|david)@(symbioticeda.com|yosyshq.com|ds0.me)>/David Shah <dave@ds0.me>/gi;
s/((Miodrag)\s+)+Milanovic\s+<(miodrag|micko)@(symbioticeda.com|yosyshq.com)>/Miodrag Milanovic <micko@yosyshq.com>/gi;
s,https?://www.clifford.at/yosys/,http://yosyshq.net/yosys/,g;
|
|
|
|
|
|
| |
This essentially adds wide port support for free in passes that don't
have a usefully better way of handling wide ports than just breaking
them up to narrow ports, avoiding "please run memory_narrow" annoyance.
|