# Copyright (C) 2023 Avraham Adler. All Rights Reserved. # SPDX-License-Identifier: LGPL-3.0-or-later # # File: test-wrapper-varmetric # Author: Avraham Adler # Date: 6 February 2023 # # Test wrapper calls to Shifted limited-memory variable-metric algorithm. # # Changelog: # 2023-08-23: Change _output to _stdout # library(nloptr) ## Functions for the algorithms flb <- function(x) { p <- length(x) sum(c(1, rep(4, p - 1)) * (x - c(1, x[-p]) ^ 2) ^ 2) } x0 <- rep(3, 25L) lb <- rep(2, 25L) ub <- rep(4, 25L) ctl <- list(xtol_rel = 1e-8) # Test printout if nl.info passed. The word "Call:" should be in output if # passed and not if not passed. expect_stdout(varmetric(x0, flb, nl.info = TRUE), "Call:", fixed = TRUE) expect_silent(varmetric(x0, flb)) # No passed gradient; Rank 1 varTest <- varmetric(x0, flb, lower = lb, upper = ub, control = ctl, rank2 = FALSE) varControl <- nloptr(x0 = x0, eval_f = flb, eval_grad_f = function(x) nl.grad(x, flb), lb = lb, ub = ub, opts = list(algorithm = "NLOPT_LD_VAR1", xtol_rel = 1e-8, maxeval = 1000L)) expect_identical(varTest$par, varControl$solution) expect_identical(varTest$value, varControl$objective) expect_identical(varTest$iter, varControl$iterations) expect_identical(varTest$convergence, varControl$status) expect_identical(varTest$message, varControl$message) # No passed gradient; Rank 2 varTest <- varmetric(x0, flb, lower = lb, upper = ub, control = ctl) varControl <- nloptr(x0 = x0, eval_f = flb, eval_grad_f = function(x) nl.grad(x, flb), lb = lb, ub = ub, opts = list(algorithm = "NLOPT_LD_VAR2", xtol_rel = 1e-8, maxeval = 1000L)) expect_identical(varTest$par, varControl$solution) expect_identical(varTest$value, varControl$objective) expect_identical(varTest$iter, varControl$iterations) expect_identical(varTest$convergence, varControl$status) expect_identical(varTest$message, varControl$message) # Passed gradient fr <- function(x) {100 * (x[2L] - x[1L] ^ 2) ^ 2 + (1 - x[1L]) ^ 2} gr <- function(x) { .expr2 <- x[2L] - x[1L] ^ 2 .expr5 <- 1 - x[1L] c(-(2 * .expr5 + 100 * (2 * (2 * x[1L] * .expr2))), 100 * (2 * .expr2)) } varTest <- varmetric(c(-1.2, 2), fr, gr, control = ctl) varControl <- nloptr(x0 = c(-1.2, 2), eval_f = fr, eval_grad_f = gr, opts = list(algorithm = "NLOPT_LD_VAR2", xtol_rel = 1e-8, maxeval = 1000L)) expect_identical(varTest$par, varControl$solution) expect_identical(varTest$value, varControl$objective) expect_identical(varTest$iter, varControl$iterations) expect_identical(varTest$convergence, varControl$status) expect_identical(varTest$message, varControl$message)