Skip to content
Snippets Groups Projects
Select Git revision
  • ec566a5fe181a48d16c4078e134201b6ad526cbc
  • master default protected
  • release/1.1.4
  • release/1.1.3
  • release/1.1.1
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.1
  • 1.2.0
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.1
  • 1.1.0
  • 1.0.9
  • 1.0.8
  • 1.0.7
  • v1.0.5
  • 1.0.5
21 results

settings.gradle

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    bfExistsGLPK.Rd 1.01 KiB
    \name{bfExistsGLPK}
    \alias{bfExistsGLPK}
    \alias{glp_bf_exists}
    
    \title{
      Check if the basis factorization exists
    }
    
    \description{
      Low level interface function to the GLPK function \code{glp_bf_exists}.
      Consult the GLPK documentation for more detailed information.
    }
    
    \usage{
      bfExistsGLPK(lp)
    }
    
    \arguments{
      \item{lp}{
        An object of class \code{"\linkS4class{glpkPtr}"} as returned by
        \code{\link{initProbGLPK}}. This is basically a pointer to a GLPK problem
        object.
      }
    }
    
    \details{
      Interface to the C function \code{bfExists} which calls the GLPK
      function \code{glp_bf_exists}.
    }
    
    \value{
      Returns non-zero if the basis factorization for the specified problem object
      exists. Otherwise the routine returns zero.
    }
    
    \references{
      Based on the package \pkg{glpk} by Lopaka Lee.
        
      The GNU GLPK home page at \url{http://www.gnu.org/software/glpk/glpk.html}.
    }
    
    \author{
      Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
    
      Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
    }
    
    
    \keyword{ optimize }