#'\code{write_constraints_5_all}
#'
#' This code writes the list of constraints (5) of the ILP problem for all the
#' conditions.
#'
#' Enio Gjerga, 2020
write_constraints_5_all <- function(variables=variables) {
constraints5 <- c()
for(i in 1:length(variables)){
var <- variables[[i]]
constraints5 <- c(constraints5, write_constraints_5(variables = var,
conditionIDX = i))
}
return(constraints5)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.