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

getColLowerCLP.Rd

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    getColLowerCLP.Rd 1.03 KiB
    \name{getColLowerCLP}
    \alias{getColLowerCLP}
    \alias{Clp_columnLower}
    
    \title{
      Retrieve Column Lower Bound
    }
    
    \description{
      Low level interface function to the COIN-OR Clp function
      \code{Clp_columnLower}. Consult the COIN-OR Clp documentation
      for more detailed information.
    }
    
    \usage{
      getColLowerCLP(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{getColLower} which calls
      the COIN-OR Clp functions \code{Clp_numberColumns} and
      \code{Clp_columnLower}.
    }
    
    \value{
      The lower bounds of the models columns (the corresponding
      structural variables) are returned.
    }
    
    \references{
       The COIN-OR Clp home page at
       \url{http://www.coin-or.org/projects/Clp.xml}
    }
    
    \author{
      Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
    
      Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
    }
    
    
    \keyword{ optimize }