-
stainless fails on:
```
import stainless.io.StdOut.println
abstract class A
case class B[X
-
This test case triggers what appears to be unbounded recursion in `inox.ast.Types$ADTType.hashCode`:
```scala
sealed abstract class Exp[A]
case class Var[A](a: A) extends Exp[A]
case class Lam[A](…
romac updated
5 years ago
-
This files (a minimized version of `GodelNumbering`) crashes on the assertion here: https://github.com/epfl-lara/stainless/blob/729aa8b1666f101f82d918f6caeccd18115ec7f8/core/src/main/scala/stainless/c…
-
As oddly specific as the title might sound the following crashes stainless
```scala
object Test {
def outer: Unit = {
def inner: (BigInt, BigInt) = {
val (_, _) = inner
(0, 0)
…
-
BẢNG GIÁ PHẾ LIỆU CÁC LOẠI
--
1 | Sắt thép | 7.000 | 21.500 | VNĐ / Kg
2 | Nhôm máy | 25.000 | 40.000 | VNĐ / Kg
3 | Nhôm đà | 33.000 | 61.000 | VNĐ / Kg
4 | Inox 304 | 23.000 | 64.000 | VNĐ …
-
The snack dispenser example, https://github.com/epfl-lara/bolts/blob/main/tutorials/dispenser/Dispenser.scala
fails with smt-cvc5 with error messages apparently during Inox's preparation of the SMT-L…
-
Would you mind to make a www-plugins/inox-binary-plugins package to install pepperflash and/or widevine into inox directories? For now, I have to copy the files from chrome-binary-plugins into inox di…
-
This causes stainless (inox) to crash due to unicode symbol in the string constant:
```scala
object Test {
val s: String = "⊥"
}
```
-
Just playing around with this idea for now:
```python
net = jx.Network(...)
net.make_trainable("radius")
# First, we can run `net.set()` between jx.integrate calls and it
# will not recompile…
-
Problem found by @karnaj.
Maybe a caching issue since it only appears without `--batched`?
```scala
import stainless.collection._
import stainless.lang._
sealed abstract class T
case class…