Shad Amethyst
Shad Amethyst
I still find the build step quite slow, and I'm wondering what's stopping you from baking these numbers once for everyone upon a release?
I would like to drop here my remarks around having `WRITE_SIZE`, `ERASE_SIZE` and `READ_SIZE` as `const` fields on the trait: - They cannot be freely used inside of generic function;...
This is thankfully quite easy to fix (we already have a scratch buffer at our disposal), I'll happily submit a PR for it
| Chip | Type | memory.x | DS Tab.2 | Note | | :---------: | :----: | :------: | :-------: | :----------------: | | STM32L4A6ZG | RAM | 320K |...
Alternatively: 1. Iterate through the array to verify that it is in order. If is is, exit the loop 2. Pick two random indices `i,j ∈ [0; n[; i <...
I'm experiencing the same issue, and dropping namespaces in attributes is a bit of a deal-breaker. Is there an ETA on when the PR will be merged or a known...
[Playground](https://playground.ponylang.io/?gist=653bbdf36908132eb589e0bd8f663610) of the above-posted example
Similar to #2083 (+bump). I'll try to address it during the next two days.
Here's a minimal reproduction: ```prolog :- use_module(library(tabling)). :- use_module(library(lists)). :- table blink_tabled/3. blink_tabled(0, _, 1). blink_tabled(N, X, Xs) :- N > 0, N1 is N - 1, blink_tabled(N1, X, Xs)....
You're right, I think one could also remove an argument or two to `blink_tabled` and still trigger the bug. I've been investigating more, and I keep circling back on `AttrVarInitializer::attr_var_queue`:...