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
No related branches found
No related tags found
No related merge requests found
......@@ -39,13 +39,13 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
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 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
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 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
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 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
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 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
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 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
}
......
......@@ -28,13 +28,13 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
}
......
......@@ -26,13 +26,13 @@
\references{
The COIN-OR Clp home page at
\url{http://www.coin-or.org/projects/Clp.xml}
\url{https://projects.coin-or.org/Clp}
}
\author{
Gabriel Gelius-Dietrich <geliudie@uni-duesseldorf.de>
Maintainer: Claus Jonathan Fritzemeier <clausjonathan.fritzemeier@uni-duesseldorf.de>
Maintainer: Mayo Roettger <mayo.roettger@hhu.de>
}
......
......@@ -263,17 +263,17 @@ SEXP getMaximumSeconds(SEXP lp) {
}
/* -------------------------------------------------------------------------- */
/* get if maxium iteration bound was hit*/
/* get if maximum iteration bound was hit*/
SEXP getHitMaximumIterations(SEXP lp) {
SEXP out = R_NilValue;
int iterations = 0;
checkProb(lp);
iterations = Clp_hitMaximumIterations(R_ExternalPtrAddr(lp));
out = Rf_ScalarInteger(iterations);
if (Clp_hitMaximumIterations(R_ExternalPtrAddr(lp)))
out = Rf_ScalarLogical(1);
else
out = Rf_ScalarLogical(0);
return out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment