Alexey Radul
Alexey Radul
Ideally, should be possible to use the refactoring suite to check exact preservation of the numerics
This is useful when the thing one is doing is a pure refactoring that is not expected to affect the numerics at all. Status quo is that the suite checks...
This would be over and above the current `gfortran -Wall`.
For two reasons: - Completeness of the interface, as it it not currently possible to specify parameters for more than 10,000 layers via `parameters.in` without recompiling the MIM core. -...
Would it be possible to make `starcluster sshmaster ` accept all ssh options by just passing them through to the underlying ssh command? I regularly want to use ssh for...
and refer to it from the forthcoming (#948) explanation of functions.
This is a minimization of the problem @emilyfertig encountered in #1332. The chain of interactions is to make a table, make a struct containing that table, then access that field...
**Why** Notionally, an `Ix a` instance is supposed to define a bijection between `a` and the first `size a` natural numbers. In particular, on those natural numbers, `ordinal` and `unsafe_from_ordinal`...
``` def (>>>)(f:(a) -> b, g:(b) -> c) -> (a) -> c given (a, b, c) = \x. g(f(x)) ``` The parser still has a precedence for the `>>>` operator,...
With @dougalm. A use-case is when binding a large expression to a name, e.g. ``` x = case stuff of A -> ... B -> ... C -> ... ......