Skip to content
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

Closed
gvegayon opened this issue Nov 6, 2024 · 4 comments · Fixed by #46
Closed

Refactor rdiffnet #45

gvegayon opened this issue Nov 6, 2024 · 4 comments · Fixed by #46

Comments

@gvegayon
Copy link
Member

gvegayon commented Nov 6, 2024

Example of flowchart using mermaid (You don't need to use this, draw.io also has this)

flowchart LR
  is_seedpnodes_list{Is seed p nodes list} -->|Yes| B
  is_seedpnodes_list -->|No| C
Loading

The ideal function should have:

  • Allow passing a list for some of the arguments, in which case it assumes a multi-behavior model.
  • Arguments are are not passed as list, should be recycled, e.g., if seed.p.nodes is a list but seed.nodes as a vector (indicating seed vertices), then the program should do something like seed.nodes <- list(seed.nodes, seed.nodes)

Need to think about the sim process.

For the preprocessing, you could have something like this:

rdiffnet_validate_args <- function(seed.p.nodes, seed.nodes, behavior) {
   ... do all the checks to validate length and stuff ...
   list(
     seed.p.nodes = ...,
     seed.nodes = ...,
     behavior = ...,
     num_of_behaviors = ...
   )
}

rdiffnet <- function( ... ) {
  
    validated_args <- rdiffnet_validate_args(seed.p.nodes, seed.nodes, behavior)

    ....

    # if you want to use seed.p.nodes
    validated_args$seed.p.nodes
}
@gvegayon
Copy link
Member Author

gvegayon commented Nov 11, 2024

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.

@aoliveram
Copy link
Collaborator

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.

@aoliveram
Copy link
Collaborator

Hi @gvegayon! LMK what do you think.

@gvegayon gvegayon linked a pull request Nov 19, 2024 that will close this issue
@gvegayon
Copy link
Member Author

Adding a reference to the equations: #46 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants