-
The license contradicts the requirements 5 and 6 (see https://opensource.org/osd) to be used for open-source software. Hence the term "open source" should be removed from the license text.
pearu updated
2 years ago
-
Axiomatic formulae have been disabled in this iteration. Quoting the comment in the code:
> The distinction between whether a formula is axiomatic, external, etc. should probably be done elsewhere,…
-
For reduction instructions:
The standard activity for vl=0 is: no operation is performed and the destination register is not updated.
However
The vfirst instruction finds the lowest-numbered ac…
-
When given the following input:
```
(set-logic HORN)
(declare-datatypes () ((T (mk_T1 (s1 Int)) (mk_T2 (s2 Int)))))
(define-fun x () T (mk_T1 42))
(assert (= 42 (s1 x)))
(check-sat)
```
Z3…
-
In the field of [analytics and deep learning](https://docs.nvidia.com/deeplearning/performance/mixed-precision-training/index.html) there's quite a bit of interest in using half precision floating poi…
-
Hi,
I've just started experimenting with Soufflé and have been wondering how to express some relations in rules.
1) How do I specify a default value for a relation, e.g. if I have
```
.type bool…
-
Hello,
This is probably the wrong place but I don't know where to ask.
I try to find a paper or book about the complexity of MaxSMT without quantifiers. More specifically with linear real arithmetic…
-
For the following program for z3 version (7fe829847938627ad880d3781fc81ac8dfd96cb3):
```
Z 64
WWW(A:Z) input
mAqE(A:Z) input
p(A:Z)
y(A:Z)
out(A:Z) printtuples
WWW(18).
WWW(15).
WWW(25…
-
At the moment we allow this
```
E(x, y) :- B(x, z), C(z, y).
A(x, y) :- D(x, y), !E(x, y).
```
but not
```
A(x, y) :- D(x, y), !(B(x, z), C(z, y)).
Error: Ungrounded variable z
```
It coul…
mmcgr updated
4 years ago
-
Hello, is it possible to add a reaching definitions analysis to this framework to obtain a data dependence graph?
I am interested in obtaining a program dependence graph of a control flow graph, howe…