Nothing
calc.ti.k <- function( tab, k )
{
###
### This function calculates the index rows for the highest k priority levels
###
### Parameters
### tab = a list of named components that specifies the modified simplex tableau
### k = an integer priority level
###
tab$ti <- t( tab$tu ) %*% tab$te - tab$tw
return( tab )
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.