tests/testthat/test_loglikelihood.R

context("log-likelihood")
library(gmvarkit)

set.seed(1); data2 <- cbind(gdpdef, round(rnorm(nrow(gdpdef)), 3))

# p=1, M=1, d=2
phi10_112 <- c(0.65, 0.7)
A11_112 <- matrix(c(0.29, 0.02, -0.14, 0.9), nrow=2, byrow=FALSE)
Omega1_112 <- matrix(c(0.60, 0.01, 0.01, 0.07), nrow=2, byrow=FALSE)

theta_112 <- c(phi10_112, vec(A11_112), vech(Omega1_112))

W_112 <- t(chol(Omega1_112))
theta_112sWC <- c(phi10_112, vec(A11_112), Wvec(W_112)) # SGMVAR, W constrained by Cholesky

theta_112t <- c(theta_112, 10) # StMVAR
theta_112tsWC <- c(theta_112sWC, 10) # SStMVAR

# p=2, M=1, d=2
phi10_212 <- c(0.53, 0.03)
A11_212 <- matrix(c(0.23, 0.02, -0.17, 0.66), nrow=2, byrow=FALSE)
A12_212 <- matrix(c(0.18, 0.02, 0.04, 0.26), nrow=2, byrow=FALSE)
Omega1_212 <- matrix(c(0.58, 0.01, 0.01, 0.06), nrow=2, byrow=FALSE)

theta_212 <- c(phi10_212, vec(A11_212), vec(A12_212), vech(Omega1_212))

W_212 <- t(chol(Omega1_212))
theta_212sWC <- c(phi10_212, vec(A11_212), vec(A12_212), Wvec(W_212)) # SGMVAR, W constrained by Cholesky

theta_212t <- c(theta_212, 2.1) # StMVAR
theta_212tsWC <- c(theta_212sWC, 3) # SStMVAR

# p=1, M=2, d=2
phi10_122 <- c(0.55, 0.11)
A11_122 <- matrix(c(0.34, 0.05, -0.01, 0.72), nrow=2, byrow=FALSE)
Omega1_122 <- matrix(c(0.58, 0.01, 0.01, 0.06), nrow=2, byrow=FALSE)

phi20_122 <- c(0.17, 0.25)
A21_122 <- A11_122
Omega2_122 <- matrix(c(0.50, -0.01, -0.01, 0.20), nrow=2, byrow=FALSE)

alpha1_122 <- 0.60
upsilon1_122 <- c(phi10_122, vec(A11_122), vech(Omega1_122))
upsilon2_122 <- c(phi20_122, vec(A21_122), vech(Omega2_122))
theta_122 <- c(upsilon1_122, upsilon2_122, alpha1_122)

WL_122 <- diag_Omegas(Omega1_122, Omega2_122)
W_122 <- matrix(WL_122[1:(2^2)], nrow=2, byrow=FALSE)
lambdas_122 <- WL_122[(2^2 + 1):length(WL_122)]
theta_122s <- c(phi10_122, phi20_122, vec(A11_122), vec(A21_122), vec(W_122), lambdas_122, alpha1_122) # SGMVAR

theta_122gs <- c(theta_122, 20) # G-StMVAR
theta_122gss <- c(theta_122s, 10) # SG-StMVAR

# p=2, M=2, d=2
phi10_222 <- c(0.36, 0.12)
A11_222 <- matrix(c(0.22, 0.06, -0.15, 0.39), nrow=2, byrow=FALSE)
A12_222 <- matrix(c(0.41, -0.01, 0.08, 0.3), nrow=2, byrow=FALSE)
Omega1_222 <- matrix(c(0.21, 0.01, 0.01, 0.03), nrow=2, byrow=FALSE)

phi20_222 <- c(0.48, 0.07)
A21_222 <- matrix(c(0.22, 0.02, -0.12, 0.72), nrow=2, byrow=FALSE)
A22_222 <- matrix(c(0.09, 0.03, 0.04, 0.19), nrow=2, byrow=FALSE)
Omega2_222 <- matrix(c(1.10, 0.01, 0.01, 0.11), nrow=2, byrow=FALSE)

alpha1_222 <- 0.37
upsilon1_222 <- c(phi10_222, vec(A11_222), vec(A12_222), vech(Omega1_222))
upsilon2_222 <- c(phi20_222, vec(A21_222), vec(A22_222), vech(Omega2_222))
theta_222 <- c(upsilon1_222, upsilon2_222, alpha1_222)

WL_222 <- diag_Omegas(Omega1_222, Omega2_222)
W_222 <- matrix(WL_222[1:(2^2)], nrow=2, byrow=FALSE)
lambdas_222 <- WL_222[(2^2 + 1):length(WL_222)]
theta_222s <- c(phi10_222, phi20_222, vec(A11_222), vec(A12_222), vec(A21_222),
                vec(A22_222), vec(W_222), lambdas_222, alpha1_222) # SGMVAR

theta_222t <- c(theta_222, 100, 200) # StMVAR
theta_222gs <- c(theta_222, 50) # G-StMVAR

theta_222ts <- c(theta_222s, 10, 20) # SStMVAR
theta_222gss <- c(theta_222s, 2.1) # SG-StMVAR


# p=1, M=4, d=2
theta_142 <- c(0.680381, 0.099736, 0.502918, 0.080781, -0.627348, 0.674579,
               0.37666, 0.020433, 0.016747, 0.285857, 0.205766, 0.392568,
               0.047474, 0.317407, 0.683117, 0.415324, -0.059849, 0.079795,
               1.927008, 0.687905, 0.036475, -0.014841, -0.793236, 0.638711,
               1.281068, 0.017391, 0.135752, 1.716725, 0.668851, -0.184389,
               -0.155109, -1.746672, -0.348001, 0.43192, -0.028927, 0.002053,
               0.428343, 0.347302, 0.152716)

theta_142gs_1 <- c(theta_142, 20, 30, 40) # G-StMVAR, M1=1, M2=3
theta_142gs_2 <- c(theta_142, 40) # G-StMVAR, M1=3, M2=1
theta_142gs_3 <- c(theta_142, 30, 40) # G-StMVAR, M1=2, M2=2


# Mean parametrization
theta_112_mu <- change_parametrization(p=1, M=1, d=2, params=theta_112, change_to="mean")
theta_212_mu <- change_parametrization(p=2, M=1, d=2, params=theta_212, change_to="mean")
theta_122_mu <- change_parametrization(p=1, M=2, d=2, params=theta_122, change_to="mean")
theta_222_mu <- change_parametrization(p=2, M=2, d=2, params=theta_222, change_to="mean")
theta_112sWC_mu <- change_parametrization(p=1, M=1, d=2, params=theta_112sWC, structural_pars=list(W=W_112), change_to="mean")
theta_122s_mu <- change_parametrization(p=1, M=2, d=2, params=theta_122s, structural_pars=list(W=W_122), change_to="mean")
theta_222s_mu <- change_parametrization(p=2, M=2, d=2, params=theta_222s, structural_pars=list(W=W_222), change_to="mean")

theta_112t_mu <- change_parametrization(p=1, M=1, d=2, params=theta_112t, model="StMVAR", change_to="mean") # StMVAR
theta_212t_mu <- change_parametrization(p=2, M=1, d=2, params=theta_212t, model="StMVAR", change_to="mean") # StMVAR
theta_122gs_mu <- change_parametrization(p=1, M=c(1, 1), d=2, params=theta_122gs, model="G-StMVAR", change_to="mean") # G-StMVAR
theta_222t_mu <- change_parametrization(p=2, M=2, d=2, params=theta_222t, model="StMVAR", change_to="mean") # StMVAR
theta_112tsWC_mu <- change_parametrization(p=1, M=1, d=2, params=theta_112tsWC, model="StMVAR", structural_pars=list(W=W_112),
                                           change_to="mean") # SStMVAR
