-
-
Currently there's a suboptimal interaction between const asserts and const generics.
A more general function that is valid for all N cannot call a function that asserts at compile time that N fulfi…
-
When running the [following example](https://gist.github.com/andreagilot-da/4a5a34604a6e2a9cf31520b384162ad8), stainless times out as expected on `foo` because I use `head` on an empty list. Stainless…
-
This program:
```hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE TypeApplications #-}
module Main where
import qualified Data.Parameterized.Context as Ctx
import qualified…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR49269](https://bugs.llvm.org/show_bug.cgi?id=49269) |
| Status | NEW |
| Importance | P enhancemen…
-
This works:
```julia
@satvariable(alpha, Real)
sat!(alpha ≤ 1)
```
but this does not:
```julia
@satvariable(α, Real)
sat!(α ≤ 1)
```
-
Hello,
It seems that `MDK/CAD/Assembly_Cube_Baseplate_1x1/` only contains the inventor project files that pertain to v0 of the baseplate, while the baseplate folder in `CAD/` contains v2 of the bas…
-
```
#!/usr/bin/python3
# Z3 4.13.0
from z3 import *
x,y,n = Ints('x y n')
s=Solver()
s.add(n==4)
s.add(x>0)
s.add(y>0)
s.add(x>y)
s.add((1/x) + (1/y) == (1/n))
print (s.check())
pr…
-
### Summary
RFC (original, superseded): [#1977](https://github.com/rust-lang/rfcs/pull/1977)
RFC: [#3516](https://github.com/rust-lang/rfcs/pull/3516)
Cargo tracking issue: https://github.com/rus…
-
I am very intrigued by this github project. I am working on related ideas involving assertion-checking and SQL code for my Master's thesis.
Have there been any published papers I could reference reg…