yongqli
yongqli
The Corp is given the option of what card to trash, but the card isn't actually trashed from the Runner's grip.
I'm seeing this as well in a Win 7 virtual machine, except it sometimes crashes.
When a deck is loaded.
I have found a workaround: you can lock stdout before calling `printstd()` because the lock is reentrant in practice, although it is not documented. I created an extension method `printstdlocked(&self)`...
Yes, this would be useful for me as well. Also, a way to return NaN would be nice. Currently `A.constant 0 / A.constant 0` causes nvcc exception: `error: identifier "NaN"...
I have ran into this problem as well, is there a temporary workaround?
For now, we are using this function, adapted from David Darais in the above thread, as a replacement for `fold`: ``` fold2 :: forall sh a. (Elt a, Shape sh,...
Actually, what is wrong with the `generate` approach? If the number of columns is, say, only 5, we would want a single thread to compute it, correct? What is the...
Hmm, I'm using `build-cargo`. Adding a `.atom-build.json` file with just ``` { "cmd": "cargo build" } ``` doesn't work either -- I get `No eligible build target`.
So my directory structure is like this: ``` projects - project_1 - Cargo.toml - project_2 - Cargo.toml ``` It seems I can get the effect I want by putting in...