theta_122gss_mu <- change_parametrization(p=1, M=c(1, 1), d=2, params=theta_122gss, model="G-StMVAR", structural_pars=list(W=W_122),
                                          change_to="mean") # SG-StMVAR
theta_222gss_mu <- change_parametrization(p=2, M=c(1, 1), d=2, params=theta_222gss, model="G-StMVAR", structural_pars=list(W=W_222),
                                          change_to="mean") # SG-StMVAR
theta_222ts_mu <- change_parametrization(p=2, M=c(1, 1), d=2, params=theta_222ts, model="StMVAR", structural_pars=list(W=W_222),
                                         change_to="mean") # SStMVAR


# p=4, M=1, d=3, data2 (note: very bad fit)
theta_413 <- c(0.955, 1.968, 5.832, 0.384, 0.895, 1.519, 1.175, 0.067, -0.68, 1.517, -0.654, -0.237, -1.343, -1.188, -0.403,
              0.98, -0.285, -1.787, 0.546, -0.545, -1.633, 0.277, -0.33, 2.037, 0.563, 1.126, -1.264, 0.179, 2.345, -1.126,
              -0.152, -0.82, 0.428, -0.332, 1.776, -0.976, -0.256, 0.374, -0.82, 1.964, -0.42, 0.798, 3.931, -0.436, 0.404)

theta_413t <- c(theta_413, 10) # StMVAR

# p=3, M=2, d=3, data2
theta_323 <- c(0.352, 0.085, 0.19, 0.166, 0.059, -0.35, -0.003, 0.351, 0.019, -0.003, 0.003, -0.015, 0.465, -0.021, -0.051,
               0.281, 0.128, -0.452, -0.011, 0.004, -0.048, -0.059, 0.036, 0.207, -0.284, 0.243, 0.315, 0.023, 0.001, 0.055,
               0.205, 0, 0.086, 0.031, -0.01, 0.957, 0.657, 0.047, 0.383, 0.289, -0.002, -0.069, -0.156, 0.7, 0.152, 0.071,
               -0.031, -0.055, 0.093, 0.044, 0.041, 0.058, 0.079, -0.658, 0.032, 0.054, -0.036, -0.057, 0.038, -0.107,
               -0.078, 0.138, 0.445, -0.166, 0.049, -0.237, 1.143, 0.02, -0.271, 0.095, 0.018, 0.688, 0.719)

theta_323gs <- c(theta_323, 20) # G-StMVAR

# p=7, M=2, d=2
theta_722 <- c(0.556, -0.027, 0.267, 0.021, -0.15, 0.622, 0.078, 0.026, 0.158, 0.04, -0.027, 0.015, -0.242, 0.099, 0.05,
               0.057, -0.235, 0.27, -0.069, -0.002, 0.249, -0.135, -0.014, 0.032, 0.054, 0.058, -0.09, 0.081, 0.132,
               -0.053, 0.843, 0.021, 0.082, 0.537, 0.061, 0.167, 0.051, -0.112, 0.308, 0.372, 0.039, 0.211, 0.227,
               -0.139, 0.066, -0.371, 0.208, 0.142, -0.046, -0.071, 0.076, -0.164, 0.012, -0.163, 0.03, 0.165, 0.006,
               -0.496, 0.234, 0.271, -0.089, 0.225, -0.259, 0.218, 0.002, 0.021, 0.721)

theta_722t <- c(theta_722, 3, 4) # StMVAR

# p=6, M=3, d=2
theta_632 <- c(0.946496, 0.080268, 0.030026, 0.454984, 0.153281, -0.597408, -0.343207, 0.27003, -0.009369, 0.398815,
               -0.557508, -0.606283, 0.570008, 0.729047, -0.636236, -0.324584, 0.784139, 0.157365, -0.64247, 0.100334,
               0.851107, -0.089478, -0.469049, 0.404556, 0.17415, -0.2745, 0.02781, 0.039447, 0.059343, 0.585345, -0.001013,
               0.325745, 0.052822, 0.020458, 0.464934, 0.25861, 0.021979, 0.005002, 0.028551, -0.161162, 0.033817, -0.407718,
               0.239431, 0.11308, -0.013225, 0.035824, 0.067477, -0.038552, -0.005739, 0.011806, 0.101888, 0.088671, -0.018675,
               -0.150412, 0.006073, 0.337413, 0.001703, 0.028568, 2.701142, 0.370117, 0.104281, -0.019346, -0.509732, 0.564074,
               -0.009026, -0.006529, 0.238403, 0.049195, -0.069648, 0.011972, -0.486556, 0.14413, -0.030511, 0.092299, -0.388031,
               0.253254, -0.125366, 0.010989, 0.221103, -0.201323, -0.086355, 0.064991, -0.174453, -0.091006, 1.080211, -0.009982,
               0.101493, 0.990494, 0.008251)

theta_632t <- c(theta_632, 10, 20, 30) # StMVAR
theta_632gs_1 <- c(theta_632, 20, 30) # G-StMVAR, M1=1, M2=2
theta_632gs_2 <- c(theta_632, 30) # G-StMVAR, M1=2, M2=1


# p=8, M=1, d=2 (note: very bad fit)
theta_812 <- c(2.54, 1.341, -0.316, -0.405, -0.181, 0.744, 0.505, -0.795, -0.221, 0.109, 1.382, 1.453, -0.659, -1.004, 0.44, 0.314,
               0.437, 1.082, -2.219, -0.177, 1.155, -0.081, -0.663, 0.478, -0.869, -0.114, 0.881, -0.098, -0.868, 0.448, 0.308, -0.535,
               0.122, 0.165, 0.051, 0.086, 3.732)

theta_812t <- c(theta_812, 10) # StMVAR

# Same means
mu_112 <- pick_phi0(p=1, M=1, d=2, params=theta_112_mu)
mu_212 <- pick_phi0(p=2, M=1, d=2, params=theta_212_mu)
mu_122 <- pick_phi0(p=1, M=2, d=2, params=theta_122_mu)
mu_222 <- pick_phi0(p=2, M=2, d=2, params=theta_222_mu)
mu_112sWC <- pick_phi0(p=1, M=1, d=2, params=theta_112sWC_mu, structural_pars=list(W=W_112))
mu_122s <- pick_phi0(p=1, M=2, d=2, params=theta_122s_mu, structural_pars=list(W=W_122))
mu_222s <- pick_phi0(p=2, M=2, d=2, params=theta_222s_mu, structural_pars=list(W=W_222))

mu_112t <- pick_phi0(p=1, M=1, d=2, params=theta_112t_mu) # StMVAR
mu_212t <- pick_phi0(p=2, M=1, d=2, params=theta_212t_mu) # StMVAR
mu_122gs <- pick_phi0(p=1, M=c(1, 1), d=2, params=theta_122gs_mu) # G-StMVAR
mu_222t <- pick_phi0(p=2, M=c(1, 1), d=2, params=theta_222t_mu) # StMVAR
mu_112tsWC <- pick_phi0(p=1, M=1, d=2, params=theta_112tsWC_mu, structural_pars=list(W=W_112)) # StMVAR
mu_122gss <- pick_phi0(p=1, M=c(1, 1), d=2, params=theta_122gss_mu, structural_pars=list(W=W_122)) # G-StMVAR
mu_222ts <- pick_phi0(p=2, M=2, d=2, params=theta_222ts_mu, structural_pars=list(W=W_222)) # StMVAR

theta_112_int <- c(mu_112, vec(A11_112), vech(Omega1_112)) # same_means=list(1)
theta_212_int <- c(mu_212, vec(A11_212), vec(A12_212), vech(Omega1_212)) # same_means=list(1)
theta_122_int <- c(mu_122[,1], vec(A11_122), vec(A21_122), vech(Omega1_122), vech(Omega2_122), alpha1_122) # same_means=list(1:2)
theta_122_int2 <- c(vec(mu_122), vec(A11_122), vec(A21_122), vech(Omega1_122), vech(Omega2_122), alpha1_122) # same_means=list(1, 2)
theta_222_int <- c(mu_222[,1], vec(A11_222), vec(A12_222), vec(A21_222), vec(A22_222), vech(Omega1_222),
                   vech(Omega2_222), alpha1_222) # same_means=list(1:2)
