I have this call on igraph object (gr_muc) that changes the weights of the vertices.
E(gr_muc)[edges_from]$weight <- E(gr_muc)[edges_from]$weight * 2
E(gr_muc)[edges_to]$weight <- E(gr_muc)[edges_to]$weight * 2
Is it possible to use furrr
or some other means to run those calls on multiple cores?
How would such call look like?
Thank you in advance!
BR.