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

main.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    checkCopyQuadCPLEX.Rd 1.93 KiB
    \name{checkCopyQuadCPLEX}
    \alias{checkCopyQuadCPLEX}
    \alias{CPXcheckcopyquad}
    
    \title{
      Validate Arguments of the Corresponding \code{checkCopyQuadCPLEX} Routine
    }
    
    \description{
      Low level interface function to the IBM ILOG CPLEX function
      \code{CPXcheckcopyquad}.  Consult the IBM ILOG CPLEX documentation for more
      detailed information.
    }
    
    \usage{
      checkCopyQuadCPLEX(env, lp, qmatbeg, qmatcnt, qmatind, qmatval)
    }
    
    \arguments{
      \item{env}{
        An object of class \code{"\linkS4class{cplexPtr}"} as returned by
        \code{\link{openEnvCPLEX}}. This is basically a pointer to an
        IBM ILOG CPLEX environment.
      }
      \item{lp}{
        An object of class \code{"\linkS4class{cplexPtr}"} as returned by
        \code{\link{initProbCPLEX}}. This is basically a pointer to an
        IBM ILOG CPLEX problem object.
      }
      \item{qmatbeg}{
        Array that defines the constraint matrix. Consult the IBM ILOG CPLEX
        documentation for more detailed information.
      }
      \item{qmatcnt}{
        Array that defines the constraint matrix. Consult the IBM ILOG CPLEX
        documentation for more detailed information.
      }
      \item{qmatind}{
        Array that defines the constraint matrix. Consult the IBM ILOG CPLEX
        documentation for more detailed information.
      }
      \item{qmatval}{
        Array that defines the constraint matrix. Consult the IBM ILOG CPLEX
        documentation for more detailed information.
      }
    }
    
    \details{
      Interface to the C function \code{checkCopyQuad} which calls the CPLEX
      function \code{CPXcheckcopyquad}.
    }
    
    \value{
      Nonzero if it detects an error in the data; it returns zero if it does not
      detect any data errors.
    }
    
    \references{
      The IBM ILOG CPLEX home page at
      \url{https://www.ibm.com/developerworks/university/academicinitiative/}.
    }
    
    \author{
      Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
    
      Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
    }
    
    
    \seealso{
      \code{\link{copyQuadCPLEX}}
    }
    
    \keyword{ optimize }