theta_112sWC_int <- c(mu_112sWC, vec(A11_112), Wvec(W_112)) # structural_pars=list(W=W_112), same_means=list(1)
theta_122s_int <- c(mu_122s[,1], vec(A11_122), vec(A21_122), vec(W_122),
                    lambdas_122, alpha1_122) # structural_pars=list(W=W_122), same_means=list(1:2)
theta_222s_int <- c(mu_222s[,1], vec(A11_222), vec(A12_222), vec(A21_222),
                    vec(A22_222), vec(W_222), lambdas_222, alpha1_222)  # structural_pars=list(W=W_222), same_means=list(1:2)

theta_112t_int <- c(theta_112_int, 10) # same_means=list(1), # StMVAR
theta_212t_int <- c(theta_212_int, 2.1) # same_means=list(1), # StMVAR
theta_122gs_int <- c(theta_122_int, 20) # same_means=list(1:2), # G-StMVAR
theta_222t_int <- c(theta_222_int, 100, 200) # same_means=list(1:2), # StMVAR
theta_112tsWC_int <- c(theta_112sWC_int, 10) # structural_pars=list(W=W_112), same_means=list(1), # StMVAR
theta_122gss_int <- c(theta_122s_int, 10) # structural_pars=list(W=W_122), same_means=list(1:2), # G-StMVAR
theta_222ts_int <- c(theta_222s_int, 10, 20)  # structural_pars=list(W=W_222), same_means=list(1:2) # StMVAR

## Fixed alphas and lambdas

# p=1, M=2, d=2, model="GMVAR", weight_constraints=0.6
theta_122w <- c(upsilon1_122, upsilon2_122)

# p=1, M=2, d=2, model="GMVAR", weight_constraints=0.6, structural_pars=list(W=W_122)
theta_122ws <- c(phi10_122, phi20_122, vec(A11_122), vec(A21_122), vec(W_122), lambdas_122)

# p=1, M=2, d=2, model="StMVAR", structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))
theta_122tsF <- c(phi10_122, phi20_122, vec(A11_122), vec(A21_122), vec(W_122), alpha1_122, 11, 12)

# p=1, M=c(1, 1), d=2, model="G-StMVAR", weight_constraints=0.6, structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))
theta_122gswsF <- c(phi10_122, phi20_122, vec(A11_122), vec(A21_122), vec(W_122), 11)

# p=2, M=2, d=2, model="StMVAR", weight_constraints=0.37
theta_222tw <- c(upsilon1_222, upsilon2_222, 100, 200)

# p=2, M=c(1, 1), d=2, model="G-StMVAR", structural_pars=list(W=W_222, fixed_lambdas=c(5.4, 3.6))
theta_222gssF <- c(phi10_222, phi20_222, vec(A11_222), vec(A12_222), vec(A21_222),
                   vec(A22_222), vec(W_222), alpha1_222, 50)

# p=2, M=2, d=2, model="GMVAR", weight_constraints=0.37, structural_pars=list(W=W_222, fixed_lambdas=c(5.4, 3.6))
theta_222wsF <- c(phi10_222, phi20_222, vec(A11_222), vec(A12_222), vec(A21_222),
                  vec(A22_222), vec(W_222))

test_that("loglikelihood_int works correctly", {
  # Fixed alphas and lambdas
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122w, conditional=FALSE, model="GMVAR", weight_constraints=0.6),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122ws, conditional=FALSE, model="GMVAR",
                                 weight_constraints=0.6, structural_pars=list(W=W_122)),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tsF, conditional=FALSE, model="StMVAR",
                                 structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))),
               -287.6108, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tsF, conditional=FALSE, model="StMVAR",
                                 structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))),
               -287.6108, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gswsF, conditional=FALSE, model="G-StMVAR", weight_constraints=0.6,
                                 structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))),
               -301.4034, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222tw, conditional=FALSE, model="StMVAR", weight_constraints=0.37),
               -241.2498, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gssF, conditional=FALSE,  model="G-StMVAR",
                                 structural_pars=list(W=W_222, fixed_lambdas=c(5.4, 3.6))), -240.9397, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222wsF, conditional=FALSE, model="GMVAR", weight_constraints=0.37,
                                 structural_pars=list(W=W_222, fixed_lambdas=c(5.4, 3.6))),
               -241.6253, tolerance=1e-3)

  # Regular
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112, conditional=FALSE), -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", conditional=FALSE), -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212, conditional=FALSE), -290.4883, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212t, model="StMVAR", conditional=FALSE), -290.8789, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122, conditional=FALSE), -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gs, model="G-StMVAR", conditional=FALSE), -303.2403, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222, conditional=FALSE), -241.6249, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222t, model="StMVAR", conditional=FALSE), -241.2498, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", conditional=TRUE), -235.7911, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=500*gdpdef, p=2, M=2, params=theta_222, conditional=FALSE), -960378.7, tolerance=1)
  expect_equal(loglikelihood_int(data=500*gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", conditional=FALSE),
               -5044.579, tolerance=1e-1)

  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112_mu, conditional=FALSE, parametrization="mean"),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112t_mu, model="StMVAR", conditional=FALSE, parametrization="mean"),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212_mu, conditional=FALSE, parametrization="mean"),
               -290.4883, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212t_mu, model="StMVAR", conditional=FALSE, parametrization="mean"),
               -290.8789, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gs_mu, model="G-StMVAR", conditional=FALSE,
                                 parametrization="mean"), -303.2403, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_mu, conditional=FALSE, parametrization="mean"),
               -241.6249, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222t_mu, model="StMVAR", conditional=FALSE,
                                 parametrization="mean"), -241.2498, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_mu, conditional=TRUE, parametrization="mean"),
               -236.5213, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=4, params=theta_142, conditional=FALSE, parametrization="intercept"),
               -226.3188, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 3), params=theta_142gs_1, model="G-StMVAR", conditional=FALSE,
                                 parametrization="intercept"), -228.2573, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=4, params=theta_142, conditional=TRUE, parametrization="intercept"),
               -223.825, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(3, 1), params=theta_142gs_2, model="G-StMVAR", conditional=TRUE,
                                 parametrization="intercept"), -224.2843, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=4, params=theta_142, conditional=TRUE, parametrization="mean"),
               -355.9515, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(2, 2), params=theta_142gs_3, model="G-StMVAR", conditional=TRUE,
                                 parametrization="mean"), -351.7676, tolerance=1e-3)

  # p*d >= 12
  expect_equal(loglikelihood_int(data=data2, p=4, M=1, params=theta_413, conditional=FALSE), -73586.24, tolerance=1e-1)
  expect_equal(loglikelihood_int(data=data2, p=4, M=1, params=theta_413t, model="StMVAR", conditional=FALSE), -8634.684, tolerance=1e-1)
  expect_equal(loglikelihood_int(data=data2, p=3, M=2, params=theta_323, conditional=FALSE), -536.6736, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=data2, p=3, M=c(1, 1), params=theta_323gs, model="G-StMVAR", conditional=FALSE), -537.0112, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=7, M=2, params=theta_722, conditional=FALSE), -202.0608, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=7, M=2, params=theta_722t, model="StMVAR", conditional=FALSE), -215.7163, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=6, M=3, params=theta_632, conditional=FALSE), -179.4021, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=6, M=3, params=theta_632t, model="StMVAR", conditional=FALSE), -174.8772, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=6, M=c(1, 2), params=theta_632gs_1, model="G-StMVAR", conditional=FALSE),
               -172.1303, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=6, M=c(2, 1), params=theta_632gs_2, model="G-StMVAR", conditional=FALSE),
               -180.914, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=8, M=1, params=theta_812, conditional=FALSE), -15542.64, tolerance=1e-1)
  expect_equal(loglikelihood_int(data=gdpdef, p=8, M=1, params=theta_812t, model="StMVAR", conditional=FALSE), -1787.325, tolerance=1e-1)


  # Structural
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112sWC, structural_pars=list(W=W_112), conditional=FALSE),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112tsWC, model="StMVAR", structural_pars=list(W=W_112), conditional=FALSE),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212sWC, structural_pars=list(W=W_212), conditional=FALSE),
               -290.4883, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212tsWC, model="StMVAR", structural_pars=list(W=W_212), conditional=FALSE),
               -256.3104, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122s, structural_pars=list(W=W_122), conditional=FALSE),
               -309.232, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gss, model="G-StMVAR", structural_pars=list(W=W_122),
                                 conditional=FALSE), -300.998, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222s, structural_pars=list(W=W_222), conditional=FALSE),
               -241.6249, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gss, model="G-StMVAR", structural_pars=list(W=W_222),
                                 conditional=FALSE), -270.4163, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222s, structural_pars=list(W=W_222), conditional=TRUE),
               -236.5213, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222ts, model="StMVAR", structural_pars=list(W=W_222), conditional=TRUE),
               -236.4644, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112sWC_mu, structural_pars=list(W=W_112), conditional=FALSE,
                                 parametrization="mean"),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112tsWC_mu, model="StMVAR", structural_pars=list(W=W_112),
                                 conditional=FALSE, parametrization="mean"),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122s_mu, structural_pars=list(W=W_122), conditional=FALSE,
                                 parametrization="mean"),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gss_mu, model="G-StMVAR", structural_pars=list(W=W_122),
                                 conditional=FALSE, parametrization="mean"),
               -300.998, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222s_mu, structural_pars=list(W=W_222), conditional=FALSE,
                                 parametrization="mean"),
               -241.6249, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gss_mu, model="G-StMVAR", structural_pars=list(W=W_222),
                                 conditional=FALSE, parametrization="mean"), -270.4163, tolerance=1e-3)

  # same_means
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112_int, parametrization="mean", same_means=list(1), conditional=FALSE),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112t_int, model="StMVAR", parametrization="mean", same_means=list(1),
                                 conditional=FALSE),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212_int, parametrization="mean", same_means=list(1), conditional=FALSE),
               -290.4883, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212t_int, model="StMVAR", parametrization="mean", same_means=list(1),
                                 conditional=FALSE),
               -290.8789, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122_int, parametrization="mean", same_means=list(1:2), conditional=FALSE),
               -317.2695, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gs_int, model="G-StMVAR", parametrization="mean",
                                 same_means=list(1:2), conditional=FALSE),
               -306.4865, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122_int2, parametrization="mean", same_means=list(1, 2), conditional=FALSE),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_int, parametrization="mean", same_means=list(1:2), conditional=FALSE),
               -245.8273, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222t_int, model="StMVAR", parametrization="mean", same_means=list(1:2),
                                 conditional=FALSE),
               -245.2464, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112sWC_int, parametrization="mean", structural_pars=list(W=W_112),
                                 same_means=list(1), conditional=FALSE),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112tsWC_int, model="StMVAR", parametrization="mean",
                                 structural_pars=list(W=W_112), same_means=list(1), conditional=FALSE),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122s_int, parametrization="mean", structural_pars=list(W=W_122),
                                 same_means=list(1:2), conditional=FALSE),
               -317.2695, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gss_int, model="G-StMVAR", parametrization="mean",
                                 structural_pars=list(W=W_122), same_means=list(1:2), conditional=FALSE),
               -301.4432, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222s_int, parametrization="mean", structural_pars=list(W=W_222),
                                 same_means=list(1:2), conditional=FALSE), -245.8273, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222ts_int, model="StMVAR", parametrization="mean",
                                 structural_pars=list(W=W_222), same_means=list(1:2), conditional=FALSE),
               -244.1752, tolerance=1e-3)

  # Fixed alphas and lambdas
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122w, conditional=FALSE, model="GMVAR", weight_constraints=0.6),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122ws, conditional=FALSE, model="GMVAR",
                                 weight_constraints=0.6, structural_pars=list(W=W_122)),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tsF, conditional=FALSE, model="StMVAR",
                                 structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))),
               -287.6108, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tsF, conditional=FALSE, model="StMVAR",
                                 structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))),
               -287.6108, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=c(1, 1), params=theta_122gswsF, conditional=FALSE, model="G-StMVAR", weight_constraints=0.6,
                                 structural_pars=list(W=W_122, fixed_lambdas=c(3.4, 0.86))),
               -301.4034, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222tw, conditional=FALSE, model="StMVAR", weight_constraints=0.37),
               -241.2498, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gssF, conditional=FALSE,  model="G-StMVAR",
                                 structural_pars=list(W=W_222, fixed_lambdas=c(5.4, 3.6))), -240.9397, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222wsF, conditional=FALSE, model="GMVAR", weight_constraints=0.37,
                                 structural_pars=list(W=W_222, fixed_lambdas=c(5.4, 3.6))),
               -241.6253, tolerance=1e-3)

})


# Constraining AR-parameters to be the same for all regimes
rbind_diags <- function(p, M, d) {
  I <- diag(p*d^2)
  Reduce(rbind, replicate(M, I, simplify=FALSE))
}

# p=1, M=1, d=2
C_112 <- rbind_diags(p=1, M=1, d=2)
theta_112c <- c(phi10_112, vec(A11_112), vech(Omega1_112))

theta_112csWAR <- c(phi10_112, vec(A11_112), Wvec(W_112)) # SGMVAR W and AR

theta_112tc <- c(theta_112c, 10) # StMVAR
theta_112tcsWAR <- c(theta_112csWAR, 10) # SStMVAR

# p=2, M=1, d=2
C_212 <- rbind_diags(p=2, M=1, d=2)
theta_212c <- c(phi10_212, vec(A11_212), vec(A12_212), vech(Omega1_212))

theta_212csWAR <- c(phi10_212, vec(A11_212), vec(A12_212), Wvec(W_212)) # SGMVAR W and AR

theta_212tc <- c(theta_212c, 10) # StMVAR
theta_112tcsWAR <- c(theta_212csWAR, 10) # SStMVAR


# p=1, M=2, d=2
C_122 <- rbind_diags(p=1, M=2, d=2)
theta_122c <- c(phi10_122, phi20_122, vec(A11_122), vech(Omega1_122), vech(Omega2_122), alpha1_122)

C_lambda_122 <- matrix(c(7, 1), nrow=2)
theta_122csLAR <- c(phi10_122, phi20_122, vec(A11_122), vec(W_122), 1, alpha1_122) # SGMVAR lambdas and AR

theta_122tc <- c(theta_122c, 10, 20) # StMVAR
theta_122tcsLAR <- c(theta_122csLAR, 10, 20) # SStMVAR

# p=2, M=2, d=2
C_222 <- rbind_diags(p=2, M=2, d=2)
theta_222c <- c(phi10_222, phi20_222, vec(A11_222), vec(A12_222), vech(Omega1_222), vech(Omega2_222), alpha1_222)

C_lambda_222 <- matrix(c(1, 2), nrow=2)
theta_222csLAR <- c(phi10_222, phi20_222, vec(A11_222), vec(A12_222), vec(W_222), 0.2, alpha1_222) # SGMVAR lambdas and AR

theta_222gsc <- c(theta_222c, 20) # G-StMVAR
theta_222gscsLAR <- c(theta_222csLAR, 20) # SG-StMVAR

# p=2, M=2, d=2, constraint AR-parameters to be the same for all regimes
# and constraint the of-diagonal elements of AR-matrices to be zero.
mat0 <- matrix(c(1, rep(0, 10), 1, rep(0, 8), 1, rep(0, 10), 1), nrow=2*2^2, byrow=FALSE)
C_222_2 <- rbind(mat0, mat0)
A21_222_c2 <- A11_222_c2 <- matrix(c(0.20, 0, 0, 60), nrow=2, byrow=FALSE)
A22_222_c2 <- A12_222_c2 <- matrix(c(0.24, 0, 0, 0.24), nrow=2, byrow=FALSE)
phi10_222_c2 <- c(0.34, 0.18)
phi20_222_c2 <- c(0.47, 0.10)
Omega1_222_c2 <- matrix(c(1.08, -0.02, -0.02, 0.11), nrow=2, byrow=FALSE)
Omega2_222_c2 <- matrix(c(0.22, 0.01, 0.01, 0.03), nrow=2, byrow=FALSE)
alpha1_222_c2 <- 0.35
theta_222_c2 <- c(phi10_222_c2, phi20_222_c2, 0.26, 0.03, -0.01, -0.50, vech(Omega1_222_c2),
                  vech(Omega2_222_c2), alpha1_222_c2)

WL_222c2 <- diag_Omegas(Omega1_222_c2, Omega2_222_c2)
W_222c2 <- matrix(WL_222c2[1:(2^2)], nrow=2, byrow=FALSE)
lambdas_222c2 <- WL_222c2[(2^2 + 1):length(WL_222c2)]
theta_222_c2s <- c(phi10_222_c2, phi20_222_c2, 1.26, 1.34, -0.29, -0.36, vec(W_222c2), lambdas_222c2, alpha1_222_c2) # SGMVAR AR

theta_222t_c2 <- c(theta_222_c2, 40, 50) # StMVAR
theta_222gs_c2s <- c(theta_222_c2s, 20) # G-StMVAR

# Same means
theta_112c_mu <- change_parametrization(p=1, M=1, d=2, params=theta_112c, constraints=C_112, change_to="mean")
theta_122c_mu <- change_parametrization(p=1, M=2, d=2, params=theta_122c, constraints=C_122, change_to="mean")
theta_222c_mu <- change_parametrization(p=2, M=2, d=2, params=theta_222c, constraints=C_222, change_to="mean")
theta_112csWAR_mu <- change_parametrization(p=1, M=1, d=2, params=theta_112csWAR, constraints=C_112, structural_pars=list(W=W_112),
                                            change_to="mean")
theta_122csLAR_mu <- change_parametrization(p=1, M=2, d=2, params=theta_122csLAR, constraints=C_112,
                                            structural_pars=list(W=W_122, C_lambda=C_lambda_122), change_to="mean")
theta_222c2s_mu <- change_parametrization(p=2, M=2, d=2, params=theta_222_c2s, constraints=C_222_2,
                                          structural_pars=list(W=W_222), change_to="mean")

theta_112tcsWAR_mu <- c(theta_112csWAR_mu, 10) # SStMVAR
theta_122tcsLAR_mu <- c(theta_122csLAR_mu, 10, 20) # SStMVAR
theta_222gs_c2s_mu <- c(theta_222c2s_mu, 20) # SG-StMVAR

mu_112c <- theta_112c_mu[1:2]
mu_122c <-  theta_122c_mu[1:4]
mu_222c <-  theta_222c_mu[1:4]
mu_112csWAR <- theta_112csWAR_mu[1:2]
mu_122csLAR <- theta_122csLAR_mu[1:4]
mu_222c2s <- theta_222c2s_mu[1:4]

mu_112tcsWAR <- mu_112csWAR
mu_122tcsLAR <- mu_122csLAR
mu_222gs_c2s <- mu_222c2s

theta_112c_int <- c(mu_112c, vec(A11_112), vech(Omega1_112)) # same_means=list(1)
theta_122c_int <- c(mu_122c, vec(A11_122), vech(Omega1_122), vech(Omega2_122), alpha1_122) # same_means=list(1, 2)
theta_222c_int <- c(mu_222c[1:2], vec(A11_222), vec(A12_222), vech(Omega1_222), vech(Omega2_222), alpha1_222) # same_means=list(1:2)

theta_112csWAR_int <- c(mu_112c, vec(A11_112), Wvec(W_112)) # same_means=list(1), structural_pars=list(W=W_112)
theta_122csLAR_int <- c(mu_122csLAR[1:2], vec(A11_122),
                        vec(W_122), 1, alpha1_122) # same_means=list(1:2), structural_pars=list(W=W_122, C_lambda=C_lambda_122)
theta_222c2s_int <- c(mu_222c2s[1:2], 1.26, 1.34, -0.29, -0.36, vec(W_222c2),
                      lambdas_222c2, alpha1_222_c2) # constraints=C_222_2, same_means=list(1:2), structural_pars=list(W=W_222)

theta_112tcsWAR_int <- c(theta_112csWAR_int, 10) # SStMVAR, same_means=list(1), structural_pars=list(W=W_112)
theta_122tcsLAR_int <- c(theta_122csLAR_int, 10, 20) # SStMVAR, same_means=list(1:2), structural_pars=list(W=W_122, C_lambda=C_lambda_122)
theta_222gs_c2s_int <- c(theta_222c2s_int, 20) # SG-StMVAR, constraints=C_222_2, same_means=list(1:2), structural_pars=list(W=W_222)


## Fixed alphas and lambdas

# p=1, M=2, d=2, model="GMVAR", constraints=C_122, weight_constraints=0.6, structural_pars=list(W=W_122, fixed_lambdas=c(4, 3))
theta_122cwsF <- c(phi10_122, phi20_122, vec(A11_122), vec(W_122))

# p=2, M=2, d=2, model="StMVAR", constraints=C_222, weight_constraints=0.6, structural_pars=list(W=W_222, fixed_lambdas=c(4, 3))
theta_222tcwsF <- c(phi10_222, phi20_222, vec(A11_222), vec(A12_222), vec(W_222), 11, 12)

test_that("loglikelihood_int works correctly for constrained models", {
  # Fixed alphas and lambdas
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122cwsF, conditional=TRUE,  model="GMVAR", constraints=C_122,
                                 weight_constraints=0.6, structural_pars=list(W=W_122, fixed_lambdas=c(4, 3))), -291.4521, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222tcwsF, conditional=FALSE,   model="StMVAR", constraints=C_222,
                                 weight_constraints=0.6, structural_pars=list(W=W_222, fixed_lambdas=c(4, 3))), -272.0245, tolerance=1e-3)

  # Regular
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112c, conditional=FALSE, constraints=C_112), -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112tc, model="StMVAR", conditional=FALSE, constraints=C_112),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212c, conditional=FALSE, constraints=C_212), -290.4883, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212tc, model="StMVAR", conditional=FALSE, constraints=C_212),
               -255.6417, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122c, conditional=TRUE, constraints=C_122), -306.7991, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tc, model="StMVAR", conditional=TRUE, constraints=C_122),
               -284.5369, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222c, conditional=FALSE, constraints=C_222), -295.6763, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gsc, model="G-StMVAR", conditional=FALSE, constraints=C_222),
               -276.795, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_c2, conditional=TRUE, constraints=C_222_2), -2168.156, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222t_c2, model="StMVAR", conditional=TRUE, constraints=C_222_2),
               -1335.491, tolerance=1e-3)

  # Structural
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112csWAR, conditional=FALSE, constraints=C_112,
                                 structural_pars=list(W=W_112)), -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112tcsWAR, model="StMVAR", conditional=FALSE, constraints=C_112,
                                 structural_pars=list(W=W_112)), -613.0763, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=1, params=theta_212csWAR, conditional=FALSE, constraints=C_212,
                                 structural_pars=list(W=W_212)), -290.4883, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122csLAR, conditional=TRUE, constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122)), -310.5903, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tcsLAR, model="StMVAR", conditional=TRUE, constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122)), -291.1435, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222csLAR, conditional=FALSE, constraints=C_222,
                                 structural_pars=list(W=W_222, C_lambda=C_lambda_222)), -602.0334, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gscsLAR, model="G-StMVAR", conditional=FALSE, constraints=C_222,
                                 structural_pars=list(W=W_222, C_lambda=C_lambda_222)), -424.1965, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_c2s, conditional=TRUE, constraints=C_222_2,
                                 structural_pars=list(W=W_222c2)), -472.9432, tolerance=1e-2)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222c2s_mu, conditional=TRUE, constraints=C_222_2,
                                 structural_pars=list(W=W_222c2), parametrization="mean"), -472.9432, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs_c2s_mu, model="G-StMVAR", conditional=TRUE, constraints=C_222_2,
                                 structural_pars=list(W=W_222c2), parametrization="mean"), -469.0494, tolerance=1e-3)

  # Same means
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112c_int, same_means=list(1), conditional=FALSE, constraints=C_112,
                                 parametrization="mean"),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122c_int, same_means=list(1, 2), conditional=FALSE, constraints=C_122,
                                 parametrization="mean"),
               -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222c_int, same_means=list(1:2), conditional=FALSE, constraints=C_222,
                                 parametrization="mean"),
               -284.3073, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112csWAR_int, same_means=list(1), conditional=FALSE, constraints=C_112,
                                 structural_pars=list(W=W_112), parametrization="mean"),
               -1065.2894, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=1, params=theta_112tcsWAR_int, model="StMVAR", same_means=list(1), conditional=FALSE,
                                 constraints=C_112,
                                 structural_pars=list(W=W_112), parametrization="mean"),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122csLAR_int, same_means=list(1:2), conditional=FALSE, constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean"),
               -318.24, tolerance=1e-2)
  expect_equal(loglikelihood_int(data=gdpdef, p=1, M=2, params=theta_122tcsLAR_int, model="StMVAR", same_means=list(1:2), conditional=FALSE,
                                 constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean"),
               -298.1458, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=200*gdpdef, p=1, M=2, params=theta_122csLAR_int, same_means=list(1:2), conditional=FALSE,
                                 constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean"),
               -280885.9, tolerance=1e-1)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222c2s_int, same_means=list(1:2), conditional=FALSE,
                                 constraints=C_222_2,
                                 structural_pars=list(W=W_222c2), parametrization="mean"),
               -490.3359, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs_c2s_int, model="G-StMVAR", same_means=list(1:2),
                                 conditional=FALSE, constraints=C_222_2,
                                 structural_pars=list(W=W_222c2), parametrization="mean"),
               -490.0505, tolerance=1e-3)
})


test_that("user loglikelihood works correctly", {
  # Fixed alphas and lambdas
  expect_equal(loglikelihood(data=gdpdef, p=1, M=2, params=theta_122cwsF, conditional=TRUE,  model="GMVAR", constraints=C_122,
                             weight_constraints=0.6, structural_pars=list(W=W_122, fixed_lambdas=c(4, 3))), -291.4521, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222tcwsF, conditional=FALSE,   model="StMVAR", constraints=C_222,
                             weight_constraints=0.6, structural_pars=list(W=W_222, fixed_lambdas=c(4, 3))), -272.0245, tolerance=1e-3)

  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", conditional=FALSE),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", parametrization="intercept", conditional=FALSE),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222, parametrization="intercept", conditional=TRUE), -236.5213, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", parametrization="intercept", conditional=TRUE),
               -235.7911, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=2, params=theta_122_mu, conditional=FALSE, parametrization="mean"), -309.2328, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=c(1, 1), params=theta_122gs_mu, model="G-StMVAR", conditional=FALSE,
                             parametrization="mean"), -303.2403, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222c, conditional=FALSE, parametrization="intercept",
                             constraints=C_222), -295.6763, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_c2, conditional=TRUE, parametrization="intercept",
                                 constraints=C_222_2), -2168.156, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222t_c2, model="StMVAR", conditional=TRUE,
                                 parametrization="intercept", constraints=C_222_2), -1335.491, tolerance=1e-3)

  # Structural
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112sWC, parametrization="intercept", conditional=FALSE,
                             structural_pars=list(W=W_112)), -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112tsWC, model="StMVAR", parametrization="intercept", conditional=FALSE,
                             structural_pars=list(W=W_112)), -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222s, parametrization="intercept", conditional=TRUE,
                             structural_pars=list(W=W_222)), -236.5213, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222ts, model="StMVAR", parametrization="intercept", conditional=TRUE,
                             structural_pars=list(W=W_222)), -236.4644, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112sWC_mu, conditional=FALSE, parametrization="mean",
                             structural_pars=list(W=W_112)), -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222csLAR, conditional=FALSE, parametrization="intercept", constraints=C_222,
                             structural_pars=list(W=W_222, C_lambda=C_lambda_222)), -602.0334, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=c(1, 1), params=theta_222gscsLAR, model="G-StMVAR", conditional=FALSE,
                             parametrization="intercept", constraints=C_222,
                             structural_pars=list(W=W_222, C_lambda=C_lambda_222)), -424.1965, tolerance=1e-3)
  expect_equal(loglikelihood_int(data=gdpdef, p=2, M=2, params=theta_222_c2s, conditional=TRUE, parametrization="intercept",
                                 constraints=C_222_2, structural_pars=list(W=W_222c2)), -472.9432, tolerance=1e-3)

  # Same means
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112c_int, same_means=list(1), conditional=FALSE,
                             constraints=C_112, parametrization="mean"), -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=2, params=theta_122c_int, same_means=list(1, 2), conditional=FALSE,
                             constraints=C_122, parametrization="mean"), -309.2328, tolerance=1e-2)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222c_int, same_means=list(1:2), conditional=FALSE,
                             constraints=C_222, parametrization="mean"), -284.3073, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112csWAR_int, same_means=list(1), conditional=FALSE, constraints=C_112,
                             structural_pars=list(W=W_112), parametrization="mean"),
               -1065.289, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=1, params=theta_112tcsWAR_int, model="StMVAR", same_means=list(1),
                             conditional=FALSE, constraints=C_112, structural_pars=list(W=W_112), parametrization="mean"),
               -737.8115, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=2, params=theta_122csLAR_int, same_means=list(1:2), conditional=FALSE, constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean"),
               -318.24, tolerance=1e-2)
  expect_equal(loglikelihood(data=gdpdef, p=1, M=2, params=theta_122tcsLAR_int, model="StMVAR", same_means=list(1:2), conditional=FALSE,
                             constraints=C_122, structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean"),
    -298.1458, tolerance=1e-3)
  expect_equal(loglikelihood(data=200*gdpdef, p=1, M=2, params=theta_122csLAR_int, same_means=list(1:2), conditional=FALSE, constraints=C_122,
                                 structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean"),
               -280885.9, tolerance=1e-1)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222c2s_int, same_means=list(1:2), conditional=FALSE, constraints=C_222_2,
                                 structural_pars=list(W=W_222c2), parametrization="mean"),
               -490.3359, tolerance=1e-3)
  expect_error(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222c2s_int, same_means=list(1:2), conditional=FALSE, constraints=C_222_2,
                             structural_pars=list(W=W_222c2), parametrization="intercept"))
  expect_error(loglikelihood(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs_c2s_int, model="G-StMVAR", same_means=list(1:2),
                             conditional=FALSE, constraints=C_222_2, structural_pars=list(W=W_222c2), parametrization="intercept"))
  expect_equal(loglikelihood(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs_c2s_int, model="G-StMVAR", same_means=list(1:2),
                             conditional=FALSE, constraints=C_222_2, structural_pars=list(W=W_222c2), parametrization="mean"),
               -490.0505, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222_int, parametrization="mean", same_means=list(1:2), conditional=FALSE),
               -245.8273, tolerance=1e-3)
  expect_equal(loglikelihood(data=gdpdef, p=2, M=2, params=theta_222s_int, parametrization="mean", structural_pars=list(W=W_222),
                             same_means=list(1:2), conditional=FALSE),
               -245.8273, tolerance=1e-3)
})


