Skip to content
Snippets Groups Projects
Commit 90da33c8 authored by Mayo Roettger's avatar Mayo Roettger
Browse files

maintainer change version 1.2.9; added documentation files; changed return...

maintainer change version 1.2.9; added documentation files; changed return value in C function getHitMaximumIterations
parent 7b9accd4
Branches
No related tags found
No related merge requests found
Showing
with 181 additions and 34 deletions
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -37,13 +37,13 @@ ...@@ -37,13 +37,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
\name{getHitMaximumIterationsCLP}
\alias{getHitMaximumIterationsCLP}
\alias{Clp_hitMaximumIterations}
\title{
Returns True if Hit Maximum Iterations (or Time)
}
\description{
Low level interface function to the COIN-OR Clp function
\code{Clp_hitMaximumIterations}. Consult the COIN-OR Clp
documentation for more detailed information.
}
\usage{
getHitMaximumIterationsCLP(lp)
}
\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.
}
}
\details{
Interface to the C function \code{getHitMaximumIterations} which calls
the COIN-OR Clp function \code{Clp_hitMaximumIterations}.
}
\value{
True if hit maximum iterations (or time)
}
\references{
The COIN-OR Clp home page at
\url{https://projects.coin-or.org/Clp}
}
\author{
C. Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
}
\keyword{ optimize }
...@@ -37,13 +37,13 @@ ...@@ -37,13 +37,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
\name{getMaximumIterationsCLP}
\alias{getMaximumIterationsCLP}
\alias{maximumIterations}
\title{
Returns Maximum Number of Iterations
}
\description{
Low level interface function to the COIN-OR Clp function
\code{maximumIterations}. Consult the COIN-OR Clp
documentation for more detailed information.
}
\usage{
getMaximumIterationsCLP(lp)
}
\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.
}
}
\details{
Interface to the C function \code{getMaximumIterations} which calls
the COIN-OR Clp function \code{maximumIterations}.
}
\value{
Maximum number of iterations
}
\references{
The COIN-OR Clp home page at
\url{https://projects.coin-or.org/Clp}
}
\author{
C. Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
}
\keyword{ optimize }
\name{getMaximumSecondsCLP}
\alias{getMaximumSecondsCLP}
\alias{Clp_maximumSeconds}
\title{
Maximum Time in Seconds (from when Set called)
}
\description{
Low level interface function to the COIN-OR Clp function
\code{Clp_maximumSeconds}. Consult the COIN-OR Clp
documentation for more detailed information.
}
\usage{
getMaximumSecondsCLP(lp)
}
\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.
}
}
\details{
Interface to the C function \code{getMaximumSeconds} which calls
the COIN-OR Clp function \code{Clp_maximumSeconds}.
}
\value{
Maximum time in seconds (from when set called)
}
\references{
The COIN-OR Clp home page at
\url{https://projects.coin-or.org/Clp}
}
\author{
C. Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
}
\keyword{ optimize }
...@@ -38,13 +38,13 @@ ...@@ -38,13 +38,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -35,13 +35,13 @@ ...@@ -35,13 +35,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -36,13 +36,13 @@ ...@@ -36,13 +36,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
...@@ -37,13 +37,13 @@ ...@@ -37,13 +37,13 @@
\references{ \references{
The COIN-OR Clp home page at The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml} \url{https://projects.coin-or.org/Clp}
} }
\author{ \author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de> Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de> Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment