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

chgColLowerCLP.Rd

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    chgColLowerCLP.Rd 1001 B
    \name{chgColLowerCLP}
    \alias{chgColLowerCLP}
    \alias{Clp_chgColumnLower}
    
    \title{
      Set/Change Column Lower Bounds
    }
    
    \description{
      Low level interface function to the COIN-OR Clp function
      \code{Clp_chgColumnLower}. Consult the COIN-OR Clp documentation
      for more detailed information.
    }
    
    \usage{
      chgColLowerCLP(lp, lb)
    }
    
    \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{lb}{
        Numeric vector containing the lower bounds of the
        columns of the model.
      }
    }
    
    \details{
      Interface to the C function \code{chgColLower} which calls
      the COIN-OR Clp function \code{Clp_chgColumnLower}.
    }
    
    \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 }