test_that("cond_moments works correctly", {
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", to_return="total_ccovs")[, 2, 20],
               c(0.01, 0.07), tolerance=1e-2)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", to_return="regime_cmeans")[1, , 1],
               c(1.174027, 0.948235), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", to_return="regime_ccovs")[, , 13, 1]),
               c(0.60, 0.01, 0.01, 0.07), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", to_return="regime_ccovs")[, , 14, 1]),
               c(0.60, 0.01, 0.01, 0.07), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", to_return="total_cmeans")[100, ],
               c(1.148798, 1.424473), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112, parametrization="intercept", to_return="arch_scalars")[100, ],
               c(1), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", parametrization="intercept",
                            to_return="total_ccovs")[, 2, 20],
               c(0.1111498, 0.7780486), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", parametrization="intercept",
                            to_return="regime_cmeans")[1, , 1],
               c(1.174027, 0.948235), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", parametrization="intercept",
                              to_return="regime_ccovs")[, , 10, 1]),
               c(8.0428623, 0.1340477, 0.1340477, 0.9383339), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", parametrization="intercept",
                            to_return="total_cmeans")[100, ],
               c(1.148798, 1.424473), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112t, model="StMVAR", parametrization="intercept",
                            to_return="arch_scalars")[113, ],
               c(11.71673), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222, parametrization="intercept", to_return="total_ccovs")[1, , 200],
               c(1.099995625, 0.009998022), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222, parametrization="intercept", to_return="total_cmeans")[1, ],
               c(1.2107632, 0.3326596), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", parametrization="intercept",
                            to_return="total_ccovs")[1, , 200],
               c(1.22552239, 0.01113919), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", parametrization="intercept",
                            to_return="total_cmeans")[1, ],
               c(1.2139722, 0.3329077), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", parametrization="intercept",
                              to_return="regime_ccovs")[ , , 13, 1]),
               c(0.21, 0.01, 0.01, 0.03), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", parametrization="intercept",
                              to_return="regime_ccovs")[ , , 13, 2]),
               c(1.08963687, 0.00990579, 0.00990579, 0.10896369), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs, model="G-StMVAR", parametrization="intercept",
                              to_return="arch_scalars")[13,]),
               c(1.000000, 0.990579), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122_mu, parametrization="mean", to_return="total_ccovs")[, 2, 100],
               c(0.005306351, 0.070671908), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222c, parametrization="intercept", constraints=C_222,
                            to_return="total_cmeans")[13, ],
               c(1.3920590, 0.3398279), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=2, params=theta_222c, parametrization="intercept", constraints=C_222,
                              to_return="regime_ccovs")[, 2, 42, ]),
               c(0.01, 0.03, 0.01, 0.11), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222_c2, parametrization="intercept", constraints=C_222_2,
                            to_return="total_ccovs")[ , 2, 13],
               c(-0.008241019, 0.073319271), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222t_c2, model="StMVAR", parametrization="intercept",
                            constraints=C_222_2, to_return="total_ccovs")[ , 2, 13],
               c(-0.007235455, 0.072874057), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=2, params=theta_222t_c2, model="StMVAR", parametrization="intercept", constraints=C_222_2,
                            to_return="regime_ccovs")[ , , 100, 1]),
               c(1.28204272, -0.02374153, -0.02374153, 0.13057842), tolerance=1e-5)


  # Structural
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112sWC, parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="total_ccovs")[, 2, 20], c(0.01, 0.07), tolerance=1e-2)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112sWC, parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="regime_cmeans")[1, , 1], c(1.174027, 0.948235), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112sWC, parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="total_cmeans")[100, ], c( 1.148798, 1.424473), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112tsWC, model="StMVAR", parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="total_ccovs")[, 2, 20], c(0.1111498, 0.7780486), tolerance=1e-2)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112tsWC, model="StMVAR", parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="regime_cmeans")[1, , 1], c(1.174027, 0.948235), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=1, M=1, params=theta_112tsWC, model="StMVAR", parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="regime_ccovs")[, , 2, 1]),
               c(8.3830968, 0.1397183, 0.1397183, 0.9780280), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112tsWC, model="StMVAR", parametrization="intercept",
                            structural_pars=list(W=W_112), to_return="total_cmeans")[100, ], c( 1.148798, 1.424473), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222s, parametrization="intercept",
                            structural_pars=list(W=W_222), to_return="total_ccovs")[1, , 200], c(1.099995625, 0.009998022), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222s, parametrization="intercept",
                            structural_pars=list(W=W_222), to_return="total_cmeans")[1, ], c(1.2107632, 0.3326596), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222s_mu, parametrization="mean",
                            structural_pars=list(W=W_222), to_return="total_ccovs")[, 2, 100], c(-0.01783773, 0.08487145), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=2, params=theta_222s_mu, parametrization="mean",
                            structural_pars=list(W=W_222), to_return="regime_ccovs")[, 2, 13, ]), c(0.01, 0.03, 0.01, 0.11), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gss, model="G-StMVAR", parametrization="intercept",
                            structural_pars=list(W=W_222), to_return="total_ccovs")[1, , 200], c(2.69172894, 0.02445033), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gss, model="G-StMVAR", parametrization="intercept",
                            structural_pars=list(W=W_222), to_return="total_cmeans")[1, ], c(1.4952454, 0.3546485), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gss_mu, model="G-StMVAR", parametrization="mean",
                            structural_pars=list(W=W_222), to_return="total_ccovs")[, 2, 100], c(-0.001085584, 0.040594149), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222csLAR, parametrization="intercept",
                            constraints=C_222, structural_pars=list(W=W_222, C_lambda=C_lambda_222), to_return="total_cmeans")[13, ],
               c(1.3460926, 0.3589806), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gscsLAR, model="G-StMVAR", parametrization="intercept",
                            constraints=C_222, structural_pars=list(W=W_222, C_lambda=C_lambda_222), to_return="total_cmeans")[13, ],
               c(1.3638536, 0.3515802), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gscsLAR, model="G-StMVAR", parametrization="intercept",
                            constraints=C_222, structural_pars=list(W=W_222, C_lambda=C_lambda_222), to_return="regime_ccovs")[ 2, , 98,]),
               c(0.01000000, 0.03000000, 0.01573479, 0.02699613), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222_c2s, parametrization="intercept",
                            constraints=C_222_2, structural_pars=list(W=W_222c2), to_return="total_ccovs")[ , 2, 13],
               c(-0.01999998, 0.10999991), tolerance=1e-5)

  # Same means
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112c_int, same_means=list(1), constraints=C_112, parametrization="mean",
                            to_return="regime_cmeans")[2, , 1],
               c(1.2825737, 0.8828394), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122c_int, same_means=list(1, 2), constraints=C_122, parametrization="mean",
                            to_return="total_ccovs")[2, , 200],
               c(-0.01446378, 0.14487362), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222c_int, same_means=list(1:2), constraints=C_222, parametrization="mean",
                            to_return="total_cmeans")[1,],
               c(1.6388497, 0.3657483), tolerance=1e-3)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112csWAR_int, same_means=list(1), constraints=C_112,
                            structural_pars=list(W=W_112), parametrization="mean",
                            to_return="total_cmeans")[1, ],
               c(1.174027, 0.948235), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=1, params=theta_112tcsWAR_int, model="StMVAR", same_means=list(1),
                            constraints=C_112, structural_pars=list(W=W_112), parametrization="mean",
                            to_return="total_cmeans")[1, ],
               c(1.174027, 0.948235), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122csLAR_int, same_means=list(1:2), constraints=C_122,
                             structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean", to_return="total_ccovs")[1, , 100],
               c(0.5812121401, 0.0003112651), tolerance=1e-5)
  expect_equal(cond_moments(data=200*gdpdef, p=1, M=2, params=theta_122csLAR_int, same_means=list(1:2), constraints=C_122,
                             structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean", to_return="regime_cmeans")[1, , 2],
               c(130.61308, 52.88054), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122tcsLAR_int, model="StMVAR", same_means=list(1:2), constraints=C_122,
                            structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean", to_return="total_ccovs")[1, , 100],
               c(0.6131236874, -0.0001219459), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122tcsLAR_int, model="StMVAR", same_means=list(1:2), constraints=C_122,
                            structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean", to_return="arch_scalars")[2, ],
               c(1.263508, 1.059650), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=1, M=2, params=theta_122tcsLAR_int, model="StMVAR", same_means=list(1:2), constraints=C_122,
                            structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean", to_return="regime_ccovs")[2 , , 22, ]),
               c(0.008892241, 0.053353447, -0.031536334, 0.379448757), tolerance=1e-5)
  expect_equal(cond_moments(data=200*gdpdef, p=1, M=2, params=theta_122tcsLAR_int, model="StMVAR", same_means=list(1:2), constraints=C_122,
                            structural_pars=list(W=W_122, C_lambda=C_lambda_122), parametrization="mean", to_return="regime_cmeans")[1, , 2],
               c(130.61308, 52.88054), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222c2s_int, same_means=list(1:2), constraints=C_222_2,
                             structural_pars=list(W=W_222c2), parametrization="mean", to_return="total_ccovs")[, 2, 13],
               c(-0.02, 0.11), tolerance=1e-2)
  expect_equal(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs_c2s_int, model="G-StMVAR", same_means=list(1:2),
                            constraints=C_222_2, structural_pars=list(W=W_222c2), parametrization="mean", to_return="total_ccovs")[, 2, 13],
               c(-0.01940003, 0.11024089), tolerance=1e-5)
  expect_equal(c(cond_moments(data=gdpdef, p=2, M=c(1, 1), params=theta_222gs_c2s_int, model="G-StMVAR", same_means=list(1:2),
                              constraints=C_222_2, structural_pars=list(W=W_222c2), parametrization="mean",
                              to_return="regime_ccovs")[, 1, 3, ]),
               c(1.08000000, -0.02000000, 0.97192655, 0.04417848), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222_int, parametrization="mean", same_means=list(1:2),
                            to_return="total_cmeans")[13,],
               c(1.1300052, 0.3267675), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222s_int, parametrization="mean", structural_pars=list(W=W_222),
                            same_means=list(1:2), to_return="total_ccovs")[2, , 1],
               c(0.01160004, 0.10666026), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222s_int, parametrization="mean", structural_pars=list(W=W_222),
                            same_means=list(1:2), to_return="arch_scalars")[22, ],
               c(1, 1), tolerance=1e-4)

  # Fixed W and lambdas
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222tcwsF, model="StMVAR", constraints=C_222, weight_constraints=0.6,
                            structural_pars=list(W=W_222, fixed_lambdas=c(4, 3)), parametrization="intercept",
                            to_return="total_ccovs")[1, , 200],
               c(1.25446498, 0.02463912), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222tcwsF, model="StMVAR", constraints=C_222, weight_constraints=0.6,
                            structural_pars=list(W=W_222, fixed_lambdas=c(4, 3)), parametrization="intercept",
                            to_return="regime_ccovs")[1, 2, 1:3, 2],
               c(0.01330105, 0.01562028, 0.01284894), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222tcwsF, model="StMVAR", constraints=C_222, weight_constraints=0.6,
                            structural_pars=list(W=W_222, fixed_lambdas=c(4, 3)), parametrization="intercept",
                            to_return="arch_scalars")[1, ],
               c(1.7549036, 0.8493037), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222tcwsF, model="StMVAR", constraints=C_222, weight_constraints=0.6,
                            structural_pars=list(W=W_222, fixed_lambdas=c(4, 3)), parametrization="intercept",
                            to_return="total_cmeans")[2,],
               c(1.3659545, 0.2513809), tolerance=1e-5)
  expect_equal(cond_moments(data=gdpdef, p=2, M=2, params=theta_222tcwsF, model="StMVAR", constraints=C_222, weight_constraints=0.6,
                            structural_pars=list(W=W_222, fixed_lambdas=c(4, 3)), parametrization="intercept",
                            to_return="regime_cmeans")[2, , 1],
               c(1.2546271, 0.2977673), tolerance=1e-5)

  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122cwsF, model="GMVAR", constraints=C_122, weight_constraints=0.6,
                            structural_pars=list(W=W_122, fixed_lambdas=c(4, 3)),
                            to_return="total_cmeans")[13,],
               c(1.094821, 0.591210), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122cwsF, model="GMVAR", constraints=C_122, weight_constraints=0.6,
                            structural_pars=list(W=W_122, fixed_lambdas=c(4, 3)),
                            to_return="regime_cmeans")[1, , 2],
               c(0.8203154, 0.5138527), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122cwsF, model="GMVAR", constraints=C_122, weight_constraints=0.6,
                            structural_pars=list(W=W_122, fixed_lambdas=c(4, 3)),
                            to_return="total_ccovs")[2, , 2],
               c(0.003061501, 0.109976297), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122cwsF, model="GMVAR", constraints=C_122, weight_constraints=0.6,
                            structural_pars=list(W=W_122, fixed_lambdas=c(4, 3)),
                            to_return="regime_ccovs")[1, 1, 1:3, 2],
               c(1.740931, 1.740931, 1.740931), tolerance=1e-4)
  expect_equal(cond_moments(data=gdpdef, p=1, M=2, params=theta_122cwsF, model="GMVAR", constraints=C_122, weight_constraints=0.6,
                            structural_pars=list(W=W_122, fixed_lambdas=c(4, 3)),
                            to_return="arch_scalars")[13,],
               c(1, 1), tolerance=1e-4)
})

