Skip to content
Snippets Groups Projects
Select Git revision
  • dd7a9961fe61c399067e16e84bca40df5ef64dfa
  • master default protected
  • cran_version
3 results

loadProblemCLP.Rd

Blame
  • user avatar
    Mayo Roettger authored
    dd7a9961
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    loadProblemCLP.Rd 1.45 KiB
    \name{loadProblemCLP}
    \alias{loadProblemCLP}
    \alias{Clp_loadProblem}
    
    \title{
      Load Problem Data
    }
    
    \description{
      Low level interface function to the COIN-OR Clp function
      \code{Clp_loadProblem}. Consult the COIN-OR Clp
      documentation for more detailed information.
    }
    
    \usage{
      loadProblemCLP(lp, ncols, nrows, ia, ja, ra,
                     lb = NULL, ub = NULL, obj_coef = NULL,
                     rlb = NULL, rub = NULL)
    }
    
    \arguments{
      \item{lp}{
        An object of class \code{"\linkS4class{clpPtr}"} as returned by
        \code{\link{initProbCLP}}. This is basically a pointer to a COIN-OR Clp
        problem object.
      }
      \item{ncols}{
        Number of Columns.
      }
      \item{nrows}{
        Number of Rows.
      }
      \item{ia}{
        Row indices in the constraint matrix.
      }
      \item{ja}{
        Column starts in constraint matrix.
      }
      \item{ra}{
        Non zero elements of the constraint matrix.
      }
      \item{lb}{
        Column lower bounds.
      }
      \item{ub}{
        Column upper bounds.
      }
      \item{obj_coef}{
        Objective coefficients.
      }
      \item{rlb}{
        Row lower bounds.
      }
      \item{rub}{
        Row upper bounds.
      }
    }
    
    \details{
      Interface to the C function \code{loadProblem} which calls
      the COIN-OR Clp function \code{Clp_loadProblem}.
    }
    
    \value{
      NULL
    }
    
    \references{
       The COIN-OR Clp home page at
       \url{https://projects.coin-or.org/Clp}
    }
    
    \author{
      Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
    
      Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
    }
    
    
    \keyword{ optimize }