R/mcmc_d_1_w_1.R

#' @title
#'    MCMC algorithm for Dynamic Multilayer directed weighted graphs
#'
#' @description
#'    \code{mcmc_d_1_w_1} Implements a Gibbs sampler MCMC algorithm for Dynamic Multilayer directed weighted graphs.
#'
#' @param y_ijtk Array. Network data, with entry \code{y_ijtk[i,j,t,k]} representing the link from node i to node j at time t in layer k. 0 indicates no link.
#' @param node_all Character vector. Id's of nodes in the network.
#' @param time_all Numeric vector. Timestamps of all relevant epochs for the MCMC, those observed and those for forecast
#' @param layer_all Character vector. Id's of layers in the network.
#' @param x_ijtkp Array. Edge Specific external covariates.
#' @param H_dim Integer. Latent space dimension.
#' @param R_dim Integer. Latent space dimension, for layer specific latent vectors.
#' @param add_eff_link Boolean. Indicates if dynamic additive effects by node should be considered for links.
#' @param add_eff_weight Boolean. Indicates if dynamic additive effects by node should be considered for edge weights.
#' @param class_dyn String. Specifies prior for latent elements. "GP" for Gaussian Processes,"nGP" for nested Gaussian Processes.
#' @param delta Positive scalar. Hyperparameter controlling for the smoothness in the dynamic of latent coordinates. Larger=smoother.
#' @param shrink_lat_space Boolean. Indicates if the space should be shrinked probabilistically.
#' @param a_1 Positive scalar. Hyperparameter controlling for number of effective dimensions in the latent space.
#' @param a_2 Positive scalar. Hyperparameter controlling for number of effective dimensions in the latent space.
#' @param n_chains_mcmc Integer. Number of parallel MCMC chains.
#' @param n_iter_mcmc Integer. Number of iterations for the MCMC.
#' @param n_burn Integer. Number of iterations discarded as part of the MCMC warming up period at the beginning of the chain.
#' @param n_thin Integer. Number of iterations discarded for thining the chain (reducing the autocorrelation). We keep 1 of every n_thin iterations.
#' @param slim_mcmc_out Boolean. Indicates if only the main components of the MCMC will be returned (TRUE by default)
#' @param rds_file String. Indicates a file (.rds) where the output will be saved.
#' @param log_file String. Indicates a file (.txt) where the log of the process will be saved.
#' @param quiet_mcmc Boolean. Indicates if silent mode is preferes, if \code{FALSE} progress update is displayed.
#' @param parallel_mcmc Boolean. Indicates if the mcmc should be processed in parallel.
#' 
#' @import BayesLogit
#' @importFrom MCMCpack procrustes
#' 
#' @keywords internal
#' 