# GMVAR(1,2), d=2 model:
params12_res <- c(0.55, 0.112, 0.344, 0.055, -0.009, 0.718, 0.319, 0.005, 0.03, 0.619,
                  0.173, 0.255, 0.017, -0.136, 0.858, 1.185, -0.012, 0.136, 0.674)
mod12 <- GSMVAR(gdpdef, p=1, M=2, params=params12_res)

# Structural GMVAR(2, 2), d=2 model identified with sign-constraints:
params22s_res <- c(0.36, 0.121, 0.484, 0.072, 0.223, 0.059, -0.151, 0.395, 0.406,
                   -0.005, 0.083, 0.299, 0.218, 0.02, -0.119, 0.722, 0.093, 0.032,
                   0.044, 0.191, 0.057, 0.172, -0.46, 0.016, 3.518, 5.154, 0.58)
W_22 <- matrix(c(1, 1, -1, 1), nrow=2, byrow=FALSE)
mod22s <- GSMVAR(gdpdef, p=2, M=2, params=params22s_res, structural_pars=list(W=W_22))


test_that("Pearson_residuals works correctly", {
  expect_equal(c(Pearson_residuals(mod12, standardize=FALSE)[c(1, 4, 243),]),
               c(1.07489241, 1.60369335, -0.31199389, -0.23634526, -0.01831502, 0.02202414), tolerance=1e-3)
  expect_equal(c(Pearson_residuals(mod12, standardize=TRUE)[c(1, 4, 243),]),
               c(1.5124979, 2.6220673, -0.5171295, -1.0369499, -0.1597798, 0.1296506), tolerance=1e-3)
  expect_equal(c(Pearson_residuals(mod22s, standardize=FALSE)[c(1, 113, 242),]),
               c(-1.26731455, 0.01990527, -0.35979556, 0.03551300, 0.10803703, -0.04732589), tolerance=1e-3)
  expect_equal(c(Pearson_residuals(mod22s, standardize=TRUE)[c(1, 113, 242),]),
               c(-1.40499180, 0.03696637, -0.72910091, 0.14427742, 0.60062820, -0.25027977), tolerance=1e-3)
})
saviviro/gmvarkit documentation built on March 8, 2024, 4:15 a.m.