-
## Reason
As first outlined in #19366, on-the-fly variable evaluation *currently* relies on querying the solution vector. If we have a chain of aux kernels we have to make sure that the first aux end…
-
Hello!
I'm working on a Ppxlib deriving extension which transforms types into functions (specifically deriving serialization decoders).
I would like to somehow make all of the generated functi…
-
For example the following:
```
$ cat two_blocks.mod
NEURON {
SUFFIX two_blocks
RANGE A, B, X, Y
NONSPECIFIC_CURRENT il
}
STATE {
X
Y
A
B
}
ASSIGNED {
…
-
-
At the moment the interpreter doesn't allow users doing any operation over values inside AIR scripts. It's a really huge limitation that is partially solvable now with peer builtins, but it is not an …
-
# [definition from fantasy-land](https://github.com/fantasyland/fantasy-land#functor)
1. `u.map(a => a`) is equivalent to `u` (identity)
2. `u.map(x => f(g(x)))` is equivalent to `u.map(g).map(f)`…
-
Consider the following example (the use of submodules is not important, it is just easier to work with a single file):
```crytpol
submodule F where
parameter type n: #
f: [n] -> [n]
f x = x…
-
Haskell's `Functor` class implements the functor laws.
```haskell
fmap id = id -- identity
fmap (f . g) = fmap f . fmap g -- composition
```
These laws ensure that the conta…
-
I have the following predicate which asserts that the number of elements in some `Foldable f => f a` can be safely represented by the given type:
```haskell
data CountPrefix pfx
type CountPrefixe…
-
I am trying to make the RHS of an ODEProblem Enzyme compatible. My function has the signature `(du, u, p, t)` and I try to differentiate `du` for `u` for constant `p` and `t`. I hit the error
```
ERRO…