Zenna Tavares
Zenna Tavares
e.g. ``` Julia Xs = iid(Float64, i->uniform(i,0,1),0, 10) ```
Consider the model ``` julia A = geometric(0.3) B = A > 100 cond(A == 101, B,box_budget = 2E5,max_iters = 1E5) ``` evaluating `rand(cond(A,B))` seems to return `100`, `101`, and...
Trajectories often bounce through obstacles. The angle of reflection seems correct if the normal were inverted, so perhaps the problem is somewhere there. Example ``` julia obstacles = Array[[8.01 3.01;...
There should be a simple and as automated as possible means to lift a function to handle random variables (and abstract domains). There are a few cases to consider: ###...
I should be able to write normal(normal(0,1),normal(0,1)) Currently this is only possible with `flip`, e.g. flip(uniform(0.3,0.4)) The difficulty with other distributions is making it work with the quantile function.
Filter are now currently only functions. Supporting coroutines as filters would open up a wide range of possibilities
I want to be able to load up jobs to do, and potentially do them at some later date. Immediately running a job should be a special case. Changes to...
Currently lensnames effectively have global scope. This may (will) cause conflicts in that one may unintentionally register a filter to a lens from another library. One work around is for...