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

getObjCoefsCLP.Rd

Blame
  • user avatar
    Mayo Roettger authored
    dd7a9961
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    getObjCoefsCLP.Rd 969 B
    \name{getObjCoefsCLP}
    \alias{getObjCoefsCLP}
    \alias{Clp_objective}
    
    \title{
      Retrieve Objective Coefficients
    }
    
    \description{
      Low level interface function to the COIN-OR Clp function
      \code{Clp_objective}. Consult the COIN-OR Clp documentation
      for more detailed information.
    }
    
    \usage{
      getObjCoefsCLP(lp)
    }
    
    \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.
      }
    }
    
    \details{
      Interface to the C function \code{getObjCoefs} which calls
      the COIN-OR Clp functions \code{Clp_numberColumns} and
      \code{Clp_objective}.
    }
    
    \value{
      A numeric vector containing the objective coefficients.
    }
    
    \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 }