-
Hi there!
I was exploring whether it was possible to export some simple design from verilog [to some smtlib2 representation like with Yosys](https://yosyshq.readthedocs.io/projects/yosys/en/latest/…
-
It would be convenient for some use cases I have if boolector supported the `get-info` and `reset-assertions` commands from SMTLib2.6 (cf http://smtlib.cs.uiowa.edu/papers/smt-lib-reference-v2.6-r2017…
-
Stevia requires support for SMTLib2 parsing to make it work with SMTLib2 inputs.
## Implementation Status
- Raw Lexer: **done**
- Simple Lexer: **done**
- Parser: **in progress**
- SMTLib Sol…
-
I have a parameterized property that I want to prove for a bunch of different concrete parameters. For example:
```
prop : [32] -> [32] -> Bit
prop a b = ...
```
And I want to prove `prop` for …
-
## Issue description
Haskell package copilot-theorem fail to build. Latest version 2.2.1 of copilot-theorem depend on smtlib2 >=0.3 &&
-
The [Z3 docs describe support for floats](https://microsoft.github.io/z3guide/docs/theories/IEEE%20Floats/) that has been added over the past few years, and which may resolve outstanding issues - name…
-
The following in the README does not seem to exist anymore, should we delete it
https://github.com/ucsd-progsys/liquid-fixpoint#smtlib2-interface ?
@gridaphobe
-
Would it be easy to add support for the `:global-declarations` option and the `get-info` operation? They are convenient for certain kinds of interactive use cases. Cf http://smtlib.cs.uiowa.edu/papers…
-
Hi guys, PLE fails on this for some reason:
```haskell
{-@ LIQUID "--reflection" @-}
{-@ LIQUID "--ple-local" @-}
-- anyM is just Prelude's `any` but lifted to LH
{-@ reflect anyM @-}
an…
-
Not sure how important is this to you, however, this:
```haskell
proof1 :: Proof
proof1 = Just 1 === (Just $ 1)
***QED
```
and this:
```haskell
{-@ reflect foo @-}
{-@ foo :: Maybe…