-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor rdiffnet #45
Comments
Here is an idea as a generalization. n <- 20
thr <- .3
thr <- rep(.3, n)
thr <- function(x) runif(n)
thr_final <- if (length(thr) == 1) function() rep(thr, n)
else if (length(thr) == n) function() thr
else if (is.function(thr)) function() thr()
# IN the simulation, replace
# thr < exposure
# with
# thr() < exposure
# So, this handles all the cases. |
I wondered if the function MUST return another function or if it's enough to always to return a 'matrix' 'array' object. This is more straightforward as we can keep many of the tests already written. I have implemented the function that always returns 'matrix' 'array' objects. I could change it, but I wonder if it's strongly recommended. |
Hi @gvegayon! LMK what do you think. |
Adding a reference to the equations: #46 (comment) |
Example of flowchart using mermaid (You don't need to use this, draw.io also has this)
The ideal function should have:
seed.p.nodes
is a list butseed.nodes
as a vector (indicating seed vertices), then the program should do something likeseed.nodes <- list(seed.nodes, seed.nodes)
Need to think about the sim process.
For the preprocessing, you could have something like this:
The text was updated successfully, but these errors were encountered: