-
Right now, if a method takes no arguments, it has no argument list at all. `()` is a syntax error in Wren. That works great for "getters", things that are conceptually properties on an object:
``` da…
-
The high-level interface would be the current Data.SBV API, unchanged.
The low-level interface would be available by e.g. `import Data.SBV.Dynamic`; it would provide an _unparameterized_ `SBV` type, …
-
I'm confused by the comment that multiAND and multiOR leak information when zbit = 1. It is my understanding that in zero-knowledge proofs, the constraint system is supposed to be known to both the p…
-
To what extent is it possible for automatic differentiation to tell us when the partial derivative of a function with respect to one of its inputs is everywhere zero?
The general approach works by ev…
-
Maybe this is a terrible idea; I'd appreciate feedback. I think I want instances of all the Functor-related classes for `Qu d l`. Some uses would be semantically strange but still useful; for instance…
-
```
*Main> AI.run (A.map (\xy -> A.lift $ divMod (A.fst xy) (A.snd xy)) (A.unit $ A.constant (10::Int, 3::Int)))
*** Exception: Prelude.Eq.== applied to EDSL types
*Main> AI.run (A.map (A.uncurry div)…
-
http://blog.felipe.lessa.nom.br/?p=68#comment-125
It's going to be hard to avoid clashing with `==`, but we could at least choose something different for `^.` and `?.`. Perhaps `!` and `?!`?
-
Hay que escribirle a ver si nos da permiso
fauno updated
10 years ago
-
We want to be able to say:
`sAssert (b /= 0) "Safety: division by 0" (a / b)`
and have SBV spit out a model right then and there during symbolic simulation if the condition is not necessarily true, …
-
Suppose I have some queries which aggregate
```
sumFoo :: SqlQuery (SqlExpr (Value (Maybe Int)))
sumFoo = from $ \foo -> do
return (sum_ (foo ^. FooFoo))
sumBar :: SqlQuery (SqlExpr (Value (Maybe …