Skip to content
Snippets Groups Projects
Select Git revision
  • 032af96ef413bb0701ddae869edd9dc66d5adb85
  • master default protected
  • exec_auto_adjust_trace
  • let_variables
  • v1.4.1
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.1.0
  • v1.0.0
10 results

gradlew

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 }