mmurrian
mmurrian
Will do. I don't understand your build system well enough to know if there's a reason why you wouldn't want it fixed this way... but I'll let you answer that...
No, they don't. Their difference is logical short-circuiting. `||` has short-circuiting. `|` does not.
> If event handled was already true, short circuiting would cause this event handler instance to miss the opportunity to also be notified of the event (ie multiple subscribers to...
Hahaha. Yeah, right. This is a bug report. I'm not asking anything. I'm telling.
See pull request #2
``` // Construct random-number generator #1 EigenMultivariateNormal mvnrnd1(mean, covar); while(1) { // Construct another random-number generator EigenMultivariateNormal mvnrnd2(mean, covar); const auto sample1 = mvnrnd1.samples(1); const auto sample2 = mvnrnd2.samples(1); }...
I fixed the bug per pull request #2. Making the twister non-static is another solution. Given the purpose of your code, I think having a static twister is the better...