mcmc_d_1_w_1 <- function( y_ijtk,
                          node_all, time_all, layer_all,
                          
                          x_ijtkp=NULL,
                          
                          H_dim=10, R_dim=10,
                          
                          add_eff_weight=FALSE,
                          add_eff_link=FALSE,
                          
                          class_dyn=c("GP","nGP")[1],
                          delta=36,
                          lat_mean=TRUE,
                          sigma_lat_mean=5,
                          
                          n_chains_mcmc=1,
                          n_iter_mcmc=10000, n_burn=floor(n_iter_mcmc/4), n_thin=3,
                          
                          slim_mcmc_out=TRUE,
                          
                          rds_file=NULL, log_file=NULL,
                          quiet_mcmc=FALSE,
                          parallel_mcmc=FALSE ) {
  
  shrink_lat_space=FALSE
  a_1=2; a_2=2.5
  
  # This software deal with continuos (weighted) edges
  # y_ijtk[y_ijtk<0] <- 0 # Shall we restrict to being positive?
  
  V_net <- length(node_all)
  T_net <- length(time_all)
  K_net <- length(layer_all)
  
  # assume no self-edges
  diag_y_idx <- matrix(FALSE,V_net,V_net); diag(diag_y_idx)<-TRUE
  diag_y_idx <- array(diag_y_idx,dim=dim(y_ijtk))
  y_ijtk[diag_y_idx] <- NA
  
  ### iterations that will be reported ###
  # after burn-in period and thinning
  iter_out_mcmc <- seq(from=n_burn+1,to=n_iter_mcmc,by=n_thin)
  n_iter_mcmc_out <- length(iter_out_mcmc)
  
  
  
  #### Start: MCMC initialization ####
  
  # Coefficients for external covariates #
  beta_mu_tp <- beta_lambda_tp <- NULL
  beta_mu_tp_mcmc <- beta_lambda_tp_mcmc <- NULL
  if(!is.null(x_ijtkp)) {
    P_pred <- dim(x_ijtkp)[5]
    beta_mu_tp <- beta_lambda_tp <- matrix( runif(T_net*P_pred), nrow=T_net, ncol=P_pred )
    beta_mu_tp_mcmc <- beta_lambda_tp_mcmc <- array( NA, dim=c(T_net,P_pred,n_iter_mcmc_out) )
    x_ijtkp_mat <- get_x_ijtkp_mat( x_ijtkp=x_ijtkp,
                                    directed=TRUE,
                                    weighted=TRUE )
  }
  
  ### GAUSSIAN MODEL FOR WEIGHTS ###
  
  # y_ijtk ~ norm( mu_ijtk[t,k] , sigma_k[k]^2  )
  # mu_ijtk[t,k] = theta_tk[t,k] + t(u_ith[i,t,]) * v_ith[j,t,] + t(u_ithk[i,t,,k]) * v_ithk[j,t,,k]
  # u_ith[i,,h] ~ Norm( 0 , C(t,t) )
  # theta_tk[,k] ~ Norm( 0 , C(t,t) )
  
  
  # Baseline parameter for weights #
  # at time t for layer k
  theta_tk <- matrix( data=runif(T_net*K_net),
                      nrow=T_net,
                      ncol=K_net )
  theta_tk_mcmc <- NULL
  if(!slim_mcmc_out){
    theta_tk_mcmc <- array( NA, dim=c(T_net,K_net,n_iter_mcmc_out) )
  }
  # mean baseline #
  theta_tk_bar <- theta_tk[1,]; theta_tk_bar[] <- 0
  theta_tk_bar_mcmc <- NULL
  if(lat_mean & !slim_mcmc_out ){
    theta_tk_bar_mcmc <- matrix( NA, K_net, n_iter_mcmc_out )
  }
  
  # Latent coordinates #
  # shared: hth coordinate of actor v at time t shared across the different layers
  # One latent space for each direction #
  uv_ith_shared <- list( send=array( data=runif(V_net*T_net*H_dim,-1,1),
                                     dim=c(V_net,T_net,H_dim) ),
                         receive=array( data=runif(V_net*T_net*H_dim,-1,1),
                                        dim=c(V_net,T_net,H_dim) ) )
  uv_ith_shared_mcmc <- NULL
  if(!slim_mcmc_out){
  uv_ith_shared_mcmc <- list( send=array(NA,c(V_net,T_net,H_dim,n_iter_mcmc_out)),
                              receive=array(NA,c(V_net,T_net,H_dim,n_iter_mcmc_out)) )
  }
  uv_ith_shared_bar <- list( send=matrix(0,V_net,H_dim),
                             receive=matrix(0,V_net,H_dim) )
  uv_ith_shared_bar_mcmc <- NULL
  if( lat_mean & !slim_mcmc_out ){
    uv_ith_shared_bar_mcmc <- list( send=array(NA,c(V_net,H_dim,n_iter_mcmc_out)),
                                    receive=array(NA,c(V_net,H_dim,n_iter_mcmc_out)) )
  }
  
  # by layer: hth coordinate of actor v at time t specific to layer k
  uv_ithk <- NULL
  uv_ithk_mcmc <- NULL
  uv_ithk_bar <- NULL
  uv_ithk_bar_mcmc <- NULL
  if( K_net>1 ){
    # One latent space for each direction #
    uv_ithk <- list( send=array( data=runif(V_net*T_net*R_dim*K_net),
                                 dim=c(V_net,T_net,R_dim,K_net) ),
                     receive=array( data=runif(V_net*T_net*R_dim*K_net),
                                    dim=c(V_net,T_net,R_dim,K_net) ) )
    if(!slim_mcmc_out){
    uv_ithk_mcmc <- list( send=array(NA,c(V_net,T_net,R_dim,K_net,n_iter_mcmc_out)),
                          receive=array(NA,c(V_net,T_net,R_dim,K_net,n_iter_mcmc_out)) )
    }
    uv_ithk_bar <- list( send=array( data=0,
                                 dim=c(V_net,R_dim,K_net) ),
                     receive=array( data=0,
                                    dim=c(V_net,R_dim,K_net) ) )
    if(lat_mean&!slim_mcmc_out){
      uv_ithk_bar_mcmc <- list( send=array(NA,c(V_net,R_dim,K_net,n_iter_mcmc_out)),
                                receive=array(NA,c(V_net,R_dim,K_net,n_iter_mcmc_out)) )
    }
  }
  
  # Weight variance for layer k
  sigma_k <- apply( y_ijtk, MARGIN=4, FUN=sd, na.rm=T)
  sigma_k_prop_int <- rep(1.25,K_net) # length of proposal distribution to sample sigma_k
  
  sigma_k_mcmc <- matrix( NA, nrow=K_net, ncol=n_iter_mcmc_out )
  
  # Covariance matrix prior for latent coordinates
  cov_gp_prior <- outer( time_all, time_all, FUN=function(x,y,k=delta){ exp(-((x-y)/delta)^2) } )
  diag(cov_gp_prior) <- diag(cov_gp_prior) + 1e-3 # numerical stability
  # cov_gp_prior_inv <- solve(cov_gp_prior)
  cov_gp_prior_inv <- chol2inv(chol(cov_gp_prior))
  
  ### Dynamic additive effects for each node ###
  sp_weight_it_shared <- array(0,dim=c(V_net,T_net,2))
  sp_weight_it_shared_mcmc <- NULL
  sp_weight_it_shared_bar <- matrix(0,V_net,2)
  sp_weight_it_shared_bar_mcmc <- NULL
  
  sp_weight_itk <- NULL
  sp_weight_itk_mcmc <- NULL
  sp_weight_itk_bar <- NULL
  sp_weight_itk_bar_mcmc <- NULL
  
  if(add_eff_weight){
    if(!slim_mcmc_out){
      sp_weight_it_shared_mcmc <- array(NA,dim=c(V_net,T_net,2,n_iter_mcmc_out))
      dimnames(sp_weight_it_shared_mcmc) = list( node_all,
                                                 time_all,
                                                 c("send","receive"),
                                                 NULL )
      if(lat_mean){
        sp_weight_it_shared_bar_mcmc <- array(NA,dim=c(V_net,2,n_iter_mcmc_out))
        dimnames(sp_weight_it_shared_bar_mcmc) = list( node_all,
                                                       c("send","receive"),
                                                       NULL )
      }
    }
    
    if(F&K_net>1){ # we will only consider global additive effects
      sp_weight_itk <- array(0,dim=c(V_net,T_net,K_net,2))
      if(!slim_mcmc_out){
        sp_weight_itk_mcmc <- array(NA,dim=c(V_net,T_net,K_net,2,n_iter_mcmc_out))
        
        sp_weight_itk_bar <- array(0,dim=c(V_net,K_net,2))
        if(lat_mean){
          sp_weight_itk_bar_mcmc <- array(NA,dim=c(V_net,K_net,2,n_iter_mcmc_out))
        }
      }
    }
  }
  
  # Mean of the weight between actors i and j at time t in layer k
  mu_ijtk <- get_linpred_ijtk( baseline_tk=theta_tk,
                               add_eff_it_shared=sp_weight_it_shared,
                               add_eff_itk=sp_weight_itk,
                               coord_ith_shared=uv_ith_shared,
                               coord_ithk=uv_ithk,
                               beta_edge_tp=beta_mu_tp, x_ijtkp=x_ijtkp,
                               directed=TRUE )
  mu_ijtk[diag_y_idx] <- NA
  dimnames(mu_ijtk) <- dimnames(y_ijtk)
  
  mu_ijtk_mcmc <- array(NA, dim=c(V_net,V_net,T_net,K_net,n_iter_mcmc_out))
  dimnames(mu_ijtk_mcmc) <- dimnames(y_ijtk)
  
  
  ### LOGISTIC MODEL FOR LINKS ###
  
  # Augmented Polya-gamma data
  w_ijtk <- y_ijtk
  w_ijtk[!is.na(w_ijtk)] <- 0
  
  # Baseline parameter for link #
  # at time t for layer k
  eta_tk <- matrix( data=runif(T_net*K_net),
                    nrow=T_net,
                    ncol=K_net )
  eta_tk_mcmc <- NULL
  if(!slim_mcmc_out){
    eta_tk_mcmc <- array( NA, dim=c(T_net,K_net,n_iter_mcmc_out) )
  }
  # mean baseline #
  eta_tk_bar <- eta_tk[1,]; eta_tk_bar[] <- 0
  eta_tk_bar_mcmc <- NULL
  if(lat_mean&!slim_mcmc_out){
    eta_tk_bar_mcmc <- matrix( NA, K_net, n_iter_mcmc_out )
  }
  
  # Latent coordinates #
  # shared: hth coordinate of actor v at time t shared across the different layers
  # One latent space for each direction #
  ab_ith_shared <- list( send=array( data=runif(V_net*T_net*H_dim,-1,1),
                                     dim=c(V_net,T_net,H_dim) ),
                         receive=array( data=runif(V_net*T_net*H_dim,-1,1),
                                        dim=c(V_net,T_net,H_dim) ) )
  ab_ith_shared_mcmc <- NULL
  if(!slim_mcmc_out){
    ab_ith_shared_mcmc <- list( send=array(NA,c(V_net,T_net,H_dim,n_iter_mcmc_out)),
                                receive=array(NA,c(V_net,T_net,H_dim,n_iter_mcmc_out)) )
  }
  ab_ith_shared_bar <- list( send=matrix(0,V_net,H_dim),
                             receive=matrix(0,V_net,H_dim) )
  ab_ith_shared_bar_mcmc <- NULL
  if( lat_mean & !slim_mcmc_out ){
    ab_ith_shared_bar_mcmc <- list( send=array(NA,c(V_net,H_dim,n_iter_mcmc_out)),
                                    receive=array(NA,c(V_net,H_dim,n_iter_mcmc_out)) )
  }
  
  # by layer: hth coordinate of actor v at time t specific to layer k
  ab_ithk <- NULL
  ab_ithk_mcmc <- NULL
  ab_ithk_bar <- NULL
  ab_ithk_bar_mcmc <- NULL
  if( K_net>1 ){
    # One latent space for each direction #
    ab_ithk <- list( send=array( data=runif(V_net*T_net*R_dim*K_net),
                                 dim=c(V_net,T_net,R_dim,K_net) ),
                     receive=array( data=runif(V_net*T_net*R_dim*K_net),
                                    dim=c(V_net,T_net,R_dim,K_net) ) )
    if(!slim_mcmc_out){
    ab_ithk_mcmc <- list( send=array(NA,c(V_net,T_net,R_dim,K_net,n_iter_mcmc_out)),
                          receive=array(NA,c(V_net,T_net,R_dim,K_net,n_iter_mcmc_out)) )
    }
    ab_ithk_bar <- list( send=array( data=0,
                                     dim=c(V_net,R_dim,K_net) ),
                         receive=array( data=0,
                                        dim=c(V_net,R_dim,K_net) ) )
    if(lat_mean&!slim_mcmc_out){
      ab_ithk_bar_mcmc <- list( send=array(NA,c(V_net,R_dim,K_net,n_iter_mcmc_out)),
                                receive=array(NA,c(V_net,R_dim,K_net,n_iter_mcmc_out)) )
    }
  }
  
  ### Dynamic additive effects for each node ###
  sp_link_it_shared <- array(0,dim=c(V_net,T_net,2))
  sp_link_it_shared_mcmc <- NULL
  sp_link_it_shared_bar <- matrix(0,V_net,2)
  sp_link_it_shared_bar_mcmc <- NULL
  
  sp_link_itk <- NULL
  sp_link_itk_mcmc <- NULL
  sp_link_itk_bar <- NULL
  sp_link_itk_bar_mcmc <- NULL
  
  if(add_eff_link){
    if(!slim_mcmc_out){
      sp_link_it_shared_mcmc <- array(NA,dim=c(V_net,T_net,2,n_iter_mcmc_out))
      dimnames(sp_link_it_shared_mcmc) = list( node_all,
                                               time_all,
                                               c("send","receive"),
                                               NULL )
      if(lat_mean){
        sp_link_it_shared_bar_mcmc <- array(NA,dim=c(V_net,2,n_iter_mcmc_out))
        dimnames(sp_link_it_shared_bar_mcmc) = list( node_all,
                                                     c("send","receive"),
                                                     NULL )
      }
    }
    if(F&K_net>1){ # we will only consider global additive effects
      sp_link_itk <- array(0,dim=c(V_net,T_net,K_net,2))
      if(!slim_mcmc_out){
      sp_link_itk_mcmc <- array(NA,dim=c(V_net,T_net,K_net,2,n_iter_mcmc_out))
      }
      sp_link_itk_bar <- array(0,dim=c(V_net,K_net,2))
      if(lat_mean&!slim_mcmc_out){
        sp_link_itk_bar_mcmc <- array(NA,dim=c(V_net,K_net,2,n_iter_mcmc_out))
      }
      
    }
  }
  
  # Linear predictor for the probability of an edge between actors i and j at time t in layer k
  gamma_ijtk <- get_linpred_ijtk( baseline_tk=eta_tk,
                                  add_eff_it_shared=sp_link_it_shared,
                                  add_eff_itk=sp_link_itk,
                                  coord_ith_shared=ab_ith_shared,
                                  coord_ithk=ab_ithk,
                                  beta_edge_tp=beta_lambda_tp, x_ijtkp=x_ijtkp,
                                  directed=TRUE )
  gamma_ijtk[diag_y_idx] <- NA
  dimnames(gamma_ijtk) <- dimnames(y_ijtk)
  
  # Probability of an edge between actors i and j at time t in layer k
  pi_ijtk_mcmc <- array(NA, dim=c(V_net,V_net,T_net,K_net,n_iter_mcmc_out))
  dimnames(pi_ijtk_mcmc) <- dimnames(y_ijtk)
  
  ## Shrinkage Parameters ##
  
  # shared #
  v_shrink_shared <- matrix(1, nrow=H_dim, ncol=1 )
  if(shrink_lat_space){
    v_shrink_shared[1,1] <- rgamma(n=1,shape=a_1,rate=1); v_shrink_shared[-1,1] <- rgamma(n=H_dim-1,shape=a_2,rate=1)
  }
  tau_h_shared <- matrix(cumprod(v_shrink_shared), nrow=H_dim, ncol=1 )
  if(shrink_lat_space){
    tau_h_shared_mcmc <- matrix(NA, nrow=H_dim, ncol=n_iter_mcmc_out )
  } else {
    tau_h_shared_mcmc <- NULL
  }
  # duplicate, one latent space for each direction #
  v_shrink_shared <- list( send=v_shrink_shared,
                           receive=v_shrink_shared )
  tau_h_shared <- list( send=tau_h_shared,
                        receive=tau_h_shared )
  tau_h_shared_mcmc <- list( send=tau_h_shared_mcmc,
                             receive=tau_h_shared_mcmc )
  
  # Creates one for the weights and one for the link
  v_shrink_shared_weight <- v_shrink_shared_link <- v_shrink_shared
  rm(v_shrink_shared)
  tau_h_shared_weight <- tau_h_shared
  rho_h_shared_mcmc <- tau_h_shared_mcmc
  
  # layer-specific #
  if( K_net>1 ){
    v_shrink_k <- matrix(1, nrow=R_dim, ncol=K_net )
    if(shrink_lat_space){
      v_shrink_k[1,] <- rgamma(n=K_net,shape=a_1,rate=1); v_shrink_k[-1,] <- rgamma(n=K_net*(R_dim-1),shape=a_2,rate=1)
    }
    tau_h_k <- matrix(apply(v_shrink_k,2,cumprod), nrow=R_dim, ncol=K_net )
    if(shrink_lat_space){
      tau_h_k_mcmc <- array( NA, dim=c(R_dim,K_net,n_iter_mcmc_out) )
    } else {
      tau_h_k_mcmc <- NULL
    }
    
    # duplicate, one latent space for each direction #
    v_shrink_k <- list( send=v_shrink_k,
                        receive=v_shrink_k )
    tau_h_k <- list( send=tau_h_k,
                     receive=tau_h_k )
    tau_h_k_mcmc <- list( send=tau_h_k_mcmc,
                          receive=tau_h_k_mcmc )
  } else {
    v_shrink_k <- NULL
    tau_h_k <- NULL
    tau_h_k_mcmc <- NULL
  }
  
  # Creates one for the weights and one for the link
  v_shrink_k_weight <- v_shrink_k_link <- v_shrink_k
  rm(v_shrink_k)
  rho_h_k <- tau_h_k
  rho_h_k_mcmc <- tau_h_k_mcmc
  
  
  ### Missing links ###
  y_ijtk_miss <- FALSE
  y_ijtk_miss_idx <- NULL
  y_ijtk_imp_mcmc <- NULL
  
  if( any(is.na(y_ijtk)) ) {
    y_ijtk_miss <- TRUE
    
    # identifies missing data indices
    y_ijtk_miss_idx <- which( is.na(y_ijtk), arr.ind=TRUE )
    colnames(y_ijtk_miss_idx) <- c("i","j","t","k")
    
    # Only consider missing data outside the diagonal
    y_ijtk_miss_idx <- y_ijtk_miss_idx[y_ijtk_miss_idx[,1]!=y_ijtk_miss_idx[,2],]
    
    # MCMC chain for missing values #
    y_ijtk_imp_mcmc <- NULL
    if(F & !slim_mcmc_out){
      # CAUTION: may take too much disk space
      y_ijtk_imp_mcmc <- matrix( NA, nrow = n_iter_mcmc_out, ncol=nrow(y_ijtk_miss_idx) )
    }
  }
  
  # Counts the number of accepted values of sigma, to adapt the proposal distribution in the MH
  n_prop_sigma = 0
  n_accept_sigma = rep(0,K_net)
  
  #### End: MCMC initialization ####
  
  
  # Keep execution time #
  mcmc_clock <- Sys.time()
  if( !is.null(log_file) ) {
    cat("MCMC Starting time:\n",as.character(mcmc_clock),"\n\n",
        "---------------------------\n\n\n",
        "iter_i , mcmc_acum_minutes , Sys.time \n",
        file=log_file, append=T )
  }
  
  #### Start: MCMC Sampling ####
  if(!quiet_mcmc){ cat("Sampling MCMC ...\n") }
  
  for ( iter_i in 1:n_iter_mcmc) { # iter_i <- 1
    #cat(iter_i,",")
    
    ##### SAMPLING WEIGHTS #####
    
    ### Step W1. Sample baseline theta_tk from its conditional N-variate Gaussian posterior ###
    out_aux <- sample_baseline_tk_weight( theta_tk=theta_tk,
                                          
                                          y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                          sigma_k=sigma_k,
                                          # class_dyn=class_dyn,
                                          
                                          theta_t_cov_prior_inv=cov_gp_prior_inv,
                                          lat_mean=lat_mean,
                                          theta_tk_bar=theta_tk_bar,
                                          sigma_theta_bar=sigma_lat_mean,
                                          
                                          # nGP_mat=nGP_mat_weight$baseline_k,
                                          
                                          directed=TRUE )
    
    theta_tk <- out_aux$theta_tk
    
    mu_ijtk <- out_aux$mu_ijtk # This updates mu_ijtk except for the diagonal
    mu_ijtk[diag_y_idx] <- NA
    
    theta_tk_bar <- out_aux$theta_tk_bar
    
    # MCMC chain #
    if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
      theta_tk_mcmc[,,match(iter_i,iter_out_mcmc)] <- theta_tk
      if(lat_mean){
        theta_tk_bar_mcmc[,match(iter_i,iter_out_mcmc)] <- theta_tk_bar
      }
    }
    
    # mu_ijtk_old <- mu_ijtk
    # mu_ijtk_old[diag_y_idx] <- NA
    # mu_ijtk <- get_linpred_ijtk( baseline_tk=theta_tk,
    #                              add_eff_it_shared=sp_weight_it_shared,
    #                              add_eff_itk=sp_weight_itk,
    #                              coord_ith_shared=uv_ith_shared,
    #                              coord_ithk=uv_ithk,
    #                              beta_edge_tp=beta_mu_tp, x_ijtkp=x_ijtkp,
    #                              directed=TRUE )
    # mu_ijtk[diag_y_idx] <- NA
    # all.equal(mu_ijtk,mu_ijtk_old)
    
    
    ### Step W2. For each unit, block-sample the set of time-varying latent coordinates x_ith ###
    ### SHARED Latent Coordinates ###
    out_aux <- sample_coord_ith_shared_weight( uv_ith_shared=uv_ith_shared,
                                               
                                               y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                               sigma_k=sigma_k,
                                               
                                               # class_dyn=class_dyn,
                                               
                                               uv_t_sigma_prior_inv=cov_gp_prior_inv,
                                               lat_mean=lat_mean,
                                               uv_ith_shared_bar=uv_ith_shared_bar,
                                               sigma_uv_bar=sigma_lat_mean,
                                               tau_h=tau_h_shared_weight,
                                               
                                               directed=TRUE )
    uv_ith_shared <- out_aux$uv_ith_shared
    mu_ijtk <- out_aux$mu_ijtk
    mu_ijtk[diag_y_idx] <- NA
    
    uv_ith_shared_bar <- out_aux$uv_ith_shared_bar
    
    # MCMC chain #
    if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
      uv_ith_shared_mcmc[[1]][,,,match(iter_i,iter_out_mcmc)] <- uv_ith_shared[[1]]
      uv_ith_shared_mcmc[[2]][,,,match(iter_i,iter_out_mcmc)] <- uv_ith_shared[[2]]
      if(lat_mean){
        uv_ith_shared_bar_mcmc[[1]][,,match(iter_i,iter_out_mcmc)] <- uv_ith_shared_bar[[1]]
        uv_ith_shared_bar_mcmc[[2]][,,match(iter_i,iter_out_mcmc)] <- uv_ith_shared_bar[[2]]
      }
    }
    
    
    ### LAYER SPECIFIC Latent Coordinates ###
    if( K_net>1 ) {
      ### Step W3A. For each unit, block-sample the EDGE SPECIFIC set of time-varying latent coordinates uv_ithk ###
      out_aux <- sample_coord_ithk_weight( uv_ithk=uv_ithk,
                                           
                                           y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                           sigma_k=sigma_k,
                                           
                                           # class_dyn=class_dyn,
                                           
                                           uv_t_sigma_prior_inv=cov_gp_prior_inv,
                                           lat_mean=lat_mean,
                                           uv_ithk_bar=uv_ithk_bar,
                                           sigma_uv_bar=sigma_lat_mean,
                                           tau_h=rho_h_k,
                                           
                                           directed=TRUE )
      uv_ithk <- out_aux$uv_ithk
      mu_ijtk <- out_aux$mu_ijtk
      # mu_ijtk[diag_y_idx] <- NA
      uv_ithk_bar <- out_aux$uv_ithk_bar
      
      # MCMC chain for uv_ithk #
      if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
        uv_ithk_mcmc[[1]][,,,,match(iter_i,iter_out_mcmc)] <- uv_ithk[[1]]
        uv_ithk_mcmc[[2]][,,,,match(iter_i,iter_out_mcmc)] <- uv_ithk[[2]]
        if(lat_mean){
          uv_ithk_bar_mcmc[[1]][,,,match(iter_i,iter_out_mcmc)] <- uv_ithk_bar[[1]]
          uv_ithk_bar_mcmc[[2]][,,,match(iter_i,iter_out_mcmc)] <- uv_ithk_bar[[2]]
        }
      }
      
    }
    
    
    ### Additive effects for weights ###
    if(add_eff_weight){
      
      ### Sample global additive effects ###
      out_aux <- sample_add_eff_it_shared_weight( sp_it_shared=sp_weight_it_shared,
                                                  
                                                  y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                                  sigma_k=sigma_k,
                                                  
                                                  sp_t_cov_prior_inv=cov_gp_prior_inv,
                                                  lat_mean=lat_mean,
                                                  sp_it_shared_bar=sp_weight_it_shared_bar,
                                                  sigma_sp_bar=sigma_lat_mean,
                                                  
                                                  directed=TRUE )
      sp_weight_it_shared <- out_aux$sp_it_shared
      mu_ijtk <- out_aux$mu_ijtk
      mu_ijtk[diag_y_idx] <- NA
      sp_weight_it_shared_bar <- out_aux$sp_it_shared_bar
      
      # MCMC chain #
      if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
        sp_weight_it_shared_mcmc[,,,match(iter_i,iter_out_mcmc)] <- sp_weight_it_shared
        if(lat_mean){
          sp_weight_it_shared_bar_mcmc[,,match(iter_i,iter_out_mcmc)] <- sp_weight_it_shared_bar
        }
      }
      
      # # Checking consistency of linear predictor mu_ijtk
      # mu_ijtk_old <- mu_ijtk
      # mu_ijtk_old[diag_y_idx] <- NA
      # mu_ijtk <- get_linpred_ijtk( baseline_tk=theta_tk,
      #                              add_eff_it_shared=sp_weight_it_shared,
      #                              add_eff_itk=sp_weight_itk,
      #                              coord_ith_shared=uv_ith_shared,
      #                              coord_ithk=uv_ithk,
      #                              beta_edge_tp=beta_mu_tp, x_ijtkp=x_ijtkp,
      #                              directed=TRUE )
      # mu_ijtk[diag_y_idx] <- NA
      # all.equal(mu_ijtk,mu_ijtk_old)
      
      ### Step W0_add_eff_itk. Sample layer-specific additive effects ###
      if(F&!is.null(sp_weight_itk)){
        out_aux <- sample_add_eff_itk_weight( sp_itk=sp_weight_itk,
                                              sp_t_cov_prior_inv=cov_gp_prior_inv,
                                              y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                              sigma_k=sigma_k,
                                              directed=TRUE )
        sp_weight_itk <- out_aux$sp_itk
        mu_ijtk <- out_aux$mu_ijtk
        mu_ijtk[diag_y_idx] <- NA
        
        # MCMC chain #
        if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
          sp_weight_itk_mcmc[,,,,match(iter_i,iter_out_mcmc)] <- sp_weight_itk
        }
      }
    }
    
    
    ### Step W3. Sample coefficients ###
    if( !is.null(beta_mu_tp) ) {
      out_aux <- sample_coeff_tp_weight( beta_tp=beta_mu_tp,
                                         beta_t_cov_prior_inv=cov_gp_prior_inv,
                                         y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                         sigma_k=sigma_k,
                                         x_ijtkp_mat=x_ijtkp_mat,
                                         directed=TRUE )
      beta_mu_tp <- out_aux$beta_tp
      mu_ijtk <- out_aux$mu_ijtk
      mu_ijtk[diag_y_idx] <- NA
      
      # MCMC chain #
      if(is.element(iter_i,iter_out_mcmc)){
        beta_mu_tp_mcmc[,,match(iter_i,iter_out_mcmc)] <- beta_mu_tp
      }
    }
    
    
    ### Step W4. Sample weight variance ###
    sigma_k_old <- sigma_k
    sigma_k <- sample_var_weight( sigma_k=sigma_k,
                                  sigma_k_prop_int=sigma_k_prop_int,
                                  y_ijtk=y_ijtk, mu_ijtk=mu_ijtk,
                                  directed=TRUE )
    n_prop_sigma = n_prop_sigma+1
    n_accept_sigma = n_accept_sigma + (sigma_k_old!=sigma_k)
    
    # MCMC chain for sigma_k #
    if(is.element(iter_i,iter_out_mcmc)){
      sigma_k_mcmc[,match(iter_i,iter_out_mcmc)] <- sigma_k
    }
    
    # MCMC chain for mu_ijtk #
    if(is.element(iter_i,iter_out_mcmc)){
      mu_ijtk_mcmc[,,,,match(iter_i,iter_out_mcmc)] <- mu_ijtk
    }
    
    
    
    ##### SAMPLING LINKS #####
    
    ### Step L1. Update each augmented data w_ijtk from the full conditional Polya-gamma posterior ###
    w_ijtk <- sample_pg_w_ijtk_link( w_ijtk=w_ijtk,
                                     gamma_ijtk=gamma_ijtk,
                                     directed=TRUE )
    
    
    ### Step L2_baseline. Sample eta_tk from its conditional N-variate Gaussian posterior ###
    out_aux <- sample_baseline_tk_link( eta_tk=eta_tk,
                                        
                                        y_ijtk=y_ijtk, w_ijtk=w_ijtk, gamma_ijtk=gamma_ijtk,
                                        
                                        # class_dyn=class_dyn,
                                        
                                        eta_t_cov_prior_inv=cov_gp_prior_inv,
                                        lat_mean=lat_mean,
                                        eta_tk_bar=eta_tk_bar,
                                        sigma_eta_bar=sigma_lat_mean,
                                        
                                        directed=TRUE )
    eta_tk <- out_aux$eta_tk
    gamma_ijtk <- out_aux$gamma_ijtk # This updates gamma_ijtk except for the diagonal
    gamma_ijtk[diag_y_idx] <- NA
    eta_tk_bar <- out_aux$eta_tk_bar
    
    # MCMC chain #
    if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
      eta_tk_mcmc[,,match(iter_i,iter_out_mcmc)] <- eta_tk
      if(lat_mean){
        eta_tk_bar_mcmc[,match(iter_i,iter_out_mcmc)] <- eta_tk_bar
      }
    }
    
    
    ### Step L2_beta. Sample beta_z_layer and beta_z_edge from its conditional N-variate Gaussian posterior ###
    # TO BE IMPLEMENTED #
    
    ### Step L3. For each unit, block-sample the set of time-varying latent coordinates x_ith ###
    ### SHARED Latent Coordinates ###
    out_aux <- sample_coord_ith_shared_link( ab_ith=ab_ith_shared,
                                             
                                             y_ijtk=y_ijtk,
                                             w_ijtk=w_ijtk,
                                             gamma_ijtk=gamma_ijtk,
                                             
                                             # class_dyn=class_dyn,
                                             
                                             ab_t_sigma_prior_inv=cov_gp_prior_inv,
                                             lat_mean=lat_mean,
                                             ab_ith_bar=ab_ith_shared_bar,
                                             sigma_ab_bar=sigma_lat_mean,
                                             tau_h=tau_h_shared,
                                             
                                             directed=TRUE )
    ab_ith_shared <- out_aux$ab_ith
    gamma_ijtk <- out_aux$gamma_ijtk
    # gamma_ijtk[diag_y_idx] <- NA
    ab_ith_shared_bar <- out_aux$ab_ith_bar
    
    # MCMC chain #
    if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
      ab_ith_shared_mcmc[[1]][,,,match(iter_i,iter_out_mcmc)] <- ab_ith_shared[[1]]
      ab_ith_shared_mcmc[[2]][,,,match(iter_i,iter_out_mcmc)] <- ab_ith_shared[[2]]
      if(lat_mean){
        ab_ith_shared_bar_mcmc[[1]][,,match(iter_i,iter_out_mcmc)] <- ab_ith_shared_bar[[1]]
        ab_ith_shared_bar_mcmc[[2]][,,match(iter_i,iter_out_mcmc)] <- ab_ith_shared_bar[[2]]
      }
    }
    
    ### LAYER SPECIFIC Latent Coordinates ###
    if( K_net>1 ) {
      ### Step L3A. For each unit, block-sample the EDGE SPECIFIC set of time-varying latent coordinates ab_ithk ###
      out_aux <- sample_coord_ithk_link( ab_ithk=ab_ithk,
                                         
                                         y_ijtk=y_ijtk, w_ijtk=w_ijtk, gamma_ijtk=gamma_ijtk,
                                         
                                         # class_dyn=class_dyn,
                                         
                                         ab_t_sigma_prior_inv=cov_gp_prior_inv,
                                         lat_mean=lat_mean,
                                         ab_ithk_bar=ab_ithk_bar,
                                         sigma_ab_bar=sigma_lat_mean,
                                         tau_h=tau_h_k,
                                         
                                         directed=TRUE )
      ab_ithk <- out_aux$ab_ithk
      gamma_ijtk <- out_aux$gamma_ijtk
      # gamma_ijtk[diag_y_idx] <- NA
      ab_ithk_bar <- out_aux$ab_ithk_bar
      
      # MCMC chain for ab_ithk #
      if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
        ab_ithk_mcmc[[1]][,,,,match(iter_i,iter_out_mcmc)] <- ab_ithk[[1]]
        ab_ithk_mcmc[[2]][,,,,match(iter_i,iter_out_mcmc)] <- ab_ithk[[2]]
        if(lat_mean){
          ab_ithk_bar_mcmc[[1]][,,,match(iter_i,iter_out_mcmc)] <- ab_ithk_bar[[1]]
          ab_ithk_bar_mcmc[[2]][,,,match(iter_i,iter_out_mcmc)] <- ab_ithk_bar[[2]]
        }
      }
    }
    
    
    ### Additive effects ###
    if(add_eff_link){
      
      ### Global additive effects ###
      out_aux <- sample_add_eff_it_shared_link( sp_it_shared=sp_link_it_shared,
                                                
                                                y_ijtk=y_ijtk, w_ijtk=w_ijtk, gamma_ijtk=gamma_ijtk,
                                                
                                                sp_t_cov_prior_inv=cov_gp_prior_inv,
                                                lat_mean=lat_mean,
                                                sp_it_shared_bar=sp_link_it_shared_bar,
                                                sigma_sp_bar=sigma_lat_mean,
                                                
                                                directed=TRUE )
      sp_link_it_shared <- out_aux$sp_it_shared
      gamma_ijtk <- out_aux$gamma_ijtk
      sp_link_it_shared_bar <- out_aux$sp_it_shared_bar
      
      # MCMC chain #
      if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
        sp_link_it_shared_mcmc[,,,match(iter_i,iter_out_mcmc)] <- sp_link_it_shared
        if(lat_mean){
          sp_link_it_shared_bar_mcmc[,,match(iter_i,iter_out_mcmc)] <- sp_link_it_shared_bar
        }
      }
      
      # Checking consistency of linear predictor gamma_ijtk
      # gamma_ijtk_old <- gamma_ijtk
      # gamma_ijtk_old[diag_y_idx] <- NA
      # gamma_ijtk <- get_linpred_ijtk( baseline_tk=eta_tk,
      #                                 add_eff_it_shared=sp_link_it_shared,
      #                                 add_eff_itk=sp_link_itk,
      #                                 coord_ith_shared=ab_ith_shared,
      #                                 coord_ithk=ab_ithk,
      #                                 beta_edge_tp=beta_lambda_tp, x_ijtkp=x_ijtkp,
      #                                 directed=TRUE )
      # gamma_ijtk[diag_y_idx] <- NA
      # all.equal(gamma_ijtk,gamma_ijtk_old)
      
      ### Llayer-specific additive effects ###
      if(!is.null(sp_link_itk)){
        out_aux <- sample_add_eff_itk_link( sp_itk=sp_link_itk,
                                            sp_t_cov_prior_inv=cov_gp_prior_inv,
                                            y_ijtk=y_ijtk, w_ijtk=w_ijtk, gamma_ijtk=gamma_ijtk,
                                            directed=TRUE )
        sp_link_itk <- out_aux$sp_itk
        gamma_ijtk <- out_aux$gamma_ijtk
        
        # MCMC chain #
        if(is.element(iter_i,iter_out_mcmc)&!slim_mcmc_out){
          sp_link_itk_mcmc[,,,,match(iter_i,iter_out_mcmc)] <- sp_link_itk
        }
      }
    }
    
    
    ### Step W3. Sample coefficients ###
    if( !is.null(beta_lambda_tp) ) {
      out_aux <- sample_coeff_tp_link( beta_tp=beta_lambda_tp,
                                       beta_t_cov_prior_inv=cov_gp_prior_inv,
                                       y_ijtk=y_ijtk, w_ijtk=w_ijtk, gamma_ijtk=gamma_ijtk,
                                       x_ijtkp_mat=x_ijtkp_mat,
                                       directed=TRUE )
      
      beta_lambda_tp <- out_aux$beta_tp
      gamma_ijtk <- out_aux$gamma_ijtk
      gamma_ijtk[diag_y_idx] <- NA
      
      # MCMC chain #
      if(is.element(iter_i,iter_out_mcmc)){
        beta_lambda_tp_mcmc[,,match(iter_i,iter_out_mcmc)] <- beta_lambda_tp
      }
    }
    
    ### Edge probabilities ###
    if(is.element(iter_i,iter_out_mcmc)){
      gamma_ijtk[diag_y_idx] <- NA
      pi_ijtk_mcmc[,,,,match(iter_i,iter_out_mcmc)] <- plogis(gamma_ijtk)
    }
    
    
    
    ### Impute missing links ###
    if( F & !slim_mcmc_out & y_ijtk_miss ) { # requires too much disk memory
      # MCMC chain #
      if(is.element(iter_i,iter_out_mcmc)){
        Z_imp <- rbinom( n=nrow(y_ijtk_miss_idx), size=1, prob=plogis(gamma_ijtk[y_ijtk_miss_idx]) )
        Y_imp <- rnorm( n=nrow(y_ijtk_miss_idx), mean=mu_ijtk[y_ijtk_miss_idx], sd=sigma_k[y_ijtk_miss_idx[,4]] )
        y_ijtk_imp_mcmc[match(iter_i,iter_out_mcmc),] <- Z_imp * Y_imp
      }
    }
    
    # display MCMC progress #
    if( is.element(iter_i, floor(n_iter_mcmc*seq(0,1,0.05)[-1]) ) ) {
      if(!quiet_mcmc){
        cat(round(100*iter_i/n_iter_mcmc),"% ",sep="")
      }
      if( !is.null(log_file) ) {
        cat(iter_i," , ", as.numeric(difftime(Sys.time(),mcmc_clock,units="mins"))," , ", as.character(Sys.time()),"\n",
            file=log_file,append=TRUE )
      }
    }
    
    # save MCMC progress #
    if( is.element(iter_i, floor(n_iter_mcmc*seq(0,1,0.25)[-1]) ) & iter_i>min(iter_out_mcmc,na.rm=T) ) {
      if(!is.null(rds_file)){
        dmn_mcmc <- list( y_ijtk=y_ijtk,
                          
                          directed=TRUE,
                          weighted=TRUE,
                          
                          x_ijtkp=x_ijtkp,
                          
                          n_chains_mcmc=n_chains_mcmc,
                          n_iter_mcmc=n_iter_mcmc, n_burn=n_burn, n_thin=n_thin,
                          slim_mcmc_out=slim_mcmc_out,
                          
                          H_dim=H_dim, R_dim=R_dim,
                          
                          class_dyn=class_dyn,
                          
                          delta=delta,
                          lat_mean=lat_mean,
                          sigma_lat_mean=sigma_lat_mean,
                          
                          shrink_lat_space=shrink_lat_space,
                          a_1=a_1, a_2=a_2,
                          
                          node_all=node_all, time_all=time_all, layer_all=layer_all,
                          
                          # For link probabilities #
                          pi_ijtk_mcmc=pi_ijtk_mcmc,
                          eta_tk_mcmc=eta_tk_mcmc, eta_tk_bar_mcmc=eta_tk_bar_mcmc,
                          sp_link_it_shared_mcmc=sp_link_it_shared_mcmc, sp_link_it_shared_bar_mcmc=sp_link_it_shared_bar_mcmc,
                          sp_link_itk_mcmc=sp_link_itk_mcmc,
                          ab_ith_shared_mcmc=ab_ith_shared_mcmc, ab_ith_shared_bar_mcmc=ab_ith_shared_bar_mcmc,
                          ab_ithk_mcmc=ab_ithk_mcmc, ab_ithk_bar_mcmc=ab_ithk_bar_mcmc,
                          beta_mu_tp_mcmc=beta_mu_tp_mcmc,
                          
                          # imputed links
                          y_ijtk_miss_idx=y_ijtk_miss_idx,
                          y_ijtk_imp_mcmc=y_ijtk_imp_mcmc,
                          
                          # For link weights #
                          mu_ijtk_mcmc = mu_ijtk_mcmc,
                          sigma_k_mcmc = sigma_k_mcmc,
                          theta_tk_mcmc = theta_tk_mcmc, theta_tk_bar_mcmc=theta_tk_bar_mcmc,
                          sp_weight_it_shared_mcmc=sp_weight_it_shared_mcmc, sp_weight_it_shared_bar_mcmc=sp_weight_it_shared_bar_mcmc,
                          sp_weight_itk_mcmc=sp_weight_itk_mcmc,
                          uv_ith_shared_mcmc = uv_ith_shared_mcmc, uv_ith_shared_bar_mcmc=uv_ith_shared_bar_mcmc,
                          uv_ithk_mcmc = uv_ithk_mcmc, uv_ithk_bar_mcmc=uv_ithk_bar_mcmc,
                          beta_lambda_tp_mcmc=beta_lambda_tp_mcmc )
        
        dmn_mcmc <- structure( dmn_mcmc, class="dmn_mcmc" )
        saveRDS(dmn_mcmc,file=rds_file)
      }
    }
  }
  if(!quiet_mcmc){cat("\nMCMC finished!\n")}
  #### End: MCMC Sampling ####
  if( !is.null(log_file) ) {
    cat("\n\n---------------------------\n\n",
        "Finishing time:\n",as.character(Sys.time()),"\n\n",
        file=log_file, append=TRUE)
  }
  
  dmn_mcmc <- list( y_ijtk=y_ijtk,
                    
                    directed=TRUE,
                    weighted=TRUE,
                    
                    x_ijtkp=x_ijtkp,
                    
                    n_chains_mcmc=n_chains_mcmc,
                    n_iter_mcmc=n_iter_mcmc, n_burn=n_burn, n_thin=n_thin,
                    slim_mcmc_out=slim_mcmc_out,
                    
                    H_dim=H_dim, R_dim=R_dim,
                    
                    class_dyn=class_dyn,
                    
                    delta=delta,
                    lat_mean=lat_mean,
                    sigma_lat_mean=sigma_lat_mean,
                    
                    shrink_lat_space=shrink_lat_space,
                    a_1=a_1, a_2=a_2,
                    
                    node_all=node_all, time_all=time_all, layer_all=layer_all,
                    
                    # For link probabilities #
                    pi_ijtk_mcmc=pi_ijtk_mcmc,
                    eta_tk_mcmc=eta_tk_mcmc, eta_tk_bar_mcmc=eta_tk_bar_mcmc,
                    sp_link_it_shared_mcmc=sp_link_it_shared_mcmc, sp_link_it_shared_bar_mcmc=sp_link_it_shared_bar_mcmc,
                    sp_link_itk_mcmc=sp_link_itk_mcmc,
                    ab_ith_shared_mcmc=ab_ith_shared_mcmc, ab_ith_shared_bar_mcmc=ab_ith_shared_bar_mcmc,
                    ab_ithk_mcmc=ab_ithk_mcmc, ab_ithk_bar_mcmc=ab_ithk_bar_mcmc,
                    beta_mu_tp_mcmc=beta_mu_tp_mcmc,
                    
                    # imputed links
                    y_ijtk_miss_idx=y_ijtk_miss_idx,
                    y_ijtk_imp_mcmc=y_ijtk_imp_mcmc,
                    
                    # For link weights #
                    mu_ijtk_mcmc = mu_ijtk_mcmc,
                    sigma_k_mcmc = sigma_k_mcmc,
                    theta_tk_mcmc = theta_tk_mcmc, theta_tk_bar_mcmc=theta_tk_bar_mcmc,
                    sp_weight_it_shared_mcmc=sp_weight_it_shared_mcmc, sp_weight_it_shared_bar_mcmc=sp_weight_it_shared_bar_mcmc,
                    sp_weight_itk_mcmc=sp_weight_itk_mcmc,
                    uv_ith_shared_mcmc = uv_ith_shared_mcmc, uv_ith_shared_bar_mcmc=uv_ith_shared_bar_mcmc,
                    uv_ithk_mcmc = uv_ithk_mcmc, uv_ithk_bar_mcmc=uv_ithk_bar_mcmc,
                    beta_lambda_tp_mcmc=beta_lambda_tp_mcmc )
  
  dmn_mcmc <- structure( dmn_mcmc, class="dmn_mcmc" )
  
  return( dmn_mcmc )
  
}
christianu7/DynMultiNet documentation built on June 5, 2019, 12:56 p.m.