-
I would be good to nail down some questions regarding the scope of this library. Specifically:
1. Should it support functions added to the JS Math object in ES6?
2. Should it support other useful …
-
Hi,
I am looking to pass a structured MILP problem to DSP via python ctypes. However, I don't fully understand the workflow that needs to be implemented. I tried to add a single block to the DspAp…
-
Here's the Stage 1 design I had in mind for the strategy in #72. I debated making a pull request describing it in more detail, but decided an issue would be better so that we're focusing on high-level…
-
-
# Bug Report
A pattern that I love in TypeScript is the idea of exhaustive pattern matching on a tagged union:
```typescript
type Expression =
| { tag: "constant", value: number }
| { tag…
-
It seems intentional that `R.equals(0, -0)` evaluates to `false`, given that it calls off to a function specifically designed to treat `0`, and `-0` as unequal:
```javascript
if (!(typeof a === ty…
-
At [sage-devel](http://groups.google.com/group/sage-devel/browse_thread/thread/d885434ba9c22d66), Jeroen reported a massive regression in elliptic curve computations. The regression was introduced i…
-
_This issue is part of the migration to v3. You can read full details about the various changes [here](https://github.com/exercism/v3-launch/)._
In Exercism v3, each track must specify exactly six …
-
F# is an excellent language for designing application domains and bounded contexts, using algebraic data types to model state with greater precision than traditional languages like C# (a.k.a "making i…
-
Right now the td api spec uses comments to mark which fields are nullable. This is undesirable for the following reasons
1. The comments should not effect the semantics of the language.
2. This is…