Skip to content
Snippets Groups Projects
Select Git revision
  • ac71b6bf3efd5fc7af8bba0046fd8d903a8049ed
  • master default protected
2 results

SemanticBeliefTracking.rst

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    getNumIntGLPK.Rd 941 B
    \name{getNumIntGLPK}
    \alias{getNumIntGLPK}
    \alias{glp_get_num_int}
    
    \title{
      Retrieve Number of Integer Columns
    }
    
    \description{
      Low level interface function to the GLPK function \code{glp_get_num_int}.
      Consult the GLPK documentation for more detailed information.
    }
    
    \usage{
      getNumIntGLPK(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{getNumInt} which calls the GLPK
      function \code{glp_get_num_int}.
    }
    
    \value{
      Number of integer columns.
    }
    
    \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 }