Skip to content

Commit

Permalink
Removed C++11 requirement.
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarbo committed Dec 20, 2023
1 parent 29b671d commit 5146a57
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Encoding: UTF-8
Type: Package
Package: mixsqp
Version: 0.3-53
Version: 0.3-54
Date: 2023-12-20
Title: Sequential Quadratic Programming for Fast Maximum-Likelihood
Estimation of Mixture Proportions
Expand Down
2 changes: 1 addition & 1 deletion R/mixsqp.R
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ mixsqp <- function (L, w = rep(1,nrow(L)), x0 = rep(1,ncol(L)),

# Print a brief summary of the analysis, if requested.
if (verbose) {
cat(sprintf("Running mix-SQP algorithm 0.3-53 on %d x %d matrix\n",n,m))
cat(sprintf("Running mix-SQP algorithm 0.3-54 on %d x %d matrix\n",n,m))
cat(sprintf("convergence tol. (SQP): %0.1e\n",convtol.sqp))
cat(sprintf("conv. tol. (active-set): %0.1e\n",convtol.activeset))
cat(sprintf("zero threshold (solution): %0.1e\n",zero.threshold.solution))
Expand Down
1 change: 0 additions & 1 deletion src/Makevars
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
CXX_STD = CXX11
PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS) -DARMA_DONT_PRINT_ERRORS \
-DARMA_NO_DEBUG -DARMA_USE_BLAS -DARMA_DONT_USE_OPENMP -DARMA_WARN_LEVEL=1
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
1 change: 0 additions & 1 deletion src/Makevars.win
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
CXX_STD = CXX11
PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS) -DARMA_DONT_PRINT_ERRORS \
-DARMA_NO_DEBUG -DARMA_USE_BLAS -DARMA_DONT_USE_OPENMP -DARMA_WARN_LEVEL=1
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)

0 comments on commit 5146a57

Please sign in to comment.