R version 4.4.1 (2024-06-14 ucrt) -- "Race for Your Life" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > ############################################################################ > # MLwiN MCMC Manual > # > # 8 Running a Simulation Study in MLwiN . . . . . . . . . . . . . . . . 97 > # > # Browne, W.J. (2009) MCMC Estimation in MLwiN, v2.13. Centre for > # Multilevel Modelling, University of Bristol. > ############################################################################ > # R script to replicate all analyses using R2MLwiN > # > # Zhang, Z., Charlton, C., Parker, R, Leckie, G., and Browne, W.J. > # Centre for Multilevel Modelling, 2012 > # http://www.bristol.ac.uk/cmm/software/R2MLwiN/ > ############################################################################ > > # 8.1 JSP dataset simulation study . . . . . . . . . . . . . . . . . . . .97 > > # 8.2 Setting up the structure of the dataset . . . . . . . . . . . . . . 98 > > library(R2MLwiN) R2MLwiN: A package to run models implemented in MLwiN from R Copyright 2013-2024 Zhengzheng Zhang, Christopher M. J. Charlton, Richard M. A. Parker, William J. Browne and George Leckie Support provided by the Economic and Social Research Council (ESRC) (Grants RES-149-25-1084, RES-576-25-0032 and ES/K007246/1) To cite R2MLwiN in publications use: Zhengzheng Zhang, Richard M. A. Parker, Christopher M. J. Charlton, George Leckie, William J. Browne (2016). R2MLwiN: A Package to Run MLwiN from within R. Journal of Statistical Software, 72(10), 1-43. doi:10.18637/jss.v072.i10 A BibTeX entry for LaTeX users is @Article{, title = {{R2MLwiN}: A Package to Run {MLwiN} from within {R}}, author = {Zhengzheng Zhang and Richard M. A. Parker and Christopher M. J. Charlton and George Leckie and William J. Browne}, journal = {Journal of Statistical Software}, year = {2016}, volume = {72}, number = {10}, pages = {1--43}, doi = {10.18637/jss.v072.i10}, } The MLwiN_path option is currently set to C:/Program Files/MLwiN v3.11/ To change this use: options(MLwiN_path="") > # MLwiN folder > mlwin <- getOption("MLwiN_path") > while (!file.access(mlwin, mode = 1) == 0) { + cat("Please specify the root MLwiN folder or the full path to the MLwiN executable:\n") + mlwin <- scan(what = character(0), sep = "\n") + mlwin <- gsub("\\", "/", mlwin, fixed = TRUE) + } > options(MLwiN_path = mlwin) > > # User's input if necessary > > # 8.3 Generating simulated datasets based on true values . . . . . . . . 102 > > # 8.4 Fitting the model to the simulated datasets . . . . . . . . . . . .106 > > pupil <- 1:108 > school <- c(rep(1, 18), rep(2, 18), rep(3, 18), rep(4, 18), rep(5, 18), rep(6, 18)) > cons <- rep(1, 108) > > ns <- 100 > IGLS_array <- MCMC_array <- array(, c(3, 2, ns)) > MCMC_median <- data.frame(RP2_var_Intercept = rep(0, ns), RP1_var_Intercept = rep(0, ns)) > CounterMCMC <- rep(0, 3) > Actual <- c(30, 10, 40) > > simu <- function(i) { + u_short <- rnorm(6, 0, sqrt(Actual[2])) + u <- rep(u_short, each = 18, len = 108) + e <- rnorm(108, 0, sqrt(Actual[3])) + resp <- Actual[1] * cons + u + e + indata <- data.frame(cbind(pupil, school, cons, resp)) + simModelIGLS <- runMLwiN(resp ~ 1 + (1 | school) + (1 | pupil), data = indata) + simModelMCMC <- runMLwiN(resp ~ 1 + (1 | school) + (1 | pupil), estoptions = list(EstM = 1), + data = indata) + + quantile25 <- c(quantile(simModelMCMC@chains[, "FP_Intercept"], 0.025), + quantile(simModelMCMC@chains[, "RP2_var_Intercept"], 0.025), + quantile(simModelMCMC@chains[, "RP1_var_Intercept"], 0.025)) + quantile975 <- c(quantile(simModelMCMC@chains[, "FP_Intercept"], 0.975), + quantile(simModelMCMC@chains[, "RP2_var_Intercept"], 0.975), + quantile(simModelMCMC@chains[, "RP1_var_Intercept"], 0.975)) + + list(MCMCarray=cbind(coef(simModelMCMC), diag(vcov(simModelMCMC))), + MCMCmed=c(median(simModelMCMC@chains[, "RP2_var_Intercept"]), + median(simModelMCMC@chains[, "RP1_var_Intercept"])), + IGLSarray=cbind(coef(simModelIGLS), diag(vcov(simModelIGLS))), + quantiles=cbind(quantile25, quantile975)) + } > > RNGkind("L'Ecuyer-CMRG") > set.seed(1) > if (!require(doParallel)) { + warning("doParallel library is not installed, simulations will be run in series") + for (i in 1:ns) { + r[[i]] <- simu(i) + } + } else { + cl <- makeCluster(detectCores(logical = FALSE)) + registerDoParallel(cl) + r <- foreach(i=1:ns, .packages="R2MLwiN") %dopar% { + simu(i) + } + + stopCluster(cl) + unregister <- function() { + env <- foreach:::.foreachGlobals + rm(list=ls(name=env), pos=env) + } + unregister() + } Loading required package: doParallel Loading required package: foreach Loading required package: iterators Loading required package: parallel /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 /nogui option ignored /nogui option ignored ECHO 0 /nogui option ignored ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 723.316163 Burning in for 100 iterations out of 500 -2 * Loglike = 718.205406 Burning in for 150 iterations out of 500 -2 * Loglike = 719.831597 Burning in for 200 iterations out of 500 -2 * Loglike = 724.189645 Burning in for 250 iterations out of 500 -2 * Loglike = 721.856079 Burning in for 300 iterations out of 500 -2 * Loglike = 722.319868 Burning in for 350 iterations out of 500 -2 * Loglike = 725.921484 Burning in for 400 iterations out of 500 -2 * Loglike = 721.590581 Burning in for 450 iterations out of 500 -2 * Loglike = 724.485635 Burning in for 500 iterations out of 500 -2 * Loglike = 721.301403 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 723.538732 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.754368 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.496263 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 725.663813 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 719.434438 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.392256 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.124822 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 725.727588 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.468287 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 715.925977 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.769131 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 719.539562 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.958297 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.121073 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 725.317067 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 717.803391 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 722.736209 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 717.252693 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 728.705927 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 722.940468 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 722.884344 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.162918 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.498243 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 723.263284 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.347928 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 724.717050 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 720.288127 Actual update 1400 of 5000, Stored update 1400 of 5000 /nogui option ignored -2 * Loglike = 724.310388 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 719.970301 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 724.727983 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 718.946526 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 725.196391 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 718.493306 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.483431 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 717.359749 Actual update 1800 of 5000, Stored update 1800 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 717.169000 Actual update 1850 of 5000, Stored update 1850 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 718.542004 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.503354 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 729.203214 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 726.625551 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.131981 Actual update 2100 of 5000, Stored update 2100 of 5000 ECHO 0 -2 * Loglike = 723.156147 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.075795 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.937249 Actual update 2250 of 5000, Stored update 2250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 720.949158 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.158935 Actual update 2350 of 5000, Stored update 2350 of 5000 Burning in for 50 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 733.639311 Actual update 2400 of 5000, Stored update 2400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 713.988392 Burning in for 100 iterations out of 500 -2 * Loglike = 717.959964 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.300061 Burning in for 100 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 711.567154 Burning in for 150 iterations out of 500 -2 * Loglike = 712.381880 Burning in for 150 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 688.914369 Burning in for 100 iterations out of 500 -2 * Loglike = 713.626661 Burning in for 200 iterations out of 500 -2 * Loglike = 712.257095 Burning in for 200 iterations out of 500 -2 * Loglike = 719.101762 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 714.967324 Burning in for 250 iterations out of 500 -2 * Loglike = 718.261263 Burning in for 250 iterations out of 500 -2 * Loglike = 688.398680 Burning in for 150 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 722.514019 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.386609 Burning in for 300 iterations out of 500 -2 * Loglike = 720.003566 Burning in for 300 iterations out of 500 -2 * Loglike = 689.397448 Burning in for 200 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 724.681236 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 722.312262 Burning in for 350 iterations out of 500 -2 * Loglike = 717.435517 Burning in for 100 iterations out of 500 -2 * Loglike = 716.101275 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 695.385078 Burning in for 250 iterations out of 500 -2 * Loglike = 726.141999 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.203923 Burning in for 150 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 720.486804 Burning in for 400 iterations out of 500 -2 * Loglike = 722.143208 Burning in for 400 iterations out of 500 -2 * Loglike = 694.426475 Burning in for 300 iterations out of 500 -2 * Loglike = 711.045351 Burning in for 100 iterations out of 500 -2 * Loglike = 722.578195 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 717.259849 Burning in for 200 iterations out of 500 -2 * Loglike = 718.265733 Burning in for 450 iterations out of 500 -2 * Loglike = 721.316618 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.159234 Burning in for 450 iterations out of 500 -2 * Loglike = 693.364169 Burning in for 350 iterations out of 500 -2 * Loglike = 718.212751 Burning in for 250 iterations out of 500 -2 * Loglike = 713.984357 Burning in for 500 iterations out of 500 -2 * Loglike = 706.750665 Burning in for 150 iterations out of 500 -2 * Loglike = 717.849292 Burning in for 500 iterations out of 500 -2 * Loglike = 723.844234 Actual update 2800 of 5000, Stored update 2800 of 5000 /nogui option ignored -2 * Loglike = 696.463105 Burning in for 400 iterations out of 500 -2 * Loglike = 713.122563 -2 * Loglike = 716.649808 Burning in for 300 iterations out of 500 -2 * Loglike = 706.958291 Burning in for 200 iterations out of 500 -2 * Loglike = 716.808767 -2 * Loglike = 727.832476 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.255944 Burning in for 450 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 719.599308 Burning in for 350 iterations out of 500 -2 * Loglike = 709.297510 Burning in for 250 iterations out of 500 -2 * Loglike = 721.431073 Actual update 2900 of 5000, Stored update 2900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 694.656760 Burning in for 500 iterations out of 500 -2 * Loglike = 717.420978 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 723.272046 Burning in for 400 iterations out of 500 -2 * Loglike = 711.696018 Burning in for 300 iterations out of 500 -2 * Loglike = 721.645161 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.022327 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.770457 Burning in for 450 iterations out of 500 -2 * Loglike = 717.165989 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.883339 Burning in for 350 iterations out of 500 -2 * Loglike = 720.145008 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.512492 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.652630 -2 * Loglike = 719.950421 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.052174 Burning in for 500 iterations out of 500 -2 * Loglike = 715.476677 Burning in for 400 iterations out of 500 -2 * Loglike = 716.084314 -2 * Loglike = 720.732705 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.386504 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.476153 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 709.257306 Burning in for 450 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 724.374058 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.071551 Burning in for 500 iterations out of 500 -2 * Loglike = 714.061380 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 718.573790 Actual update 3150 of 5000, Stored update 3150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.590518 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 721.962097 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.244361 -2 * Loglike = 713.692683 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.744218 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 721.439670 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.717655 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 726.785600 Actual update 350 of 5000, Stored update 350 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 720.966826 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 729.625915 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.486474 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.464878 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 716.765467 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.158777 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.576960 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 724.337086 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.914140 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.957990 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.339719 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.495170 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.421238 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 731.562063 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 688.830632 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.997486 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 717.329412 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.981579 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.252286 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.137691 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.171724 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.770473 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.082417 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.016434 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.972208 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 685.458407 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 727.794353 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.121798 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.016878 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.933707 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.870772 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 701.260097 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.381133 Actual update 300 of 5000, Stored update 300 of 5000 ECHO 0 -2 * Loglike = 723.398167 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.188268 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.400941 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.129200 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.815716 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.315608 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.366485 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.210001 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 717.296681 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.073495 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.825882 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.745117 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 709.657023 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.155327 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.354926 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 709.655039 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.684579 Actual update 450 of 5000, Stored update 450 of 5000 /nogui option ignored -2 * Loglike = 685.865410 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 722.432518 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.518910 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.710773 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.607471 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.492786 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.363528 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 716.275434 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.545935 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.471024 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 715.330761 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.651757 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.420120 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.623801 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.673030 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.170394 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.871644 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.118495 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.728928 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.745352 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.373496 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.846748 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.435604 Actual update 750 of 5000, Stored update 750 of 5000 ECHO 0 -2 * Loglike = 714.642548 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 723.080273 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.385415 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.977787 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.067087 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 719.576784 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.901737 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.638172 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.070969 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.963659 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.772607 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.852179 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.792505 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 725.015605 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 719.368374 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.102606 Actual update 1000 of 5000, Stored update 1000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 714.342437 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 722.254834 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.608064 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 734.612525 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.945106 Actual update 1150 of 5000, Stored update 1150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 689.321522 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.750861 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.162466 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 717.557752 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.762225 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 724.503693 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.801492 Burning in for 100 iterations out of 500 -2 * Loglike = 692.741160 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 711.374151 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.441218 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.047829 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 716.493929 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.113533 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.946513 Burning in for 150 iterations out of 500 -2 * Loglike = 690.881165 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.330797 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.705295 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.705037 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 721.675698 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 720.170408 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.253585 Burning in for 200 iterations out of 500 -2 * Loglike = 691.402278 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.984621 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 717.704875 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.222036 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.717103 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 727.765465 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.970527 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.144122 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.813329 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.766063 Actual update 1150 of 5000, Stored update 1150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 712.721273 Burning in for 250 iterations out of 500 -2 * Loglike = 719.842521 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 719.870813 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.814361 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 688.491316 Actual update 1300 of 5000, Stored update 1300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 711.104680 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 717.224622 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 716.325785 Burning in for 300 iterations out of 500 -2 * Loglike = 720.855397 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.103506 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.719050 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.953050 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.644769 Burning in for 100 iterations out of 500 -2 * Loglike = 708.295038 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.972083 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.641737 Burning in for 350 iterations out of 500 -2 * Loglike = 723.041661 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.688951 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.090708 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.586624 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 680.948627 Burning in for 150 iterations out of 500 -2 * Loglike = 710.086075 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 726.484213 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.797305 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.165152 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.939286 Burning in for 400 iterations out of 500 -2 * Loglike = 722.135091 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.625112 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.839016 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 683.396766 Burning in for 200 iterations out of 500 -2 * Loglike = 715.578262 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 726.365338 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.404277 Burning in for 450 iterations out of 500 -2 * Loglike = 716.905214 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.201987 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.245820 Burning in for 250 iterations out of 500 -2 * Loglike = 691.420288 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 712.090048 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.084823 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 731.485051 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 717.750819 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 714.433043 Burning in for 500 iterations out of 500 -2 * Loglike = 713.929473 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.467343 Burning in for 300 iterations out of 500 -2 * Loglike = 689.714346 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 713.479915 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.179553 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.993443 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.858330 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.216921 -2 * Loglike = 710.596060 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 684.686313 Burning in for 350 iterations out of 500 -2 * Loglike = 686.915692 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 716.176090 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 719.608198 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 716.739194 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 722.658846 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.454019 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.614728 Burning in for 400 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 693.655169 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.253594 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 724.227236 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 717.380977 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 723.497404 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 685.717853 Burning in for 450 iterations out of 500 -2 * Loglike = 719.407001 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.661014 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 688.066525 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 712.573414 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.493137 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 714.132180 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.135074 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.480507 Burning in for 500 iterations out of 500 -2 * Loglike = 719.334896 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 715.602118 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.635002 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.785895 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 710.447593 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.094515 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 728.876931 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.370048 -2 * Loglike = 715.250136 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.646235 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.277706 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.413963 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.356090 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.853678 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.586593 Actual update 4750 of 5000, Stored update 4750 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 716.703133 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.127750 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 688.215836 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 711.605878 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 713.526798 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 712.896943 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 719.291436 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.474846 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.836554 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 716.532048 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 713.422456 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 713.713857 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.744030 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 724.732911 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.921240 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 683.686621 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 718.238192 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.399106 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.796486 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.952343 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.720017 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 725.394627 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.909483 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 679.493730 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.336015 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.919201 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 714.577807 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.789159 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 720.351942 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.060561 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.063502 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 685.412623 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.194257 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.873301 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.248029 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.907019 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.102566 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.115823 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.375383 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.429441 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.130765 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 682.643110 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.890950 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.383012 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.983686 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.926799 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 707.347924 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.282215 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.344585 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.638702 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 697.849016 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.678004 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.307271 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.481077 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.055418 Actual update 2200 of 5000, Stored update 2200 of 5000 /nogui option ignored -2 * Loglike = 694.014528 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.889014 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 677.860271 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.618999 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.498361 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 715.153414 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 718.633682 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.493222 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.896839 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.642140 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.587182 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 681.169846 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 719.313088 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.497120 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.439506 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.349842 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 725.840133 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 679.778732 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.398503 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 715.156936 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 716.557675 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.913396 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.249991 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.501765 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.681183 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 690.442745 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 710.770710 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.035316 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 718.239401 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.430796 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.165464 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 681.189449 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.552113 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.538175 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.264150 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.446773 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.221520 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.348897 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.116986 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.820260 Actual update 850 of 5000, Stored update 850 of 5000 /nogui option ignored -2 * Loglike = 720.524261 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.780929 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.912661 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 726.660535 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 678.427095 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 720.419131 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 687.951397 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.751463 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 710.222390 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 715.389721 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.097298 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 685.334996 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.974343 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.473149 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 722.30 S.D. = 4.1382 S.E.M. = 0.058523 ECHO 0 Execution completed -2 * Loglike = 713.473632 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.160938 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 723.240215 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 721.090903 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 722.931200 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.999405 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 680.957418 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.732146 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 721.461191 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 719.302603 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.700826 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.820880 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.955785 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.679946 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.332995 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.606328 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.144003 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.072238 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.689177 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 683.355245 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.580116 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.697526 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 722.013767 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.285268 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.722757 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.944157 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 688.043192 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.227948 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.182463 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.922644 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 720.228699 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 723.948829 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.850686 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.887482 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.996177 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 713.040425 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 721.975327 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.265688 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.457748 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.378715 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.385246 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.928491 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.461072 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 710.403677 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 711.345271 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 717.683160 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.799309 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.430382 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 718.505251 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 711.347584 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 715.918851 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.949122 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.405617 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.123738 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 683.952603 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.353320 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.149559 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.267081 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 713.010720 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.111461 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.826236 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 684.830699 Actual update 1250 of 5000, Stored update 1250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 716.329961 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.067188 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.623671 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.310349 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.153669 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.692444 Actual update 3000 of 5000, Stored update 3000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 682.206181 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 715.946173 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.516563 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.537534 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.534796 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.096918 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.497226 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 685.209028 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.869743 Burning in for 100 iterations out of 500 -2 * Loglike = 709.035082 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.787497 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.976807 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.929077 Actual update 3200 of 5000, Stored update 3200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 716.438434 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.651822 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.151967 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 682.896146 Burning in for 150 iterations out of 500 -2 * Loglike = 711.982114 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.870428 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 716.678197 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.529866 Actual update 3250 of 5000, Stored update 3250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 715.617723 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 718.433112 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.988358 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.409307 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 683.815156 Burning in for 200 iterations out of 500 -2 * Loglike = 715.403413 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.884881 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.914644 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.404022 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.008020 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 726.521809 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.918250 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.783878 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 687.003832 Burning in for 250 iterations out of 500 -2 * Loglike = 700.795031 Burning in for 100 iterations out of 500 -2 * Loglike = 689.630521 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.579602 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 720.461721 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 719.996718 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.862178 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 683.676064 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.792506 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.597041 Burning in for 300 iterations out of 500 -2 * Loglike = 696.580241 Burning in for 150 iterations out of 500 -2 * Loglike = 719.091741 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.590079 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.484735 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 718.348542 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.546961 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 681.649109 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.707576 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.502963 Burning in for 350 iterations out of 500 -2 * Loglike = 697.376145 Burning in for 200 iterations out of 500 -2 * Loglike = 707.012149 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.365169 Burning in for 400 iterations out of 500 -2 * Loglike = 714.496308 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.093787 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 686.980560 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 713.207605 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 710.798032 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.987071 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.739518 Burning in for 250 iterations out of 500 -2 * Loglike = 713.354061 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.266624 Burning in for 450 iterations out of 500 -2 * Loglike = 717.836068 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.845404 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.499379 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.816173 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 715.669187 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.812545 Burning in for 300 iterations out of 500 -2 * Loglike = 703.546440 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.354140 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.769860 Burning in for 500 iterations out of 500 -2 * Loglike = 720.149465 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.762214 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.337779 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.405579 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.429512 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.448269 Burning in for 350 iterations out of 500 -2 * Loglike = 689.194505 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.557083 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.331659 -2 * Loglike = 713.464755 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 724.353282 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 679.062478 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 717.041499 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.328136 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.022796 Burning in for 400 iterations out of 500 -2 * Loglike = 693.536573 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 718.822808 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.618677 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.132255 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.741431 Actual update 1850 of 5000, Stored update 1850 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 718.851263 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 719.318313 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.058135 Burning in for 450 iterations out of 500 -2 * Loglike = 691.044137 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.877718 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.014818 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 705.609176 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 680.937175 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.435713 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.279960 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 713.490691 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.958713 Burning in for 500 iterations out of 500 -2 * Loglike = 694.442386 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.913189 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.547496 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.788378 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 681.771416 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.779457 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 725.103387 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 719.878512 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.788935 -2 * Loglike = 686.440521 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 714.551891 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 728.565420 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 711.161722 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.018380 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 715.322194 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 681.107257 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 722.832797 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 689.163414 Actual update 3650 of 5000, Stored update 3650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 711.434797 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.243110 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 711.631655 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.452121 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 716.664938 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 685.919478 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 722.519515 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 690.162672 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 700.772648 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.574870 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.799319 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 681.540768 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 705.837142 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 722.524504 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 684.645996 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.807210 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.590007 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.711412 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 725.996924 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.780178 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 686.194284 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.255986 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 719.337583 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.224165 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.683765 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.353230 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.981982 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 722.666497 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 712.302418 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.552459 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 684.343163 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 716.755943 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 679.892383 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.433258 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 691.433432 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.309542 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.805507 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.629510 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.604933 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 683.125823 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.669868 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.795030 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.914429 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.725947 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.850632 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.024320 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.189150 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.708890 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 683.073394 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.517281 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 684.153014 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.644074 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.120414 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 712.197115 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 716.771585 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 711.959295 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.771115 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.178668 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 718.312004 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 681.261274 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.643167 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.243560 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 693.814709 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.189919 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 717.885801 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 721.055889 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 718.731384 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 721.583096 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.053852 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.776022 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.375970 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.805032 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.298650 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.840564 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.073303 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 716.460671 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.679281 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.206608 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.521774 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.940261 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 696.724242 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.792161 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 711.185522 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.578417 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 720.179444 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.000558 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.527340 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.044797 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.412531 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.485563 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 682.177303 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.611725 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.880056 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 717.157934 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.457476 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 680.461273 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 720.787697 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 689.378841 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.176130 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.361846 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.770697 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.717979 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 718.276369 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.929242 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 688.950156 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.602970 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 687.376157 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.100030 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.371653 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 721.785658 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 707.908989 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 724.364759 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.933512 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.328401 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 681.947569 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.421037 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.568733 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.426053 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 720.782004 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.123172 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.917232 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.403258 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 727.112153 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 686.971261 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.745535 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.678626 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 685.176752 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 717.659046 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.878705 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.619121 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.550449 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.910497 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.970926 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 695.089259 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.015972 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 683.870272 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 725.041869 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.132982 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 710.708623 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.154988 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.687827 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 688.382511 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.602326 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.835914 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.047912 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.000566 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.152213 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.972686 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 712.876091 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.339108 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 684.255407 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.475700 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.695382 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.395584 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 722.495359 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.013719 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 713.336900 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.662902 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 711.468332 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 688.191246 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.933868 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.512632 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 683.779507 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 711.590139 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 719.343007 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.541499 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.934226 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.009071 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.624196 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.823355 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 710.128249 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 682.456139 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.155889 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.120654 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.563901 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 711.418354 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.002659 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 686.147273 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 690.712661 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.269516 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 679.482781 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.914376 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 714.118240 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 711.197186 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 711.859047 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 726.541973 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 686.570316 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.572436 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.476846 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 682.345711 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.905078 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.322013 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.448027 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 719.050076 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 713.751855 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 685.406259 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.622651 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.637257 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 683.351506 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 721.500156 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.742153 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 715.857765 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.290034 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 724.685509 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.428000 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 685.360350 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.208936 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 682.059104 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 718.768206 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 689.465141 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 706.974454 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.922715 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.058199 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.301149 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.334463 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 682.476194 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.017449 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.083648 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 716.932773 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 685.339735 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 716.598267 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 698.817264 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.018210 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.386384 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.186530 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.236864 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 685.021748 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.452126 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.458588 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 694.435714 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.585474 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.668757 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.762860 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.518615 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.333387 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.722413 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.436074 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.592124 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.251271 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.154471 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 681.361689 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.758599 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 711.720709 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.124299 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.889613 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 687.513983 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.933581 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.618058 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 684.256815 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.267716 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 681.342231 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.256316 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.785061 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 683.742512 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 687.246550 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.918613 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 714.397231 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 678.823458 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.764476 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 681.682510 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.356265 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 681.409429 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 721.030207 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.186407 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 683.052457 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.594919 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.50 S.D. = 4.3285 S.E.M. = 0.061214 ECHO 0 Execution completed -2 * Loglike = 711.263061 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.37 S.D. = 4.2258 S.E.M. = 0.059762 ECHO 0 Execution completed -2 * Loglike = 688.703685 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 717.116334 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 701.422999 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.402624 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 681.117095 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.989138 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.496669 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.532372 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.403090 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.076824 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 684.628783 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.052166 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.101980 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.28 S.D. = 2.4339 S.E.M. = 0.034421 ECHO 0 Execution completed -2 * Loglike = 710.558745 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.266524 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.870653 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 690.507503 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 718.806056 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.881114 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.84 S.D. = 4.0638 S.E.M. = 0.057470 ECHO 0 Execution completed -2 * Loglike = 697.341683 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.298586 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.858893 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 687.554783 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.27 S.D. = 4.3397 S.E.M. = 0.061372 ECHO 0 Execution completed -2 * Loglike = 716.514434 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.928242 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.919369 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 686.359184 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.948350 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.904341 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 681.914976 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.283976 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.996562 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 687.713250 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 681.522973 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 713.842538 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.093929 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.123156 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.693798 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.416826 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.326832 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 683.667776 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 681.821094 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.443321 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.022359 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 682.024146 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.753067 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 679.863984 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.389447 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 685.246306 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 718.748657 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.283144 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 687.576848 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 689.557143 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 720.058254 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.514713 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 683.385861 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.398906 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.573456 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 713.335589 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 688.188072 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.240912 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 688.586982 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.622077 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.022958 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 686.143299 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.542535 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 714.487185 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 681.770170 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 689.126329 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.971139 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.061210 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.792116 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.117858 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 711.816421 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 684.804840 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.539797 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 687.457993 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 688.962384 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 721.107486 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.314148 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.338602 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.316310 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.593614 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 716.287374 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 686.653690 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 699.531751 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.421171 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.124233 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 680.704892 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.110771 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 684.834456 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.770742 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.314059 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 681.523194 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.403580 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.672859 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.241902 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 684.069750 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.037257 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.175600 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.209393 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.432593 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 682.269369 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 687.353581 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.016882 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.437853 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.806390 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.163481 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.103688 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.492032 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.969797 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 688.444031 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 681.375909 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.513835 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.247824 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.032359 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 715.64 S.D. = 3.0959 S.E.M. = 0.043782 ECHO 0 Execution completed -2 * Loglike = 701.493020 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 682.017102 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.885413 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.393377 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 682.285224 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.145450 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.104569 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 679.504123 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.79 S.D. = 4.2140 S.E.M. = 0.059595 ECHO 0 Execution completed -2 * Loglike = 694.144541 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.519839 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 690.500670 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.061750 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 682.177740 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.532769 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.304545 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.301937 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.367483 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.153895 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.775201 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 683.485330 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 682.489455 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 690.618403 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 684.346789 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 691.539383 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.294241 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.185759 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 682.353315 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.631629 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 693.694013 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.427326 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.467497 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.912636 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 694.026709 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.841035 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.029447 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.498368 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.738742 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 684.691506 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 709.600831 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.117935 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.081577 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.061494 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 695.695799 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 684.370193 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.959304 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 694.897443 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.301910 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.353339 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.521936 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.310241 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.847432 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 704.766920 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.386493 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.348538 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.876825 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.837320 Actual update 4600 of 5000, Stored update 4600 of 5000 /nogui option ignored -2 * Loglike = 697.472272 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 710.518464 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.615399 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 681.755788 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.83 S.D. = 4.1574 S.E.M. = 0.058795 ECHO 0 Execution completed -2 * Loglike = 698.623999 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.580583 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 702.528319 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.915568 Actual update 4950 of 5000, Stored update 4950 of 5000 ECHO 0 -2 * Loglike = 697.001100 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 695.748005 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.73 S.D. = 4.0289 S.E.M. = 0.056977 ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 691.269271 Burning in for 100 iterations out of 500 -2 * Loglike = 687.019282 Burning in for 150 iterations out of 500 -2 * Loglike = 689.258505 Burning in for 200 iterations out of 500 -2 * Loglike = 687.600783 Burning in for 250 iterations out of 500 -2 * Loglike = 690.973027 Burning in for 300 iterations out of 500 -2 * Loglike = 688.180188 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 694.635779 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 692.942396 Burning in for 450 iterations out of 500 -2 * Loglike = 690.443183 Burning in for 500 iterations out of 500 -2 * Loglike = 692.780885 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.564186 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.316411 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 685.965183 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 702.532219 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 698.135835 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.954174 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 684.741225 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.123506 Actual update 450 of 5000, Stored update 450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 688.345584 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 686.148123 Actual update 550 of 5000, Stored update 550 of 5000 /nogui option ignored -2 * Loglike = 688.633620 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 688.449571 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.341812 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 685.183051 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.012235 Actual update 800 of 5000, Stored update 800 of 5000 /nogui option ignored -2 * Loglike = 689.534650 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 690.385969 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.082814 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 703.743223 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 696.264597 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.143419 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 689.794491 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.935731 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 690.846508 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.554168 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.063338 Actual update 1350 of 5000, Stored update 1350 of 5000 ECHO 0 -2 * Loglike = 694.248628 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.219716 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.987351 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.474861 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.196233 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 704.215513 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.297772 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.227929 Actual update 1750 of 5000, Stored update 1750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 686.217266 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.453161 Burning in for 100 iterations out of 500 -2 * Loglike = 701.495238 Burning in for 150 iterations out of 500 -2 * Loglike = 684.123697 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.334657 Burning in for 200 iterations out of 500 -2 * Loglike = 688.010154 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.660595 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.773317 Burning in for 250 iterations out of 500 -2 * Loglike = 696.173125 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.329214 Burning in for 300 iterations out of 500 -2 * Loglike = 696.585531 Actual update 2050 of 5000, Stored update 2050 of 5000 /nogui option ignored -2 * Loglike = 704.653802 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... /nogui option ignored -2 * Loglike = 689.957910 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.562363 Burning in for 400 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 707.023130 Burning in for 450 iterations out of 500 -2 * Loglike = 687.598458 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.515937 Burning in for 100 iterations out of 500 -2 * Loglike = 707.688702 Burning in for 500 iterations out of 500 -2 * Loglike = 690.245413 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.761437 Burning in for 150 iterations out of 500 -2 * Loglike = 708.214171 -2 * Loglike = 688.865938 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.116961 Burning in for 200 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.398273 Actual update 2300 of 5000, Stored update 2300 of 5000 ECHO 0 -2 * Loglike = 694.457801 Burning in for 250 iterations out of 500 -2 * Loglike = 707.624987 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 689.053929 Actual update 2350 of 5000, Stored update 2350 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 696.091457 Burning in for 300 iterations out of 500 -2 * Loglike = 700.916798 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.300006 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 693.759078 Burning in for 350 iterations out of 500 -2 * Loglike = 689.988687 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.027425 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.337709 Burning in for 400 iterations out of 500 -2 * Loglike = 690.859481 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.410550 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.564145 Burning in for 450 iterations out of 500 -2 * Loglike = 701.181825 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.135561 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.865789 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.234176 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.200060 Burning in for 500 iterations out of 500 -2 * Loglike = 717.475172 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 689.277097 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.722444 -2 * Loglike = 698.917320 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.746676 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.844394 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.196783 Actual update 2800 of 5000, Stored update 2800 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 703.960385 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 689.579269 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.832991 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.225965 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.280531 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 690.913871 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.564377 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 693.213913 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 692.034681 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.513203 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.605084 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.054422 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 699.426538 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 691.006343 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 707.592679 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 687.781499 Actual update 3100 of 5000, Stored update 3100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 698.328968 Actual update 250 of 5000, Stored update 250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 702.660427 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.291667 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 720.077101 Burning in for 100 iterations out of 500 -2 * Loglike = 693.461675 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.343848 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.273285 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.895968 Burning in for 150 iterations out of 500 -2 * Loglike = 708.527334 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.528713 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.835715 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.700096 Burning in for 200 iterations out of 500 -2 * Loglike = 696.229768 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.790514 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 696.940971 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 726.556742 Burning in for 250 iterations out of 500 -2 * Loglike = 689.258445 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.831079 Actual update 1050 of 5000, Stored update 1050 of 5000 ECHO 0 -2 * Loglike = 694.502399 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.255111 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 709.759491 Actual update 450 of 5000, Stored update 450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 726.365093 Burning in for 300 iterations out of 500 -2 * Loglike = 693.115318 Actual update 3450 of 5000, Stored update 3450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 703.679373 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.152274 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 725.432287 Burning in for 350 iterations out of 500 -2 * Loglike = 689.464188 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.206594 Burning in for 100 iterations out of 500 -2 * Loglike = 692.536913 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.471058 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.545125 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.364378 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.837454 Burning in for 150 iterations out of 500 -2 * Loglike = 686.095890 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 729.697892 Burning in for 400 iterations out of 500 -2 * Loglike = 691.781866 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 686.883267 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.591761 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.171739 Burning in for 200 iterations out of 500 -2 * Loglike = 727.924565 Burning in for 450 iterations out of 500 -2 * Loglike = 692.113049 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.665264 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.917271 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 689.619684 Burning in for 250 iterations out of 500 -2 * Loglike = 724.807634 Burning in for 500 iterations out of 500 -2 * Loglike = 702.261332 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.622375 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 706.546120 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.760515 Burning in for 300 iterations out of 500 -2 * Loglike = 725.083469 /nogui option ignored -2 * Loglike = 685.849654 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.216978 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.255853 Burning in for 350 iterations out of 500 -2 * Loglike = 689.465543 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.792732 Burning in for 400 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 704.023209 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.495300 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.504627 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.962448 Burning in for 450 iterations out of 500 -2 * Loglike = 723.722239 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.794672 Actual update 1550 of 5000, Stored update 1550 of 5000 /nogui option ignored -2 * Loglike = 693.366605 Burning in for 500 iterations out of 500 -2 * Loglike = 701.230308 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 728.144480 Actual update 150 of 5000, Stored update 150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 694.309475 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.922352 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.298672 Burning in for 50 iterations out of 500 -2 * Loglike = 694.188773 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 720.138705 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.389985 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.259200 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 705.618464 Burning in for 100 iterations out of 500 -2 * Loglike = 692.817404 Actual update 4000 of 5000, Stored update 4000 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 727.201042 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.721460 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.518856 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.533359 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.938809 Burning in for 150 iterations out of 500 -2 * Loglike = 693.073320 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.166107 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 738.123309 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.165156 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 699.771260 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 696.722237 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.599057 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.233800 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.886317 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.244471 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.038499 Burning in for 250 iterations out of 500 -2 * Loglike = 704.625760 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 686.424868 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.263921 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 736.338589 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.631542 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.137991 Burning in for 300 iterations out of 500 -2 * Loglike = 696.767421 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.896770 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.231156 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.504202 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 686.534244 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.337098 Burning in for 350 iterations out of 500 -2 * Loglike = 689.617797 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.804102 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.129394 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.990863 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.681097 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.502372 Burning in for 400 iterations out of 500 -2 * Loglike = 704.770220 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.199628 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.856986 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.437605 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 700.233146 Burning in for 450 iterations out of 500 -2 * Loglike = 692.172722 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 685.148251 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.250998 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 707.567758 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 723.260656 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.358504 Burning in for 500 iterations out of 500 -2 * Loglike = 699.708898 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 694.518722 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.960835 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.815585 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.192959 -2 * Loglike = 723.866208 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.182443 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.075228 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.964873 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.775470 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.457278 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 687.608173 Actual update 550 of 5000, Stored update 550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 693.600007 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.836312 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.251457 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 703.761389 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 688.385458 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.172943 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 695.928173 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.116411 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.668327 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.387143 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 687.647656 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.739805 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.693295 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 710.593340 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 724.192605 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.427193 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 690.775320 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.884805 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.066584 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 694.993678 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.011897 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.508570 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.642768 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.006274 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.489588 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 716.738927 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.406755 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.261148 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 688.961030 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.662138 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.302962 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 694.676492 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 688.187676 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 735.185141 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.290393 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 713.630171 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 702.989837 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.603568 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.544216 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.447970 Actual update 1050 of 5000, Stored update 1050 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 692.141905 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.641377 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 713.187318 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.960674 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.250770 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 724.619464 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 682.903344 Burning in for 100 iterations out of 500 -2 * Loglike = 691.899686 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.638630 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 706.850460 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 697.585562 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 724.742383 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.877919 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.065929 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 684.080586 Burning in for 150 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 705.784071 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.563148 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.137583 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.535823 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.811746 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 694.788005 Actual update 5000 of 5000, Stored update 5000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 685.526949 Burning in for 200 iterations out of 500 -2 * Loglike = 698.025444 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.122647 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 690.157519 Burning in for 250 iterations out of 500 -2 * Loglike = 726.834372 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 689.049120 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.713209 Burning in for 100 iterations out of 500 -2 * Loglike = 692.502949 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.017225 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 702.981347 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 685.954771 Burning in for 300 iterations out of 500 -2 * Loglike = 722.895284 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.619074 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 713.519424 Burning in for 150 iterations out of 500 -2 * Loglike = 689.927705 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.855893 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.727167 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 725.108938 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.296190 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.822338 Burning in for 200 iterations out of 500 -2 * Loglike = 687.192988 Burning in for 350 iterations out of 500 -2 * Loglike = 697.623519 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.365304 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 721.216819 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.676879 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.677467 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.746200 Burning in for 250 iterations out of 500 -2 * Loglike = 691.806355 Burning in for 400 iterations out of 500 -2 * Loglike = 705.312189 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 730.432759 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.982560 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.272233 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.043674 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.019023 Burning in for 300 iterations out of 500 -2 * Loglike = 706.391070 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.861194 Burning in for 450 iterations out of 500 -2 * Loglike = 725.354410 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 689.499127 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.741282 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.483904 Burning in for 350 iterations out of 500 -2 * Loglike = 702.114253 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 686.282079 Burning in for 500 iterations out of 500 -2 * Loglike = 723.439773 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.399330 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 693.972566 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.302049 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 721.737900 Burning in for 400 iterations out of 500 -2 * Loglike = 696.770340 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 686.628786 -2 * Loglike = 720.812662 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 706.671133 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.325360 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.216444 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 716.029794 Burning in for 450 iterations out of 500 -2 * Loglike = 701.836648 Actual update 900 of 5000, Stored update 900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 727.610315 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.362396 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.779702 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.961597 Burning in for 500 iterations out of 500 -2 * Loglike = 695.989284 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.769159 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.871041 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.580900 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.591151 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.346688 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.326420 -2 * Loglike = 685.381137 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.51 S.D. = 5.0334 S.E.M. = 0.071183 ECHO 0 Execution completed -2 * Loglike = 705.592327 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.563100 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.062672 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 725.476122 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 690.091510 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.592036 Actual update 3200 of 5000, Stored update 3200 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 701.929938 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.057136 Actual update 2350 of 5000, Stored update 2350 of 5000 ECHO 0 -2 * Loglike = 682.564941 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.271661 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.348787 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.285260 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.807436 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.191923 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.044787 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.194222 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 720.717609 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.187190 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 699.479634 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.981299 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.040180 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.811675 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 685.219367 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 722.337453 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 713.722839 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.595569 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.459082 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.765881 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.622452 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.659913 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.623812 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.580311 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.519250 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.237088 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.255807 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.792139 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.024950 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 732.609992 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.933602 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 686.385197 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.925681 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.771173 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.407796 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.920193 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.829113 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.662186 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.964649 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 729.044770 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 694.101656 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.789292 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.714314 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.301630 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 681.045135 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.593200 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.457305 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 694.235048 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.599900 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 729.577974 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.655392 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.325443 Actual update 550 of 5000, Stored update 550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 716.889601 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.594543 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.865320 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 728.478955 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.238417 Actual update 1950 of 5000, Stored update 1950 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 701.586902 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 681.913723 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 700.376065 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.356456 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.650272 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 722.911295 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 713.970443 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.888835 Burning in for 100 iterations out of 500 -2 * Loglike = 701.844972 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.848064 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 691.506209 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.936509 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.383980 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 724.427424 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.066143 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 696.184395 Burning in for 150 iterations out of 500 -2 * Loglike = 710.509231 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.173171 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 688.339917 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.590943 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.121606 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.065306 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 713.321208 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.307198 Burning in for 200 iterations out of 500 -2 * Loglike = 696.184552 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.063522 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.284827 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.432763 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 733.359325 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.610903 Burning in for 250 iterations out of 500 -2 * Loglike = 714.312061 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 681.811960 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.410251 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.710883 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.876886 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 707.385677 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.290952 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.883665 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.062001 Burning in for 300 iterations out of 500 -2 * Loglike = 686.731863 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.181240 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.254647 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 692.040089 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.887392 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 702.608372 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 711.511356 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 700.768715 Burning in for 350 iterations out of 500 -2 * Loglike = 684.673913 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 709.842138 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 691.843558 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 728.419402 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.564831 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.303848 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 721.063340 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 705.758618 Burning in for 400 iterations out of 500 -2 * Loglike = 686.235663 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.406685 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.793195 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 728.473028 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.292255 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.104381 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.544716 Burning in for 450 iterations out of 500 -2 * Loglike = 685.334462 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.522477 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.613488 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.465435 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.275363 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.242823 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.994363 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.182929 Burning in for 500 iterations out of 500 -2 * Loglike = 701.413435 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.927668 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 685.297868 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 723.196653 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 726.561485 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.749380 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 688.866499 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.632588 -2 * Loglike = 704.999122 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 694.346051 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 724.380426 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.519191 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.911967 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.379154 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.405335 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.336043 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.809447 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 728.628326 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 699.298502 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 696.837848 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.661741 Actual update 1150 of 5000, Stored update 1150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 718.701297 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.953898 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.107553 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 733.295122 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.622213 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.807369 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 686.031852 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.912851 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.351093 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.725172 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.849545 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 724.433536 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.904540 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 689.089764 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.887502 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 700.414662 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.392617 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.120601 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.627406 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 724.322945 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.628007 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.783319 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.330514 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.305388 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.667761 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.886912 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.997196 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.698259 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 723.638694 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.677598 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.509112 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.505400 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.717765 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.295340 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.930216 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.545790 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 724.145639 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 695.090834 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 683.782482 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 697.736447 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.826848 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 697.325014 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.626914 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.984762 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.291060 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.390281 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 712.076385 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.527834 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.672319 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.305220 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.977622 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.893796 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.599398 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 687.678768 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 693.520899 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.660816 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.461423 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.459836 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.073506 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.410688 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 688.832014 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.996711 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.064664 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 723.540644 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.527166 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.001265 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.284993 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.935418 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 682.406155 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 689.205335 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 700.130597 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.963509 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.403783 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.677181 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.221250 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.943315 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.773590 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.270573 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 695.387978 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.458714 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 728.471010 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 715.941353 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 717.783502 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.015203 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.796468 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 687.099547 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.897686 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.175381 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 735.855599 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.630569 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.115788 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.869422 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.101450 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 688.004310 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.671876 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.313833 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.310077 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 702.725397 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.044857 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.402672 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.706380 Actual update 3200 of 5000, Stored update 3200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 682.740367 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 701.430156 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.084022 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 726.016511 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.794878 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.040291 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.111657 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.677649 Actual update 3250 of 5000, Stored update 3250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 683.521392 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.759199 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.097464 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 724.026332 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.238601 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 714.927255 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.817666 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.619072 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.097480 Burning in for 100 iterations out of 500 -2 * Loglike = 703.651883 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.555014 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 694.057742 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 728.338678 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.887635 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.660765 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 683.926140 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 719.872361 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.312027 Burning in for 150 iterations out of 500 -2 * Loglike = 695.545534 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 704.474194 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.487437 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 699.866236 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.277620 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 712.894167 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 684.176351 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 721.975075 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.969579 Burning in for 200 iterations out of 500 -2 * Loglike = 701.660816 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.723343 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.987851 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.236359 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 724.716276 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.789183 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.517628 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.154722 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.889234 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.344316 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.786652 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.302745 Burning in for 250 iterations out of 500 -2 * Loglike = 720.385691 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 730.257418 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.183909 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 695.803742 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.927984 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.235460 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.064332 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.740044 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 705.755900 Burning in for 300 iterations out of 500 -2 * Loglike = 721.785242 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 705.083047 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.512154 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.276487 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.324445 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.673389 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 720.293076 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.790252 Burning in for 350 iterations out of 500 -2 * Loglike = 728.132591 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.440960 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.483893 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 710.205060 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.518691 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.440407 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.634329 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.713521 Burning in for 400 iterations out of 500 -2 * Loglike = 730.126492 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.208154 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.586177 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.407265 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.200157 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.983066 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 714.835447 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 734.024282 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.092349 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.548184 Burning in for 450 iterations out of 500 -2 * Loglike = 697.883119 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.467133 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.876158 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.469271 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 727.922619 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 684.784129 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 715.900017 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.008201 Burning in for 500 iterations out of 500 -2 * Loglike = 702.196521 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.056531 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.73 S.D. = 4.1740 S.E.M. = 0.059029 ECHO 0 Execution completed -2 * Loglike = 699.528669 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.625089 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.733111 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.923430 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 724.239695 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 719.439274 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.432203 -2 * Loglike = 702.355646 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.884035 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.188905 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 690.144308 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 687.195726 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 726.851794 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.909445 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.018149 Actual update 3350 of 5000, Stored update 3350 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 702.912496 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.587844 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 692.135263 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.300658 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.404272 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.357502 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 732.266483 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.414395 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 699.024842 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 697.223783 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 684.892599 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.893373 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.978839 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.268082 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.826511 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 709.673806 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.645014 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.408745 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.927083 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.120583 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.069481 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.196192 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.743836 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 721.193901 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.436399 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.459376 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 693.562912 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.556893 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.190771 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 687.867220 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 730.032019 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.849839 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.876011 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.093706 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 722.231074 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.300910 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 690.820195 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 725.532406 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.791425 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.361210 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.370312 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.156120 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.927048 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.373991 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 728.836641 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.143630 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.970744 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 692.959050 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.499330 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.448963 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.232528 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.922090 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 733.870815 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.610024 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.788205 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 717.096936 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 686.779328 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.154860 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 717.076669 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.120960 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 724.907414 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 698.301784 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.614839 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.728548 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.036719 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.233352 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.342886 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.503657 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 727.473170 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.153512 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 696.959350 Actual update 1900 of 5000, Stored update 1900 of 5000 /nogui option ignored -2 * Loglike = 712.892606 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.349773 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.944822 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.357918 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.907486 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 729.537748 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.788863 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.378104 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 727.290742 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.539573 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 715.373497 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.637179 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.053177 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.984499 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.756589 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.124217 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 684.576375 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 711.674820 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 691.975040 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 699.715363 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 728.077381 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 701.559762 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.104008 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.931704 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 703.773212 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.903254 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.123347 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 721.282885 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.825448 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 723.452099 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 686.505024 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 697.767164 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.916176 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.360533 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.128972 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.233299 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.737902 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.352235 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.837000 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 697.652075 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.121502 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.707361 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.923061 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.024738 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.729217 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 728.270413 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 710.178664 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.708568 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.292587 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 684.204671 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 713.844945 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.516141 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 732.521412 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.016450 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.204652 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.463897 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.607651 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.005652 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 700.902662 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 727.658012 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 685.693038 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.153122 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 689.415406 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.387353 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.455335 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.623560 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 726.039447 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.665292 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.463164 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.411064 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.708503 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.237486 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.246287 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.581313 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 715.609226 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.931667 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.798479 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 726.444691 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.343131 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.02 S.D. = 5.2642 S.E.M. = 0.074447 ECHO 0 Execution completed -2 * Loglike = 697.198012 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.630096 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.025973 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.876325 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.920868 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 712.802426 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 684.417900 Actual update 3400 of 5000, Stored update 3400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 695.828288 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.233243 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.005754 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 698.080380 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.874100 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.463409 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.968394 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.351657 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.081928 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.511420 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 687.282229 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.893514 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.460919 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.385292 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.566376 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.025486 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.646793 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.975246 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.298898 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 712.348127 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.886839 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.595207 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.202079 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.415543 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 687.447749 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 713.549680 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.357497 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.042509 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 697.449855 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.037304 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.606473 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.255291 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.211277 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.926466 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.259152 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 722.429175 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 684.380761 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.840658 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 698.920656 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.248807 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 711.880654 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 701.295326 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.904271 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.909690 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 725.53 S.D. = 4.0702 S.E.M. = 0.057561 ECHO 0 Execution completed -2 * Loglike = 701.714578 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.293398 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.802374 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.073464 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.914364 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.230875 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.154862 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.823518 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.934066 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.003908 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.143750 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 695.473686 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 733.548357 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.490531 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.143691 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.339201 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 711.462113 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.381150 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.490325 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.521252 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.955884 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.01 S.D. = 4.2609 S.E.M. = 0.060258 ECHO 0 Execution completed -2 * Loglike = 712.280423 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.690389 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 697.708458 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 683.917746 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.999500 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.142386 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.031917 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 693.238795 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 722.247081 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.255529 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 684.954610 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.473244 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.910488 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.908880 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 683.379496 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.993346 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.702821 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.731700 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.266347 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.927095 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.718519 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.390816 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.877746 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.186973 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.513177 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.941204 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.869002 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.277888 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.368961 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.266238 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.919557 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 700.935841 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 725.236067 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 685.903377 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 702.500641 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.584884 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 714.932020 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.929058 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.981221 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 690.210695 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.430528 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 704.957862 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.792370 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.385741 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.226615 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.078408 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.446701 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.354169 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.957228 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.59 S.D. = 5.4905 S.E.M. = 0.077647 ECHO 0 Execution completed -2 * Loglike = 700.671874 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.795239 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.582424 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.764423 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 713.359456 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 723.767497 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 683.205388 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.176672 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.628441 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 713.297272 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.546518 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.901273 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.289338 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.097183 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.945463 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.525312 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.160004 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.845931 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.674550 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.438786 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.592083 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 722.011369 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 695.115455 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.689697 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.569092 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.337127 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.673352 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.628891 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 726.489462 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 698.002992 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.396196 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.704378 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.238092 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.474122 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.017867 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.855903 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.177063 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.887280 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.209392 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.938647 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 704.297641 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.281529 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 708.879288 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.255205 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.203989 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 697.784206 Actual update 4500 of 5000, Stored update 4500 of 5000 /nogui option ignored -2 * Loglike = 701.413384 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.079678 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.262541 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.591755 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 703.708559 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.378628 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.485701 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 704.418259 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.780324 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.497980 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.035359 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.885535 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.278641 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.273920 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.272853 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.348027 Actual update 4900 of 5000, Stored update 4900 of 5000 ECHO 0 -2 * Loglike = 705.598207 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.807589 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.680082 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.911764 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 688.16 S.D. = 4.4194 S.E.M. = 0.062499 ECHO 0 Execution completed -2 * Loglike = 712.820741 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.04 S.D. = 4.5028 S.E.M. = 0.063680 ECHO 0 Execution completed -2 * Loglike = 703.867401 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 698.922056 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.184755 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 708.121199 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.144836 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.423766 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 708.757502 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 707.451678 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.118031 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.094597 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.004829 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 711.857671 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 701.235147 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.732768 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.631266 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.825364 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.007282 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.342063 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.230046 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.359330 Actual update 4550 of 5000, Stored update 4550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 707.219684 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.316211 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.802258 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.420987 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.341268 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.78 S.D. = 4.5068 S.E.M. = 0.063736 ECHO 0 Execution completed -2 * Loglike = 703.469832 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.259528 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.869672 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.629511 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.989630 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored -2 * Loglike = 698.650363 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.49 S.D. = 4.3262 S.E.M. = 0.061182 ECHO 0 Execution completed ECHO 0 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 736.737765 Burning in for 100 iterations out of 500 -2 * Loglike = 733.025750 Burning in for 150 iterations out of 500 -2 * Loglike = 735.249245 Burning in for 200 iterations out of 500 -2 * Loglike = 739.118408 Burning in for 250 iterations out of 500 -2 * Loglike = 731.962347 Burning in for 300 iterations out of 500 -2 * Loglike = 734.197703 Burning in for 350 iterations out of 500 -2 * Loglike = 740.521791 Burning in for 400 iterations out of 500 -2 * Loglike = 736.965568 Burning in for 450 iterations out of 500 -2 * Loglike = 734.689937 Burning in for 500 iterations out of 500 -2 * Loglike = 734.984202 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 /nogui option ignored -2 * Loglike = 738.755568 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 736.567653 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 732.703521 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 742.591708 Actual update 250 of 5000, Stored update 250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 747.330476 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 750.191736 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 739.391153 Actual update 400 of 5000, Stored update 400 of 5000 ECHO 0 -2 * Loglike = 744.970917 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 732.177744 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 731.111797 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 737.448688 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 735.803068 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 735.067413 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 731.168463 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 744.820169 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 732.395918 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 736.774096 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 735.332991 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 746.059211 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 744.529857 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 733.896961 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 737.238295 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 734.493730 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 737.165340 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 745.971298 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 741.598104 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 744.478048 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 745.180446 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 747.233457 Actual update 1500 of 5000, Stored update 1500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 744.204573 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 744.388362 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 745.655654 Actual update 1650 of 5000, Stored update 1650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 744.850236 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 748.133404 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 738.858445 Actual update 1800 of 5000, Stored update 1800 of 5000 /nogui option ignored -2 * Loglike = 732.750108 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 731.790899 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 735.761713 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 739.904097 Actual update 2000 of 5000, Stored update 2000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 737.245605 Actual update 2050 of 5000, Stored update 2050 of 5000 ECHO 0 -2 * Loglike = 732.514049 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 738.765676 Actual update 2150 of 5000, Stored update 2150 of 5000 ECHO 0 -2 * Loglike = 742.984293 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 734.305440 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 746.529734 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 740.617759 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 738.079948 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 733.839267 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 736.138828 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 744.367085 Actual update 2550 of 5000, Stored update 2550 of 5000 /nogui option ignored -2 * Loglike = 747.450038 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 741.336427 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 736.003172 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 736.322955 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 742.793020 Actual update 2800 of 5000, Stored update 2800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 748.819696 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 744.510056 Actual update 2900 of 5000, Stored update 2900 of 5000 ECHO 0 -2 * Loglike = 732.845246 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 739.985382 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 736.410790 Actual update 3050 of 5000, Stored update 3050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 738.398284 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 731.427744 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 737.297736 Actual update 3200 of 5000, Stored update 3200 of 5000 ECHO 0 -2 * Loglike = 745.692650 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 739.264184 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 737.578633 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 732.657093 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 735.615979 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 739.634910 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 739.704237 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 730.981404 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 736.090887 Actual update 3650 of 5000, Stored update 3650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 734.154953 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 731.843065 Burning in for 100 iterations out of 500 -2 * Loglike = 741.329752 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 728.151041 Burning in for 150 iterations out of 500 -2 * Loglike = 737.784184 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 730.975122 Burning in for 200 iterations out of 500 -2 * Loglike = 744.217827 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 728.320150 Burning in for 250 iterations out of 500 -2 * Loglike = 750.242588 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 731.171906 Burning in for 300 iterations out of 500 -2 * Loglike = 733.872125 Burning in for 350 iterations out of 500 -2 * Loglike = 746.605561 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 738.318044 Burning in for 400 iterations out of 500 -2 * Loglike = 740.262033 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 725.669750 Burning in for 450 iterations out of 500 -2 * Loglike = 742.448753 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 731.051720 Burning in for 500 iterations out of 500 -2 * Loglike = 732.755228 Actual update 4100 of 5000, Stored update 4100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 731.226547 -2 * Loglike = 738.832862 Actual update 4150 of 5000, Stored update 4150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 745.310620 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 734.997084 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 733.179752 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 734.768818 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 747.647620 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 730.771698 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 744.980901 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 734.849094 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 741.022902 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 733.006954 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 743.084796 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 740.943018 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 733.285944 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.769525 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 738.764850 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 730.988092 Actual update 450 of 5000, Stored update 450 of 5000 /nogui option ignored -2 * Loglike = 732.103963 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 748.404807 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 724.494310 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 741.819895 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 731.264363 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 747.474156 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.595722 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 743.869253 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 723.725369 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 735.370411 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.611840 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 737.157905 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 733.637685 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 744.913581 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 727.121970 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 745.014924 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 731.323324 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 744.647896 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 727.119736 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 733.109179 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 731.211558 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 732.008143 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 725.429842 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 727.975914 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 727.786856 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 727.473425 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.030785 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 730.935294 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 732.025556 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 732.682017 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 730.677394 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 731.503260 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 732.297279 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 730.040732 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 734.382340 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 723.207589 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 730.760292 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 732.545486 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.028615 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 731.823228 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 740.18 S.D. = 5.2043 S.E.M. = 0.073600 ECHO 0 Execution completed -2 * Loglike = 738.666062 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 726.980302 Actual update 2050 of 5000, Stored update 2050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 724.138888 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 729.521223 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 729.479304 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 732.675235 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 733.378243 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 729.823835 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 731.839483 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 732.305591 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 730.275377 Actual update 2500 of 5000, Stored update 2500 of 5000 /nogui option ignored -2 * Loglike = 729.178712 Actual update 2550 of 5000, Stored update 2550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 737.269971 Actual update 2600 of 5000, Stored update 2600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 732.331819 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.086615 Burning in for 100 iterations out of 500 -2 * Loglike = 731.191301 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.791970 Burning in for 150 iterations out of 500 -2 * Loglike = 728.293665 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.770720 Burning in for 200 iterations out of 500 -2 * Loglike = 733.629919 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.385175 Burning in for 250 iterations out of 500 -2 * Loglike = 732.068672 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 700.205874 Burning in for 300 iterations out of 500 -2 * Loglike = 726.657099 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.155939 Burning in for 350 iterations out of 500 -2 * Loglike = 733.916280 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 705.991805 Burning in for 400 iterations out of 500 -2 * Loglike = 730.439107 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 702.385030 Burning in for 450 iterations out of 500 -2 * Loglike = 722.473703 Actual update 3050 of 5000, Stored update 3050 of 5000 /nogui option ignored -2 * Loglike = 698.137155 Burning in for 500 iterations out of 500 -2 * Loglike = 728.469712 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.057582 -2 * Loglike = 731.531860 Actual update 3150 of 5000, Stored update 3150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 724.759793 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 701.437911 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 728.974264 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.795591 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 733.418579 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.428989 Actual update 200 of 5000, Stored update 200 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 703.007771 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 734.599497 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 723.941818 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.487985 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.616007 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.774720 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 728.491086 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.881035 Actual update 400 of 5000, Stored update 400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 728.776510 Actual update 3550 of 5000, Stored update 3550 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 708.807483 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 730.019796 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 683.637511 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 696.712971 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 727.233018 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 677.761883 Burning in for 150 iterations out of 500 -2 * Loglike = 695.987489 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 723.480847 Actual update 3700 of 5000, Stored update 3700 of 5000 ECHO 0 -2 * Loglike = 676.233714 Burning in for 200 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 732.519382 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.408334 Actual update 600 of 5000, Stored update 600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 677.548929 Burning in for 250 iterations out of 500 -2 * Loglike = 729.886322 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.722334 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.328286 Burning in for 100 iterations out of 500 -2 * Loglike = 686.609418 Burning in for 300 iterations out of 500 -2 * Loglike = 730.256183 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.470391 Burning in for 150 iterations out of 500 -2 * Loglike = 700.769474 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.898776 Burning in for 350 iterations out of 500 -2 * Loglike = 736.788892 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.687784 Burning in for 200 iterations out of 500 -2 * Loglike = 688.461679 Burning in for 400 iterations out of 500 -2 * Loglike = 695.777872 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 733.263263 Actual update 3950 of 5000, Stored update 3950 of 5000 ECHO 0 -2 * Loglike = 709.575653 Burning in for 250 iterations out of 500 -2 * Loglike = 703.044575 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 679.770424 Burning in for 450 iterations out of 500 -2 * Loglike = 733.300497 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.482019 Burning in for 300 iterations out of 500 -2 * Loglike = 697.640800 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 684.560850 Burning in for 500 iterations out of 500 -2 * Loglike = 724.247024 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 711.530340 Burning in for 350 iterations out of 500 -2 * Loglike = 701.002235 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 683.141068 -2 * Loglike = 728.883533 Actual update 4100 of 5000, Stored update 4100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 717.003204 Burning in for 400 iterations out of 500 -2 * Loglike = 697.782147 Actual update 950 of 5000, Stored update 950 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 732.506623 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.478108 Burning in for 450 iterations out of 500 -2 * Loglike = 710.086312 Actual update 1000 of 5000, Stored update 1000 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 695.774416 Burning in for 100 iterations out of 500 -2 * Loglike = 732.468162 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.117142 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.126616 Burning in for 500 iterations out of 500 -2 * Loglike = 680.124410 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 695.773356 Burning in for 150 iterations out of 500 -2 * Loglike = 699.990182 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 729.364455 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.977715 -2 * Loglike = 696.373165 Burning in for 200 iterations out of 500 -2 * Loglike = 700.472435 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 685.837366 Actual update 150 of 5000, Stored update 150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 734.284063 Actual update 4300 of 5000, Stored update 4300 of 5000 Burning in for 50 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 697.777051 Burning in for 250 iterations out of 500 -2 * Loglike = 675.526649 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.059237 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 729.179330 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.604465 Burning in for 100 iterations out of 500 -2 * Loglike = 682.155629 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.535705 Burning in for 300 iterations out of 500 -2 * Loglike = 701.328496 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 709.679859 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.146230 Burning in for 150 iterations out of 500 -2 * Loglike = 733.546175 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 696.990146 Burning in for 350 iterations out of 500 -2 * Loglike = 679.125611 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.207017 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.125604 Burning in for 200 iterations out of 500 -2 * Loglike = 703.171690 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 734.653020 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.433275 Burning in for 400 iterations out of 500 -2 * Loglike = 714.965053 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.060278 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 698.741110 Burning in for 250 iterations out of 500 -2 * Loglike = 701.803948 Burning in for 450 iterations out of 500 -2 * Loglike = 731.519674 Actual update 4500 of 5000, Stored update 4500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 705.364790 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.705677 Burning in for 300 iterations out of 500 -2 * Loglike = 701.740180 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.244963 Burning in for 500 iterations out of 500 -2 * Loglike = 675.669668 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.217391 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 733.463787 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.500526 Burning in for 100 iterations out of 500 -2 * Loglike = 713.033856 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.044781 Burning in for 350 iterations out of 500 -2 * Loglike = 700.012799 -2 * Loglike = 681.332330 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 734.522961 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.842554 Burning in for 400 iterations out of 500 -2 * Loglike = 701.023317 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 708.743828 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 686.488173 Burning in for 150 iterations out of 500 -2 * Loglike = 681.561027 Actual update 500 of 5000, Stored update 500 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 702.764036 Burning in for 450 iterations out of 500 -2 * Loglike = 724.991349 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.309958 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 723.654067 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 676.935255 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 688.132172 Burning in for 200 iterations out of 500 -2 * Loglike = 698.599777 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 695.737636 Burning in for 500 iterations out of 500 -2 * Loglike = 728.258968 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.824736 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.619393 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 678.739806 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.813064 Burning in for 250 iterations out of 500 -2 * Loglike = 701.804712 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.009355 -2 * Loglike = 730.094670 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 706.171912 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 677.381878 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.960556 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.744135 Burning in for 300 iterations out of 500 -2 * Loglike = 694.265834 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 727.887849 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.832484 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.164265 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 677.893045 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.212863 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.875369 Burning in for 350 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 726.121648 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.325521 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 696.804232 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 675.472953 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.635037 Burning in for 400 iterations out of 500 -2 * Loglike = 700.511974 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 736.455048 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.885062 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.339500 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.006952 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 686.989712 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 687.995467 Burning in for 450 iterations out of 500 -2 * Loglike = 704.569207 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 731.084429 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.134451 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.302368 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 677.371346 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.007112 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.738230 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 705.511034 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 733.976734 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.898392 Burning in for 500 iterations out of 500 -2 * Loglike = 706.628591 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.275038 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 682.890583 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 698.180987 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.330102 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.367685 -2 * Loglike = 705.277588 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.412067 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 678.996689 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.738998 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.949471 Actual update 300 of 5000, Stored update 300 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 716.587008 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.007996 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 689.531764 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 708.849277 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.183716 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.642198 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.386645 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.712040 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.906090 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 685.712856 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.412278 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 696.493622 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 689.937183 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.396491 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.328742 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.015212 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 685.674030 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 684.781096 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.248067 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.948718 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.044752 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.565588 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 678.112852 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.196673 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.759243 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.647333 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.646136 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 682.363057 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.139903 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.783720 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 702.232321 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.987990 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.146702 Actual update 700 of 5000, Stored update 700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 693.683870 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 707.423349 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.668335 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 713.812875 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 700.398846 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 681.915030 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 718.629374 Burning in for 100 iterations out of 500 -2 * Loglike = 694.395128 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.153917 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.150995 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.303660 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.152631 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.962400 Burning in for 150 iterations out of 500 -2 * Loglike = 707.261300 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.352010 Burning in for 200 iterations out of 500 -2 * Loglike = 689.677714 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.247241 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.177002 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.187844 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.109494 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.408006 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 729.096995 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 730.82 S.D. = 3.4255 S.E.M. = 0.048443 ECHO 0 Execution completed -2 * Loglike = 684.981944 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 685.458358 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.201738 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.428450 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 717.594942 Burning in for 250 iterations out of 500 -2 * Loglike = 709.855549 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.621492 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 687.726846 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 681.170203 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.287854 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.810354 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.299983 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.995016 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.837214 Burning in for 300 iterations out of 500 -2 * Loglike = 715.045732 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.804138 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.540619 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.322802 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 685.709712 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 722.313382 Burning in for 350 iterations out of 500 -2 * Loglike = 710.620575 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.331639 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.893599 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.490940 Burning in for 400 iterations out of 500 -2 * Loglike = 716.013595 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.876432 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.427710 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.560584 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.153833 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.477266 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 699.934879 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.819283 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 698.598605 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.490062 Burning in for 450 iterations out of 500 -2 * Loglike = 685.539502 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 709.190574 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.714706 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.966919 Actual update 1150 of 5000, Stored update 1150 of 5000 /nogui option ignored -2 * Loglike = 718.113016 Burning in for 500 iterations out of 500 -2 * Loglike = 677.960135 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.479860 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.875239 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.787426 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.332849 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.837644 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.595337 -2 * Loglike = 680.914821 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.650706 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.892240 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 697.570774 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.447452 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.606457 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 685.434084 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.606160 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.474877 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.013099 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.374499 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.870271 Actual update 1350 of 5000, Stored update 1350 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 702.057268 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 679.932348 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 -2 * Loglike = 697.760772 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.980798 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.415111 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.258120 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.243530 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.271186 Actual update 1350 of 5000, Stored update 1350 of 5000 ECHO 0 -2 * Loglike = 681.303731 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 708.956608 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.279742 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.209006 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.336871 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.595886 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.936218 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 676.329476 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.005476 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 723.116331 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.217253 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.058648 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 706.341563 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.167259 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.549645 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.324678 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.124780 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.543468 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 723.305343 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.266609 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 679.482194 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.566862 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 700.629752 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 698.221484 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.378851 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 721.132748 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.147550 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 679.794810 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.075265 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.625304 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.534444 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.517231 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 728.558559 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.754431 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.229578 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.874125 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.570930 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.054542 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.805191 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 713.356450 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 682.974101 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 707.889422 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.076727 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.365016 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.573912 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.641127 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.278301 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 678.656787 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.386491 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.142584 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.444230 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.599800 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.436120 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.417444 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.790846 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 709.411327 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.150612 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.794059 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 687.325278 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.579356 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.422468 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 681.937699 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.709623 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.474503 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.440508 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 694.459345 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.662275 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.708581 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 683.736205 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.283974 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.117632 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.453558 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 706.890992 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.395543 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.903419 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 682.529716 Actual update 2300 of 5000, Stored update 2300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 697.428341 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.706591 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.599943 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 711.456210 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 692.560972 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.694193 Actual update 700 of 5000, Stored update 700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 680.952933 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.664721 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.753650 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.063511 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.057425 Actual update 2300 of 5000, Stored update 2300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 687.282402 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.569760 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.762733 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.690377 Burning in for 100 iterations out of 500 -2 * Loglike = 696.607324 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.357653 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.013486 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.549174 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.081492 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.871392 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 694.437426 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.573543 Burning in for 150 iterations out of 500 -2 * Loglike = 707.529878 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 703.482452 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 724.957342 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.307998 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 714.431411 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 676.696889 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.536457 Burning in for 200 iterations out of 500 -2 * Loglike = 685.474207 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.525471 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.164462 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 708.502446 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.698310 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 698.866888 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 679.673276 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.865164 Burning in for 250 iterations out of 500 -2 * Loglike = 688.814752 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 699.279445 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.385277 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.636853 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 713.808444 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.390801 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 699.541725 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.984391 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 701.777765 Burning in for 300 iterations out of 500 -2 * Loglike = 705.064401 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.300659 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.604366 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.262326 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.197828 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.892093 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.250465 Burning in for 350 iterations out of 500 -2 * Loglike = 686.774411 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.658742 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 697.047657 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 719.618180 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 720.345051 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 695.941518 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.382726 Burning in for 400 iterations out of 500 -2 * Loglike = 683.443004 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.350871 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 707.841918 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.187017 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.333163 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.992482 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 706.891332 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 680.761511 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.664037 Burning in for 450 iterations out of 500 -2 * Loglike = 713.226423 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.868556 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.861334 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.641644 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.862739 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.082289 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.472171 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.817804 Burning in for 500 iterations out of 500 -2 * Loglike = 715.348082 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.101554 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 707.751402 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 698.791592 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.749024 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 682.753816 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 702.918278 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 699.211578 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.997012 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.910944 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.880538 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.190098 -2 * Loglike = 714.043467 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 679.064090 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.169851 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 708.084577 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 716.933670 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 691.004578 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 697.974061 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.344210 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.777396 Actual update 2950 of 5000, Stored update 2950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 705.363202 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 702.551827 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 688.911057 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.595291 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.187391 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 708.961290 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.286726 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 689.504250 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.159077 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.805623 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 689.378089 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 719.018900 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.914988 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.804942 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.453732 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 678.413274 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.196379 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.659387 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.386111 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.852594 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 720.281322 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.039199 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.903363 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.681627 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.403461 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.054341 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.495827 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.555848 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 697.927799 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.679911 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 704.331435 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 680.975622 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.253943 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.751228 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.961538 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.112974 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.743532 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.396292 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.037669 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 680.288134 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 702.524085 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.141325 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.077206 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.206789 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 708.489477 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.729248 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 711.966550 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.026765 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.123484 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.760716 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 709.838286 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 685.138255 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.059243 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 699.935813 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.829376 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.868618 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.802382 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 719.766748 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.041291 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 687.096567 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 705.212555 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.862504 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.734085 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.474413 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.773304 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.016721 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.337964 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.444709 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.820911 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.477457 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 677.243193 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.845015 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.264638 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.445923 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.010322 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.780096 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.256582 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.398275 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 684.448573 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 691.764307 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.527086 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.194101 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.258584 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.818373 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.245552 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.204231 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 680.412952 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 690.350205 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.990514 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 719.084341 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.329613 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.338438 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.915686 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.591932 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.634244 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.548443 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 720.925304 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 697.655767 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.733583 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.548587 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.608375 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.654567 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 678.440197 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.944014 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.547134 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.022117 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.511619 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.999883 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.134175 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.430811 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 712.087637 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 724.880681 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.690684 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 676.706074 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.235853 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.504803 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.130016 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.130915 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.854879 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.626675 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 676.960088 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.989216 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 691.280929 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.836739 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 685.643003 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.743077 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.013751 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.454079 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.105098 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.916181 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.884872 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.714565 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 678.095837 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.451785 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 699.618928 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 698.904601 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.738578 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.318566 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.659526 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 719.666199 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 685.164871 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.888967 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 686.748191 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 697.661495 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.877922 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.472131 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.711405 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.597960 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 685.481342 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.878285 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.839526 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.299989 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.317870 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.983992 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.426929 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.715337 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 687.937734 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.667793 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 717.048754 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 694.175113 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.999821 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 721.743509 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.132718 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.625995 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.145447 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.319934 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.159912 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.206961 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.911501 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.871128 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.163099 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.068131 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 675.430895 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 689.078843 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.805264 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 720.336081 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.720968 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.172065 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.980867 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 680.262889 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 691.916371 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.842441 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 720.793475 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 694.354845 Actual update 3800 of 5000, Stored update 3800 of 5000 /nogui option ignored -2 * Loglike = 708.937401 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.395165 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.641401 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 717.877074 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.466298 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.750641 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.605958 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 678.828355 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.455245 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.040436 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.370124 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.920628 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 702.985889 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.324497 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 677.743017 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.977794 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.827051 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 706.048492 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.719041 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.252204 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 725.759822 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 686.568937 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 692.814142 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.065274 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.173402 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.316272 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.579193 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 678.949419 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.992105 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.511254 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.538955 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 721.224992 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.817605 Actual update 4350 of 5000, Stored update 4350 of 5000 ECHO 0 -2 * Loglike = 696.067616 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.356437 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.060922 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.371693 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.478251 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 720.021096 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 691.257994 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.368974 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.75 S.D. = 4.1117 S.E.M. = 0.058148 ECHO 0 Execution completed -2 * Loglike = 682.349415 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.494895 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.286540 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.557826 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.180873 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 716.105166 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.121603 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.353284 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.763624 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.955058 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.186781 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.016911 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.219363 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.250696 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.939304 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.930135 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 716.802401 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 705.622725 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.089703 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.275976 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 680.411953 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.432247 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.922688 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 710.316998 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.430253 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.346086 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.283957 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 679.871034 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.096275 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.221596 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.292338 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.596986 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.658617 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 722.199313 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 684.495339 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 685.191429 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.863915 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.002137 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 708.925545 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.565182 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.868910 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 706.904579 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.716910 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.271733 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 677.980394 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.911304 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 712.616707 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 707.042695 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.928153 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.856390 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.469146 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 680.838810 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.279748 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.452463 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.760532 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.543064 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.838419 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.208995 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.416527 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.351587 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.811194 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.688302 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.016607 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 685.138449 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.922954 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.504601 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.342612 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.096704 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.042016 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 687.953003 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.767371 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.673206 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.945563 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.851233 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 677.764577 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.036983 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.099053 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.710418 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.381988 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 716.631982 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.865739 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.179514 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored -2 * Loglike = 721.403978 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.921211 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.480119 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.232304 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.698696 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 722.970916 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 686.464965 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.179530 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 709.001632 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 699.331714 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.350946 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.659888 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.119654 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.896457 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.425354 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.290873 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.406484 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.298265 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.911761 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.347201 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.351342 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.553223 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 694.916503 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 715.917038 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.966322 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.495531 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.761280 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.551083 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.735159 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.870391 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.634485 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 687.519511 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.570268 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 719.335127 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.663278 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.819838 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.273464 Actual update 2400 of 5000, Stored update 2400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 705.055573 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.754488 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.370476 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 697.443357 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 686.089028 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 710.977095 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 696.682725 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.308012 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.764244 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.808140 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.404716 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 686.773068 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.898855 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 718.852163 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.071955 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.477659 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 694.471002 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 725.262479 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.792588 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 703.760446 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 686.876983 Actual update 4950 of 5000, Stored update 4950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 720.100773 Actual update 4000 of 5000, Stored update 4000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 699.930189 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.846132 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 712.925719 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.012196 Burning in for 100 iterations out of 500 -2 * Loglike = 699.258882 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.595671 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.127133 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.834808 Burning in for 150 iterations out of 500 -2 * Loglike = 719.049522 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.770802 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 720.876426 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.180392 Burning in for 200 iterations out of 500 -2 * Loglike = 700.095565 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 718.565622 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.361180 Burning in for 250 iterations out of 500 -2 * Loglike = 702.026849 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.942110 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.88 S.D. = 4.2568 S.E.M. = 0.060200 ECHO 0 Execution completed -2 * Loglike = 694.715528 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.11 S.D. = 4.5309 S.E.M. = 0.064077 ECHO 0 Execution completed -2 * Loglike = 722.728574 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.346349 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.055800 Burning in for 300 iterations out of 500 -2 * Loglike = 677.119208 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 682.62 S.D. = 4.4989 S.E.M. = 0.063625 ECHO 0 Execution completed -2 * Loglike = 700.336232 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.832557 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.450475 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.297773 Burning in for 350 iterations out of 500 -2 * Loglike = 697.324340 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.616776 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.687946 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.65 S.D. = 4.0326 S.E.M. = 0.057030 ECHO 0 Execution completed -2 * Loglike = 711.543992 Burning in for 400 iterations out of 500 -2 * Loglike = 700.526289 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.357459 Burning in for 450 iterations out of 500 -2 * Loglike = 723.142935 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.428518 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 719.922876 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.382792 Burning in for 500 iterations out of 500 -2 * Loglike = 721.442102 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.416989 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.854792 -2 * Loglike = 708.419436 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 722.962522 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 696.747209 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.264373 Actual update 4650 of 5000, Stored update 4650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 702.575436 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 716.050255 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.770009 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 701.523980 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 717.865916 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.586573 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 701.095578 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 716.230687 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.967751 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.595460 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.837921 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.918141 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.319236 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 704.285708 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 723.668746 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 719.315945 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.368882 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.318777 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.824367 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.415801 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 721.805913 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.946363 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 685.736786 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.75 S.D. = 5.2794 S.E.M. = 0.074662 ECHO 0 Execution completed -2 * Loglike = 704.588199 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.275886 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.099107 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.647643 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.590837 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.040611 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.175202 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.876185 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.992784 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.278408 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.571047 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.059547 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.740160 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 707.146352 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.185284 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.452593 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.846656 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.614569 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.163856 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.495564 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.886756 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.344106 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.940197 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.790234 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.858403 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.002411 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.187279 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.936435 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.470802 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.165898 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.017561 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.158302 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.394012 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.994457 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.867837 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.878618 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.890148 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.421086 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.048974 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 713.755242 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.85 S.D. = 3.6616 S.E.M. = 0.051782 ECHO 0 Execution completed -2 * Loglike = 704.962711 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.637886 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.938363 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.785924 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.427548 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.967759 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.711304 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.682035 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.166879 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.043836 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 705.037629 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.560518 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.900513 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 702.929381 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.339153 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.535588 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.789766 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 708.601617 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 702.890675 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.913252 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.184800 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.702270 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.98 S.D. = 4.1426 S.E.M. = 0.058585 ECHO 0 Execution completed -2 * Loglike = 705.549841 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.962638 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.172752 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 718.424398 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.645781 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.243088 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.780465 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.563681 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.429746 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.373699 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.055323 Actual update 2750 of 5000, Stored update 2750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 709.003561 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.420475 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 705.072224 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.675359 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 705.096904 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.608451 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.919767 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.928449 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.887372 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 704.554290 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 709.213428 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 715.997703 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.799695 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.763235 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.945654 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.999540 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 -2 * Loglike = 701.691525 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.273613 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.829451 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.392636 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.166779 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.183412 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 712.899791 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 718.270441 Actual update 3950 of 5000, Stored update 3950 of 5000 /nogui option ignored -2 * Loglike = 710.184229 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.516956 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.236231 Actual update 4100 of 5000, Stored update 4100 of 5000 /nogui option ignored -2 * Loglike = 712.625240 Actual update 4150 of 5000, Stored update 4150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... /nogui option ignored Burning in for 50 iterations out of 500 -2 * Loglike = 703.845141 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.968660 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.723828 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 708.214905 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.258678 Burning in for 150 iterations out of 500 -2 * Loglike = 706.443472 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.390124 Burning in for 200 iterations out of 500 -2 * Loglike = 712.045711 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 711.137358 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.107872 Burning in for 250 iterations out of 500 /nogui option ignored -2 * Loglike = 703.430316 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.307009 Burning in for 300 iterations out of 500 -2 * Loglike = 709.477576 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.429215 Burning in for 350 iterations out of 500 -2 * Loglike = 708.107617 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 721.736795 Burning in for 400 iterations out of 500 /nogui option ignored ECHO 0 -2 * Loglike = 702.591755 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 719.339680 Burning in for 450 iterations out of 500 -2 * Loglike = 710.224445 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.838674 Burning in for 500 iterations out of 500 -2 * Loglike = 702.696405 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.431310 -2 * Loglike = 705.023139 Actual update 4800 of 5000, Stored update 4800 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 709.554585 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.554673 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 711.664067 Actual update 4900 of 5000, Stored update 4900 of 5000 ECHO 0 -2 * Loglike = 716.608738 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 703.404400 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 711.754366 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.679391 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.127115 Actual update 250 of 5000, Stored update 250 of 5000 ECHO 0 -2 * Loglike = 714.577390 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 729.898163 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 710.253197 Actual update 400 of 5000, Stored update 400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 728.047877 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.785462 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.177541 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.237754 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.140167 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 714.019436 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.609329 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.175048 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 713.809771 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.784970 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 716.350762 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.941469 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.857937 Actual update 1050 of 5000, Stored update 1050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 717.541566 Actual update 1100 of 5000, Stored update 1100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 716.148313 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.013569 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.78 S.D. = 4.0510 S.E.M. = 0.057289 ECHO 0 Execution completed -2 * Loglike = 716.200810 Actual update 1200 of 5000, Stored update 1200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 -2 * Loglike = 717.371159 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.826627 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.706446 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.757378 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.188342 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 716.446997 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.139449 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 712.537506 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.905615 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 714.968726 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 715.314961 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 711.142636 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 712.469373 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.276199 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.472267 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 725.954080 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.228237 Actual update 2050 of 5000, Stored update 2050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.261728 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 720.135595 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 717.708054 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 714.890161 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.936280 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 719.679640 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.803348 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.771416 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.564382 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.052351 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 718.986746 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 716.588666 Actual update 2650 of 5000, Stored update 2650 of 5000 /nogui option ignored -2 * Loglike = 717.958768 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.025648 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 719.501850 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 724.680735 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 716.129592 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.184091 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.092995 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.146393 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 714.905671 Actual update 3100 of 5000, Stored update 3100 of 5000 ECHO 0 -2 * Loglike = 714.558458 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 714.571527 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.722767 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 719.484820 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 727.144638 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.067159 Actual update 3400 of 5000, Stored update 3400 of 5000 /nogui option ignored -2 * Loglike = 719.402978 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.490036 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.838401 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.021639 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.232432 Actual update 3650 of 5000, Stored update 3650 of 5000 ECHO 0 -2 * Loglike = 714.436963 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 721.063351 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.376998 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.714543 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 722.109513 Actual update 3900 of 5000, Stored update 3900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.293258 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 718.823884 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 716.101820 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.549064 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 722.280226 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.147726 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 711.978421 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.379053 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.358820 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.937619 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 726.722063 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.930088 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.840360 Actual update 4550 of 5000, Stored update 4550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 721.325669 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.465302 Burning in for 100 iterations out of 500 -2 * Loglike = 714.093692 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.828293 Burning in for 150 iterations out of 500 -2 * Loglike = 717.892912 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 708.244306 Burning in for 200 iterations out of 500 -2 * Loglike = 709.173079 Burning in for 250 iterations out of 500 -2 * Loglike = 712.777672 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.738779 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.649101 Burning in for 300 iterations out of 500 -2 * Loglike = 716.945214 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 710.965824 Burning in for 350 iterations out of 500 -2 * Loglike = 728.077209 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 722.307557 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 717.674887 Burning in for 400 iterations out of 500 -2 * Loglike = 713.663755 Burning in for 450 iterations out of 500 -2 * Loglike = 722.826952 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 711.769480 Burning in for 500 iterations out of 500 -2 * Loglike = 713.716761 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 709.877015 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.607398 Actual update 150 of 5000, Stored update 150 of 5000 /nogui option ignored -2 * Loglike = 707.153516 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.591474 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 709.722409 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 725.746396 Actual update 350 of 5000, Stored update 350 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 706.199042 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.881300 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 711.959369 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 717.18 S.D. = 4.3005 S.E.M. = 0.060818 ECHO 0 Execution completed -2 * Loglike = 707.907198 Actual update 500 of 5000, Stored update 500 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 707.609533 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 707.371738 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 709.163812 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 719.042153 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.297869 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.008074 Actual update 800 of 5000, Stored update 800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... /nogui option ignored Burning in for 50 iterations out of 500 -2 * Loglike = 710.216229 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 741.535926 Burning in for 100 iterations out of 500 -2 * Loglike = 711.654745 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 732.966068 Burning in for 150 iterations out of 500 -2 * Loglike = 733.560891 Burning in for 200 iterations out of 500 -2 * Loglike = 712.120397 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 733.614204 Burning in for 250 iterations out of 500 ECHO 0 -2 * Loglike = 721.660832 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 739.818553 Burning in for 300 iterations out of 500 -2 * Loglike = 755.902832 Burning in for 350 iterations out of 500 -2 * Loglike = 712.630799 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.186893 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 741.904911 Burning in for 400 iterations out of 500 -2 * Loglike = 711.889272 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 735.065737 Burning in for 450 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 711.965753 Actual update 1200 of 5000, Stored update 1200 of 5000 Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 739.808252 Burning in for 500 iterations out of 500 -2 * Loglike = 696.699503 Burning in for 100 iterations out of 500 -2 * Loglike = 738.376197 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 712.708274 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.134385 Burning in for 150 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 694.241989 Burning in for 200 iterations out of 500 -2 * Loglike = 709.735183 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 736.954026 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.206202 Burning in for 250 iterations out of 500 -2 * Loglike = 738.486373 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.332343 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.822347 Burning in for 300 iterations out of 500 -2 * Loglike = 731.140502 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.751606 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.365432 Burning in for 350 iterations out of 500 -2 * Loglike = 740.861897 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.799623 Burning in for 400 iterations out of 500 -2 * Loglike = 724.771179 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.361617 Burning in for 450 iterations out of 500 /nogui option ignored -2 * Loglike = 695.873480 Burning in for 500 iterations out of 500 -2 * Loglike = 734.609446 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.603067 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 748.692661 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.778348 -2 * Loglike = 707.701471 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 730.687294 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 709.634778 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 737.856714 Actual update 450 of 5000, Stored update 450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 715.079648 Actual update 1650 of 5000, Stored update 1650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 697.466937 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 737.483094 Actual update 500 of 5000, Stored update 500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 719.415191 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 696.758885 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.290862 Burning in for 100 iterations out of 500 -2 * Loglike = 732.618257 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.385268 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.488781 Burning in for 150 iterations out of 500 -2 * Loglike = 692.320279 Burning in for 100 iterations out of 500 -2 * Loglike = 691.610631 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 693.229418 Burning in for 200 iterations out of 500 -2 * Loglike = 735.187632 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 686.994035 Burning in for 250 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 684.853132 Burning in for 150 iterations out of 500 -2 * Loglike = 707.011225 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.671037 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 733.221083 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.901595 Burning in for 300 iterations out of 500 -2 * Loglike = 707.782333 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 686.377474 Burning in for 200 iterations out of 500 -2 * Loglike = 717.180291 Burning in for 100 iterations out of 500 -2 * Loglike = 694.563997 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.420988 Burning in for 350 iterations out of 500 -2 * Loglike = 733.665550 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.404803 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.367840 Burning in for 250 iterations out of 500 -2 * Loglike = 717.055972 Burning in for 150 iterations out of 500 -2 * Loglike = 694.085431 Burning in for 400 iterations out of 500 -2 * Loglike = 731.087903 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 709.088946 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 710.804307 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.494097 Burning in for 300 iterations out of 500 -2 * Loglike = 716.152619 Burning in for 200 iterations out of 500 -2 * Loglike = 688.196124 Burning in for 450 iterations out of 500 -2 * Loglike = 742.031999 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.164718 Burning in for 350 iterations out of 500 -2 * Loglike = 690.207547 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.368330 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.967811 Burning in for 250 iterations out of 500 -2 * Loglike = 687.244560 Burning in for 500 iterations out of 500 -2 * Loglike = 694.233988 Burning in for 400 iterations out of 500 -2 * Loglike = 732.638880 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.425813 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.653751 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 724.507084 Burning in for 300 iterations out of 500 -2 * Loglike = 686.274456 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 686.491952 Burning in for 450 iterations out of 500 -2 * Loglike = 692.616061 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 738.818591 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.593031 Burning in for 350 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 707.617715 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.273088 Burning in for 500 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 690.863636 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.940038 Burning in for 400 iterations out of 500 -2 * Loglike = 733.090474 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.295470 Burning in for 100 iterations out of 500 -2 * Loglike = 689.172466 -2 * Loglike = 712.336316 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.374361 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.424796 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 721.251424 Burning in for 450 iterations out of 500 -2 * Loglike = 746.047697 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.993909 Burning in for 150 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 695.771272 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.013511 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.619839 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.207998 Burning in for 500 iterations out of 500 -2 * Loglike = 699.365419 Burning in for 200 iterations out of 500 -2 * Loglike = 714.591871 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.139368 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 694.299778 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.914334 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 745.977094 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.269632 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.526066 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 701.685439 Burning in for 250 iterations out of 500 -2 * Loglike = 688.572317 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.634136 -2 * Loglike = 697.617147 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 740.017125 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 709.311180 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 700.047057 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.544870 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.064488 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 695.953550 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.865502 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.799781 Burning in for 300 iterations out of 500 -2 * Loglike = 692.855258 Actual update 850 of 5000, Stored update 850 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 710.523211 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 689.776178 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 718.329345 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 737.586962 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.364808 Burning in for 350 iterations out of 500 -2 * Loglike = 703.722335 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 710.976785 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 707.073538 Burning in for 400 iterations out of 500 -2 * Loglike = 685.747309 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.524412 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 725.792951 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 736.974267 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.153943 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 715.510827 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.613835 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 701.319115 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.889712 Burning in for 450 iterations out of 500 -2 * Loglike = 735.212656 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.929308 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.614448 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 681.903716 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.272035 Burning in for 500 iterations out of 500 -2 * Loglike = 741.428937 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.503516 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.012522 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 722.204337 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 703.064045 -2 * Loglike = 739.299506 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.471981 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 687.706443 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 685.641539 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.132711 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 717.703205 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 746.713788 Actual update 1450 of 5000, Stored update 1450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 /nogui option ignored -2 * Loglike = 700.217876 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.418259 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 695.621002 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 713.239716 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 732.960185 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 734.199438 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.491549 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.102331 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 714.412509 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 685.243293 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.081221 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 683.346576 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 739.166199 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.802675 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.340588 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.955771 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.732275 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 716.704280 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 684.980669 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 736.936235 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.162853 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.639028 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.863295 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 683.132877 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.684036 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.722561 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 745.379068 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.892341 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 700.945923 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.093588 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 697.775184 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.806199 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 683.872460 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 734.963020 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.186149 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.821667 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.080523 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.264672 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 714.653075 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.037438 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 737.205307 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.040666 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 682.468834 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.866135 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.838436 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.905477 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.777500 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.013880 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 732.094218 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.645311 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.234776 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.102917 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.062454 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 714.718377 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.386502 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 731.833450 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 683.914619 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.404064 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.906948 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.474845 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.128718 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 695.543044 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 734.208033 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 689.878529 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.815478 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 724.724480 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.482452 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.695368 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.816148 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 734.348675 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 685.696635 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.997627 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.282133 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 692.127227 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.057660 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.726154 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 745.023483 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.951085 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.087567 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.452868 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.800880 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 696.459911 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.500043 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 739.589765 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 687.357505 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.217037 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.805654 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.637454 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.531018 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 716.226927 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 735.502721 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.925702 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.702565 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 730.780676 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.863156 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.689961 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.235646 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.673933 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.201396 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.843875 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 735.353891 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 689.444395 Actual update 1300 of 5000, Stored update 1300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 686.389495 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.207932 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.941630 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.992690 Actual update 1850 of 5000, Stored update 1850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.870804 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 736.014889 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.103848 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.382573 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 718.767462 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.869127 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 719.384156 Burning in for 100 iterations out of 500 -2 * Loglike = 694.606210 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 736.455966 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.547206 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.084914 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.616535 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.841758 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 716.409574 Burning in for 150 iterations out of 500 -2 * Loglike = 688.797066 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.969915 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 737.589582 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 693.210184 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 722.082526 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.856853 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.685274 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 718.523999 Burning in for 200 iterations out of 500 -2 * Loglike = 698.132414 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 687.092928 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 736.593695 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.458996 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.169105 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 700.422650 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.832607 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 718.703675 Burning in for 250 iterations out of 500 -2 * Loglike = 694.773072 Actual update 1550 of 5000, Stored update 1550 of 5000 /nogui option ignored -2 * Loglike = 752.759629 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 691.706215 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.190940 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 722.640458 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.743003 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.996307 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.259003 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.167869 Burning in for 300 iterations out of 500 -2 * Loglike = 689.121100 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.189475 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 742.095765 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 718.110486 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.170081 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.453764 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.255974 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.392091 Burning in for 350 iterations out of 500 -2 * Loglike = 695.666479 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.386692 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 731.673604 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 726.758500 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.642555 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 708.573691 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.532619 Burning in for 400 iterations out of 500 -2 * Loglike = 686.233613 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.386536 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.163067 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 737.573479 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.793819 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 689.384528 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.946092 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 726.400130 Burning in for 450 iterations out of 500 -2 * Loglike = 719.911839 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 694.192075 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.976663 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 741.854518 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.724865 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.288814 Burning in for 500 iterations out of 500 -2 * Loglike = 717.548809 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.549012 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 701.391664 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.768483 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 684.733657 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.308845 -2 * Loglike = 717.620945 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.911743 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 738.956821 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.099762 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.786385 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 737.094632 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.243687 Actual update 1850 of 5000, Stored update 1850 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 /nogui option ignored -2 * Loglike = 724.142252 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.981308 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 721.859211 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.761733 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.611156 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 735.738917 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.020593 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 689.553020 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 719.659650 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.896864 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 732.161661 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 715.694475 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 714.677215 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 739.999249 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 686.061445 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 685.959941 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 721.072144 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.315254 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 728.556137 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.619786 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.835408 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 736.639324 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.864831 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.355514 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.502384 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.806687 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.750123 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 732.125503 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.395674 Actual update 1550 of 5000, Stored update 1550 of 5000 ECHO 0 -2 * Loglike = 735.960950 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.565546 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.356303 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.224369 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.930051 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.226969 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 701.211611 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 731.087084 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 739.979677 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.425860 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 687.620843 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 710.484404 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 693.167793 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 718.225660 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.030570 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 733.974340 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 740.501412 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.152293 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 685.247907 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.520088 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.821392 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 728.015554 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 713.840053 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.497130 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 736.353079 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 695.984325 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 685.247245 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 709.362813 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.223823 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.165718 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 731.655045 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 735.481742 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 697.701832 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 695.872852 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.390736 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.020950 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 700.146754 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.580714 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 734.668287 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.313088 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.214888 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.405288 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 688.865517 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.284681 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 721.013092 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.702010 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 736.897724 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.896409 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 696.073018 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.741410 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.548340 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.365359 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.807179 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.665233 Actual update 1850 of 5000, Stored update 1850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 736.796276 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.384975 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.411270 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.272744 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.882266 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.112639 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.333772 Actual update 2250 of 5000, Stored update 2250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 698.248978 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 739.757975 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.865290 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 691.780313 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.220131 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.607195 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 687.876610 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 720.591399 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 670.987240 Burning in for 100 iterations out of 500 -2 * Loglike = 697.785861 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 744.757660 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 728.617899 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 694.558013 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.640572 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 712.145607 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.528770 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 718.325345 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 667.792599 Burning in for 150 iterations out of 500 -2 * Loglike = 710.937421 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 732.680069 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.335372 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.575915 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.586382 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 721.070130 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.530696 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 733.798544 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 668.156771 Burning in for 200 iterations out of 500 -2 * Loglike = 700.508949 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 739.820972 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.302126 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.261848 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.380690 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.046377 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.676992 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 719.245063 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 674.477090 Burning in for 250 iterations out of 500 -2 * Loglike = 696.570630 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 737.128606 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.676118 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.470635 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.159911 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.437817 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.971151 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 718.394301 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 671.707691 Burning in for 300 iterations out of 500 -2 * Loglike = 701.832099 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 737.125040 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 687.938007 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 718.824107 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 697.660595 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.320484 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 685.005898 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 722.809446 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 672.360777 Burning in for 350 iterations out of 500 -2 * Loglike = 703.442479 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.349138 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 724.571352 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 721.292155 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.185281 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.653873 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 683.562036 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.611462 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 676.524311 Burning in for 400 iterations out of 500 -2 * Loglike = 704.510092 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.421298 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 721.704185 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 730.853493 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.501856 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.452531 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 684.739033 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 732.479173 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 670.398660 Burning in for 450 iterations out of 500 -2 * Loglike = 701.076953 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.468026 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 721.946981 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 720.846217 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.463659 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.725116 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 691.659883 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 732.398805 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 670.280547 Burning in for 500 iterations out of 500 -2 * Loglike = 703.759783 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 691.895901 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 719.608455 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.296632 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.153846 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.548153 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 692.823144 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 742.565882 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.980885 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 668.977072 -2 * Loglike = 695.170045 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.483579 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 721.750510 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.630780 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.853047 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 731.089147 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.714244 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.147639 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 687.298263 Actual update 3050 of 5000, Stored update 3050 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 723.378815 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.028906 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.528527 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.864253 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 739.495893 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.512323 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.612221 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.486161 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.219726 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 670.570527 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.051595 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 690.456958 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 739.565821 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.088610 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 703.005299 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.185443 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 674.559435 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.942412 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 722.770370 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.965407 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 745.645552 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.014596 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.395672 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 687.361045 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 667.897782 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.594080 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 730.512816 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.351725 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 741.564363 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 692.474122 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.321453 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 673.988775 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 688.249491 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 719.354370 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 729.502722 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.353873 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 731.249472 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.866834 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.984108 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 681.334274 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 718.959250 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.342021 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 730.244167 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.626613 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 736.402750 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.069535 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.726629 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.836863 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.496226 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 695.639657 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 684.663266 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 732.029274 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 743.876329 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.973497 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 666.876022 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.520588 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.586579 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 684.272998 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.880068 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 728.095155 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 734.694153 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 711.526860 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 677.390005 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 689.384626 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.248162 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 688.542286 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.595063 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 733.130874 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 726.569218 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 667.648475 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.680203 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 686.822288 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.207743 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.571773 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.563541 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 741.473972 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 731.218587 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 665.851436 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.860306 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.296213 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.902595 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 731.337664 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.774441 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 736.473054 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 730.483716 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 679.447175 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 686.684452 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.635091 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 683.852567 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.871389 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.503008 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 749.134373 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 707.390144 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 712.89 S.D. = 4.2503 S.E.M. = 0.060109 ECHO 0 Execution completed -2 * Loglike = 732.250189 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 667.396969 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.438844 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.108125 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 683.435916 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.894584 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.158050 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 738.706588 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.400695 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 668.778781 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.338563 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.932741 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 683.903532 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.424262 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 703.294905 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 737.800194 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 714.328746 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 665.935210 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 684.389526 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.251481 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.895569 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.860335 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.743929 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 742.046351 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 674.576044 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.701570 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 691.343576 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.495543 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.842929 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.151222 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 689.297732 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.642157 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 665.854385 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.382622 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.358759 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.159197 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 734.030419 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.066475 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.575295 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.706936 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 672.281903 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 725.212689 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.952861 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.921075 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 733.612922 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.521541 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.971266 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 725.537915 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 669.471846 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.804076 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.865801 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.740129 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 746.295312 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 701.590779 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.439074 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.240178 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.645810 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 684.442931 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.473754 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.475213 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 734.477995 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.857693 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.491585 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 724.706320 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 717.465584 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 679.124732 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.173887 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 684.285294 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 734.368511 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.077257 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.971998 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 723.896119 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.871040 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.313460 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 675.690020 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 738.470773 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.874543 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 699.635368 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 685.750093 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 730.290568 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 725.678622 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 670.011493 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.762452 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 739.242489 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 684.132888 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.636232 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.544220 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 725.105260 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 730.935056 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.208205 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 733.208347 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 669.337303 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.001555 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 693.330522 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.295555 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 715.396314 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.476541 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 719.788722 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 739.247031 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 671.854294 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.239577 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 693.322883 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 719.294166 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.062896 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.302326 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 724.500429 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.874129 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 679.920460 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.257966 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 728.671025 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.346841 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 718.500813 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 705.375962 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.356179 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 678.780278 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.313512 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 718.115517 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 719.540895 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.411209 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.595223 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 678.939870 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 716.800911 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 728.838065 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.030716 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.824944 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.733022 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 683.772124 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 679.877902 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 725.248117 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 732.809968 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 699.442618 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.561953 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 681.637195 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.478027 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.196509 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.327216 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.635518 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.657628 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.482898 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.574991 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.410157 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 693.552481 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 678.805670 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.266423 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.405874 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 695.920014 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.322204 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.038547 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 679.172912 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.900718 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 724.338592 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 690.317398 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 730.233668 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.078513 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 678.509175 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 722.981862 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.519954 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.260004 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 724.061615 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.896473 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 672.892446 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 725.174782 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 734.208989 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 737.94 S.D. = 4.5176 S.E.M. = 0.063888 ECHO 0 Execution completed -2 * Loglike = 689.041619 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.175242 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 726.032861 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.608208 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 723.336917 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 671.790034 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.684971 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.568732 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.040132 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 698.534766 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 723.323266 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.223854 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 671.447272 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 690.172850 Actual update 4800 of 5000, Stored update 4800 of 5000 ECHO 0 -2 * Loglike = 697.467779 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 721.663984 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.376307 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.622462 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 692.504071 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 670.218348 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.849867 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.970622 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 724.099334 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 685.281460 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.898140 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 667.982824 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 700.017738 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.623980 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 706.433096 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.195686 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 694.907358 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 667.214551 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.556578 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 716.725660 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.843778 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 725.093313 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.398873 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 677.698734 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.728740 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.281241 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.693991 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.775138 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 684.645964 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 671.293476 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 730.951285 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 710.584264 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 724.733171 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 666.014146 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.648050 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 674.299631 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.421084 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.117423 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 692.168082 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.24 S.D. = 4.0642 S.E.M. = 0.057476 ECHO 0 Execution completed -2 * Loglike = 691.891566 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.948861 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 677.368640 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 717.932553 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.295977 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 684.717275 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 676.909151 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.155628 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 722.918993 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.320110 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 681.285040 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.744166 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 721.106055 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.704198 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 673.028674 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.562462 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.415925 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 723.793776 Actual update 3550 of 5000, Stored update 3550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 675.564046 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.741747 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.488450 Actual update 4850 of 5000, Stored update 4850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 714.231273 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 670.530133 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.550724 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.977105 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 695.115838 Burning in for 100 iterations out of 500 -2 * Loglike = 717.369094 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 668.787948 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.514157 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 689.541272 Burning in for 150 iterations out of 500 -2 * Loglike = 722.337353 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 676.755100 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.742150 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.016697 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 691.708397 Burning in for 200 iterations out of 500 -2 * Loglike = 685.265821 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 724.378716 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.375894 Burning in for 250 iterations out of 500 -2 * Loglike = 675.693555 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 730.527197 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.271833 Burning in for 300 iterations out of 500 -2 * Loglike = 672.892453 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 734.210530 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 692.858112 Burning in for 350 iterations out of 500 -2 * Loglike = 729.626927 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 685.207034 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.47 S.D. = 4.6872 S.E.M. = 0.066288 ECHO 0 Execution completed -2 * Loglike = 671.169955 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.438082 Burning in for 400 iterations out of 500 -2 * Loglike = 718.594756 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 677.640667 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 694.671662 Burning in for 450 iterations out of 500 -2 * Loglike = 720.416449 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 682.577213 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.195105 Burning in for 500 iterations out of 500 -2 * Loglike = 719.397102 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 668.488598 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.583246 -2 * Loglike = 671.773215 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 725.535938 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 677.863236 Actual update 3000 of 5000, Stored update 3000 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 716.370767 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.90 S.D. = 3.9946 S.E.M. = 0.056492 ECHO 0 Execution completed -2 * Loglike = 717.214878 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.155688 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 669.883796 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.233640 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 673.575749 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 715.281185 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 688.182038 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 675.684083 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 732.883672 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.822269 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 672.252089 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.495410 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 691.251740 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 676.112012 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 723.495704 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.354522 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 681.892152 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 722.069292 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 686.751899 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.793008 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 683.945796 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.24 S.D. = 4.4573 S.E.M. = 0.063036 ECHO 0 Execution completed -2 * Loglike = 676.036624 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 727.506656 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.680640 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 696.476941 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.35 S.D. = 4.7116 S.E.M. = 0.066631 ECHO 0 Execution completed -2 * Loglike = 666.744179 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 732.400360 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 691.826038 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 671.291866 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 725.459219 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.613758 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 671.641317 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 731.927230 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 689.356352 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 673.506767 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 728.442698 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.460644 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 666.138222 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 718.997865 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.715713 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 666.543533 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 717.256878 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 666.320047 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 731.969191 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 687.170766 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 722.868515 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.209381 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 675.399148 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 728.051605 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.189452 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 674.951797 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.862928 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 679.429136 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.840392 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.087230 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.727695 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 681.329805 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.765639 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 673.351446 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 694.515042 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 672.403062 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.888942 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.136922 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 667.143030 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.982930 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 674.473124 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.375758 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.926385 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 680.159350 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.961374 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 672.910977 Actual update 4250 of 5000, Stored update 4250 of 5000 ECHO 0 -2 * Loglike = 682.515791 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.288229 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 678.091598 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.356047 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 677.571122 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.442746 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 679.934744 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 692.220705 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.593460 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.29 S.D. = 5.4258 S.E.M. = 0.076732 ECHO 0 Execution completed -2 * Loglike = 700.946809 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 669.065720 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.488633 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 677.919417 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 691.508537 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 682.468532 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 687.690185 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 672.803267 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.852420 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 674.132004 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.036701 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 665.914667 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 691.160815 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.531451 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 672.152000 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.971925 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 672.517321 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.495788 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 678.224686 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 690.583757 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.006100 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.458143 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 693.009036 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.764213 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 692.897533 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.367971 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.624032 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.851974 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.219410 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.440853 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.100045 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.759843 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 692.631568 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 691.546995 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 696.511028 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 695.744733 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.658245 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 693.149247 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.418240 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.413177 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.999442 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.861704 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 667.228555 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 674.67 S.D. = 5.0325 S.E.M. = 0.071170 ECHO 0 Execution completed -2 * Loglike = 691.746454 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.182056 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.802997 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.336284 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 690.378695 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.659588 Actual update 3450 of 5000, Stored update 3450 of 5000 /nogui option ignored -2 * Loglike = 694.448714 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.997128 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 687.665304 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.594906 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.710983 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.319193 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.741462 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.415716 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.389414 Actual update 3900 of 5000, Stored update 3900 of 5000 ECHO 0 -2 * Loglike = 695.124489 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.928032 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 690.162249 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.913623 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 699.449528 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.591540 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.454120 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.783517 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 692.012586 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.832503 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.403917 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 690.751976 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.897011 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.420188 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.366258 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.077780 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 689.946899 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.116005 Actual update 4800 of 5000, Stored update 4800 of 5000 /nogui option ignored -2 * Loglike = 691.308255 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.013022 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 693.735026 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 696.400389 Actual update 5000 of 5000, Stored update 5000 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 -2 * Loglike = 687.798897 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.60 S.D. = 4.2486 S.E.M. = 0.060084 ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 ECHO 0 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 695.601196 Burning in for 100 iterations out of 500 -2 * Loglike = 694.068495 Burning in for 150 iterations out of 500 -2 * Loglike = 692.612035 Burning in for 200 iterations out of 500 -2 * Loglike = 692.276965 Burning in for 250 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 696.735569 Burning in for 300 iterations out of 500 -2 * Loglike = 699.289208 Burning in for 350 iterations out of 500 -2 * Loglike = 702.473726 Burning in for 400 iterations out of 500 -2 * Loglike = 693.257161 Burning in for 450 iterations out of 500 -2 * Loglike = 693.783954 Burning in for 500 iterations out of 500 -2 * Loglike = 691.281637 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 700.623724 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.886127 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.565643 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored -2 * Loglike = 701.214732 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.475507 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.362873 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.555601 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.202488 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 694.768623 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 692.119361 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.920334 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.771310 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.476196 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 689.145473 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 700.029771 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.627946 Actual update 850 of 5000, Stored update 850 of 5000 /nogui option ignored -2 * Loglike = 702.484526 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 691.553478 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.267736 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.752381 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 697.034036 Actual update 1100 of 5000, Stored update 1100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 691.974509 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.631617 Burning in for 100 iterations out of 500 -2 * Loglike = 695.176617 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 693.263427 Burning in for 150 iterations out of 500 ECHO 0 ECHO 0 -2 * Loglike = 696.551256 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.260428 Burning in for 200 iterations out of 500 -2 * Loglike = 695.275931 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.054007 Burning in for 250 iterations out of 500 -2 * Loglike = 700.306084 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.850820 Burning in for 300 iterations out of 500 -2 * Loglike = 697.084083 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.979629 Burning in for 350 iterations out of 500 ECHO 0 -2 * Loglike = 697.865918 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.580844 Burning in for 400 iterations out of 500 -2 * Loglike = 698.533488 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.481573 Burning in for 450 iterations out of 500 -2 * Loglike = 700.819655 Burning in for 500 iterations out of 500 -2 * Loglike = 696.961071 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.629799 -2 * Loglike = 697.554014 Actual update 1600 of 5000, Stored update 1600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 699.345591 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.378737 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.209262 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.150970 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 697.005013 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.626504 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.302386 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 692.371008 Actual update 1850 of 5000, Stored update 1850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 699.575861 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 698.843172 Actual update 1900 of 5000, Stored update 1900 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.343749 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.110878 Burning in for 100 iterations out of 500 -2 * Loglike = 690.975902 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 708.429998 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 693.368010 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.424286 Burning in for 150 iterations out of 500 -2 * Loglike = 690.327501 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.361064 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.232680 Burning in for 200 iterations out of 500 -2 * Loglike = 697.650573 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.677037 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.970479 Burning in for 250 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 696.368345 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.542568 Actual update 500 of 5000, Stored update 500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.173566 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.976397 Burning in for 300 iterations out of 500 -2 * Loglike = 691.241174 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.283113 Burning in for 100 iterations out of 500 -2 * Loglike = 726.196323 Burning in for 350 iterations out of 500 -2 * Loglike = 694.119290 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.351929 Burning in for 150 iterations out of 500 -2 * Loglike = 692.444635 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.816452 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 724.062017 Burning in for 400 iterations out of 500 -2 * Loglike = 695.555615 Burning in for 200 iterations out of 500 -2 * Loglike = 693.912012 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 697.163612 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 723.406938 Burning in for 450 iterations out of 500 -2 * Loglike = 698.128393 Burning in for 250 iterations out of 500 -2 * Loglike = 701.153790 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 691.897046 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 721.821666 Burning in for 500 iterations out of 500 -2 * Loglike = 705.307461 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 699.626798 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.888866 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 700.835700 Burning in for 350 iterations out of 500 -2 * Loglike = 721.203233 -2 * Loglike = 700.809732 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.396829 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.218287 Burning in for 400 iterations out of 500 -2 * Loglike = 692.830521 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.030571 Actual update 2550 of 5000, Stored update 2550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 699.517355 Burning in for 450 iterations out of 500 -2 * Loglike = 697.837779 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.568576 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 721.244671 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.750308 Burning in for 500 iterations out of 500 -2 * Loglike = 693.127274 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.338826 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 724.074712 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 701.974752 -2 * Loglike = 703.459489 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.971869 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.895349 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.961862 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.494879 Actual update 2750 of 5000, Stored update 2750 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 734.233612 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.711626 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.762074 Actual update 2800 of 5000, Stored update 2800 of 5000 ECHO 0 -2 * Loglike = 697.343234 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 730.754185 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.431439 Actual update 2850 of 5000, Stored update 2850 of 5000 /nogui option ignored -2 * Loglike = 732.371332 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.324433 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.853372 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.681895 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 715.264934 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 694.008036 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.881386 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 729.892422 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.067523 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.338390 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.328122 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.306890 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.819821 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.133263 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.986443 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.823803 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 718.864073 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.793669 Actual update 1300 of 5000, Stored update 1300 of 5000 ECHO 0 -2 * Loglike = 712.763350 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.172915 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.390440 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.641433 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.916040 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.631369 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.262345 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 721.690835 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.557394 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 702.119540 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.901116 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 715.522879 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.546348 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.247712 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.683473 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 727.406980 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 699.737481 Actual update 3300 of 5000, Stored update 3300 of 5000 /nogui option ignored -2 * Loglike = 695.392673 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.126604 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.208067 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.128513 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.974050 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.989122 Actual update 850 of 5000, Stored update 850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 690.276268 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.004609 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.496369 Actual update 1650 of 5000, Stored update 1650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 721.698613 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.366319 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.543965 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.914420 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.915553 Burning in for 100 iterations out of 500 -2 * Loglike = 716.859660 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 695.075500 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.816093 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.355976 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.306182 Burning in for 150 iterations out of 500 -2 * Loglike = 733.635289 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.324520 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.794207 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.685451 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.970108 Burning in for 200 iterations out of 500 -2 * Loglike = 735.197032 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.632666 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.676643 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.097686 Burning in for 250 iterations out of 500 -2 * Loglike = 696.538808 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.870247 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.881613 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.638159 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 704.033551 Burning in for 300 iterations out of 500 -2 * Loglike = 694.112396 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.879815 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.015267 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 716.208696 Burning in for 350 iterations out of 500 -2 * Loglike = 690.646927 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.428906 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 720.988317 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.565301 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.106033 Burning in for 400 iterations out of 500 -2 * Loglike = 699.362532 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 702.523112 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.944429 Burning in for 450 iterations out of 500 -2 * Loglike = 722.636552 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 689.887058 Actual update 3800 of 5000, Stored update 3800 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 708.309351 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.887597 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.733733 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.623859 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.858252 Burning in for 100 iterations out of 500 -2 * Loglike = 702.050775 Burning in for 500 iterations out of 500 -2 * Loglike = 699.019937 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.065084 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.825011 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 701.273956 Burning in for 150 iterations out of 500 -2 * Loglike = 702.748341 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.340993 -2 * Loglike = 702.550530 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 733.927451 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.724713 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.389507 Burning in for 200 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 697.775997 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 735.004800 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 699.687962 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.052023 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 694.876869 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.434036 Burning in for 250 iterations out of 500 -2 * Loglike = 700.150210 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.546966 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 732.621999 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.092134 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.167738 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 708.630128 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.522369 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.067909 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 733.859055 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.761151 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.362199 Burning in for 350 iterations out of 500 -2 * Loglike = 696.057146 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 692.967164 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.889725 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 719.891056 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 710.955369 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.299412 Burning in for 400 iterations out of 500 -2 * Loglike = 705.784524 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.259906 Actual update 4150 of 5000, Stored update 4150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 701.061278 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.728115 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 731.483916 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 708.894756 Burning in for 450 iterations out of 500 -2 * Loglike = 697.592984 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.834783 Actual update 4200 of 5000, Stored update 4200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 696.819336 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.229062 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.915840 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 -2 * Loglike = 705.790279 Burning in for 500 iterations out of 500 -2 * Loglike = 711.820155 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 683.351710 Burning in for 100 iterations out of 500 -2 * Loglike = 697.793709 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.672721 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 693.810334 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.821928 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.747870 -2 * Loglike = 695.000708 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.814380 Burning in for 150 iterations out of 500 -2 * Loglike = 700.553475 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 699.297640 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.702180 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 716.743395 Actual update 1800 of 5000, Stored update 1800 of 5000 ECHO 0 -2 * Loglike = 684.618209 Burning in for 200 iterations out of 500 -2 * Loglike = 705.891686 Actual update 450 of 5000, Stored update 450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 697.558988 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.667394 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.748784 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.240007 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 686.948604 Burning in for 250 iterations out of 500 -2 * Loglike = 696.868428 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.521736 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.411719 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 695.624923 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 699.219183 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.198698 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 691.552067 Burning in for 300 iterations out of 500 -2 * Loglike = 696.937724 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.789483 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.864056 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 699.426416 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 718.745450 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.434376 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 688.832006 Burning in for 350 iterations out of 500 -2 * Loglike = 701.696599 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 699.728719 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.919562 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 698.845385 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 725.666108 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.391890 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 692.595679 Burning in for 400 iterations out of 500 -2 * Loglike = 698.244858 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 706.364524 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.372166 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.108470 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 725.627372 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.917818 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.860713 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.250603 Burning in for 450 iterations out of 500 -2 * Loglike = 695.024965 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.621710 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 723.878944 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.858424 Actual update 300 of 5000, Stored update 300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 695.264134 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 694.134218 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 688.886133 Burning in for 500 iterations out of 500 -2 * Loglike = 716.690861 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.242321 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.512402 Actual update 2150 of 5000, Stored update 2150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 717.673593 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 698.229806 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.016004 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.859851 -2 * Loglike = 695.987576 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.731779 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 719.118326 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.591621 Burning in for 100 iterations out of 500 -2 * Loglike = 707.921798 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.421610 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.529993 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.333233 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 693.529044 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.008197 Actual update 2250 of 5000, Stored update 2250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 703.902631 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.534023 Burning in for 150 iterations out of 500 -2 * Loglike = 718.262725 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.892905 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.120019 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 721.106834 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.962901 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 685.812947 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.658376 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 714.826909 Burning in for 200 iterations out of 500 -2 * Loglike = 698.741064 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 709.483884 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.642219 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 726.244118 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 697.868643 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.835865 Actual update 150 of 5000, Stored update 150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 713.169354 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.134230 Burning in for 250 iterations out of 500 -2 * Loglike = 700.003879 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.236929 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.752467 Burning in for 300 iterations out of 500 -2 * Loglike = 733.003090 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.485804 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.986421 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 716.973794 Burning in for 100 iterations out of 500 -2 * Loglike = 714.519242 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 694.728773 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.743098 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 682.899445 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 717.304468 Burning in for 350 iterations out of 500 -2 * Loglike = 723.498384 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.502473 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.771725 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.981231 Burning in for 150 iterations out of 500 -2 * Loglike = 701.172474 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.981714 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 702.591736 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.287193 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 723.005325 Burning in for 400 iterations out of 500 -2 * Loglike = 722.244266 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.452978 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 715.409175 Burning in for 200 iterations out of 500 -2 * Loglike = 699.359825 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.514949 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 685.003586 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.537493 Burning in for 450 iterations out of 500 -2 * Loglike = 694.320475 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 728.892296 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 718.596561 Burning in for 250 iterations out of 500 -2 * Loglike = 700.619115 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.333181 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.715195 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 719.904527 Burning in for 500 iterations out of 500 -2 * Loglike = 698.590845 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.658294 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 740.563586 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.241868 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 682.224693 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.070776 -2 * Loglike = 702.935581 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.893700 Burning in for 300 iterations out of 500 -2 * Loglike = 707.854109 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.083202 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 728.964733 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.879541 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.099729 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 717.090965 Burning in for 350 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 718.145046 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.111520 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.824510 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.378777 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.932272 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.247723 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.871552 Burning in for 400 iterations out of 500 -2 * Loglike = 698.084252 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 717.865664 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.079620 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.432789 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.981178 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 683.374966 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.628454 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 718.460574 Burning in for 450 iterations out of 500 -2 * Loglike = 711.627272 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.476997 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.820986 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 724.342841 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.919616 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 683.092984 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.148463 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 716.402415 Burning in for 500 iterations out of 500 -2 * Loglike = 696.909998 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 698.295511 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 717.197260 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.216097 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.09 S.D. = 3.3176 S.E.M. = 0.046917 ECHO 0 Execution completed -2 * Loglike = 720.600955 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.929969 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 685.983278 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.755056 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 716.799527 -2 * Loglike = 692.497385 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.417069 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.223968 Actual update 2500 of 5000, Stored update 2500 of 5000 ECHO 0 -2 * Loglike = 721.320492 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.871545 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.209109 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.424017 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.119111 Actual update 3650 of 5000, Stored update 3650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 730.888873 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.012934 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.260031 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.383828 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 682.210121 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 704.092933 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.289848 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.078330 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.551313 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.253129 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.937267 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.626331 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.304297 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.122635 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 721.254714 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.643804 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.343202 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.016259 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.011714 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.780642 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.868602 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.365331 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.475631 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.563041 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 705.670935 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 718.082115 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 715.552945 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.786275 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.036250 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 721.863525 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.470438 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.529023 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.998931 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 717.190409 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.340629 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.863193 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.530359 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 734.892118 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.936132 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.944395 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.594589 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 731.201948 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.016766 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.038467 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.617201 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.197741 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.918071 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.115081 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.441536 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.052174 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 691.463900 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.967721 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.140907 Actual update 700 of 5000, Stored update 700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 720.972225 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.583948 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.845822 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.366563 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 720.009968 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 694.810054 Actual update 4100 of 5000, Stored update 4100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 700.453986 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.160980 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 724.863789 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.445306 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.912570 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 688.820868 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.950480 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.144349 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.525444 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.243457 Burning in for 100 iterations out of 500 -2 * Loglike = 719.793975 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 729.133182 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.809228 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 711.872903 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 688.332035 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.490736 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.691554 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.251366 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.707492 Burning in for 150 iterations out of 500 -2 * Loglike = 712.409146 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 721.079600 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.214023 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.583587 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 687.846447 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.439314 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.022467 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.165616 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.798535 Burning in for 200 iterations out of 500 -2 * Loglike = 718.080002 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.385107 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.890046 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 707.317557 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.008180 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 716.170962 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.226068 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.167934 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.881503 Burning in for 250 iterations out of 500 -2 * Loglike = 714.677159 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 719.887167 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.458103 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.568100 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.514292 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.995292 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.455797 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.282865 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 721.315948 Burning in for 300 iterations out of 500 -2 * Loglike = 704.187780 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.153880 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.125682 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.378334 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 684.380573 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.215159 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.382443 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.815838 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.098073 Burning in for 350 iterations out of 500 -2 * Loglike = 704.790798 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.670699 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.836260 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 719.709302 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 688.556388 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.582248 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.031644 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.109153 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 726.255280 Burning in for 400 iterations out of 500 -2 * Loglike = 699.149580 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 717.785139 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.273418 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 715.169273 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.893192 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.811471 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.047634 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.591044 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.054920 Burning in for 450 iterations out of 500 -2 * Loglike = 700.027453 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 720.915196 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.828428 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.811269 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.369636 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 719.143783 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 698.902205 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 710.151417 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.832147 Burning in for 500 iterations out of 500 -2 * Loglike = 702.408419 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 713.238614 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.507974 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.877436 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 713.086593 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 688.187348 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.257075 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.721769 -2 * Loglike = 727.955876 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.931690 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 717.040141 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.417517 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.935014 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.925072 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 727.047349 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 693.581194 Actual update 4650 of 5000, Stored update 4650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 715.783558 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.067756 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.288790 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.511043 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.084752 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 684.155484 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.096497 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.415849 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.623277 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 723.106017 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 720.009554 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.129861 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.130961 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 692.094473 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 720.292612 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.973223 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.320624 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 722.731601 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 721.578198 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.474493 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.365415 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 700.878246 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 688.542301 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.377448 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 717.212437 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.626573 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.792116 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 731.862260 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 727.036464 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.298620 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.202807 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 690.114134 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.089916 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.899717 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.510394 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 722.666427 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 723.740803 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.514510 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.953664 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.118938 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.820133 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.408698 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.891446 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.765945 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.575291 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 717.622616 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.000256 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.699883 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.886146 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.133953 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.118830 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 683.334849 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 704.079142 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 734.192262 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.769338 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.970894 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.582577 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.347313 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 722.361408 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.969186 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 697.486360 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.745169 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.577607 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 728.352120 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 717.705000 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.834885 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.580057 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.846975 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.741044 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.469716 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 700.100300 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.327515 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.247615 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 710.919028 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.483207 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.082334 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.891374 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.553381 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.209839 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.256325 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.318931 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.894749 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 704.350377 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.684401 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.939073 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.992780 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.643819 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 723.109399 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.076376 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.027014 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.474807 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.525544 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 687.263225 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.418743 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 698.550209 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.553283 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.477675 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.119245 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 733.005734 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 689.379276 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.351904 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 718.836889 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 698.421037 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 724.911682 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.881238 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.522494 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.700541 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.561688 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.908354 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 720.167602 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.234593 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 728.516208 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.559350 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.577948 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 718.464001 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 686.596402 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 697.643945 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 717.371297 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.692052 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 725.394393 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.603871 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 727.104800 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 720.090801 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.075179 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.966906 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 721.215378 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.327710 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 723.762755 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 692.638179 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.33 S.D. = 4.1660 S.E.M. = 0.058917 ECHO 0 Execution completed -2 * Loglike = 703.470994 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.215270 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.011057 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 685.008702 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.846940 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 719.743762 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.978293 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 723.133815 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.350313 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.026876 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 714.941605 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.169361 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.487977 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 723.339004 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.002956 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 720.581073 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.573913 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.241524 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 687.533539 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.211043 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 706.068912 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 710.349150 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.509449 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 729.196708 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 717.767565 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 725.085659 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.227675 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 713.879381 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.635962 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.969024 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.089516 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.503281 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.939323 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 719.144066 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.066380 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.975797 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 724.876490 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.040973 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 698.900146 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.366915 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 716.427641 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 719.193428 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.865780 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.116743 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.278024 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 702.619346 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 702.025234 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 724.598108 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 719.491955 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.156486 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.627248 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.726957 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.193818 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.998269 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.900210 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 726.362809 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.900737 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.111080 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 696.310351 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.644134 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 720.351409 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 720.677992 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.225779 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.798486 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.855657 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.219126 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 697.061123 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.300482 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.185824 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.753522 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.544535 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.503538 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 719.073827 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 717.777134 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.070966 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 700.734071 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 690.333999 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 702.726520 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.577688 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 715.115805 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.644680 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.612692 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.809789 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 687.304916 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.282613 Actual update 3250 of 5000, Stored update 3250 of 5000 /nogui option ignored -2 * Loglike = 720.636904 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.926804 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.879240 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.672555 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.388676 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.861226 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.890461 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.623528 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.316446 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 719.876146 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.319431 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.875871 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.494356 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.427846 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 718.966524 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 727.717330 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.968439 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.647766 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 701.045779 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.296081 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.676076 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 717.027451 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.233517 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 718.412712 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 718.782798 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.617021 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 685.804492 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.331894 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.330532 Actual update 2800 of 5000, Stored update 2800 of 5000 ECHO 0 -2 * Loglike = 717.252964 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 719.037792 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 704.577970 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.572234 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 686.229378 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.339006 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 726.570663 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 722.702020 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.209087 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.783465 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.630748 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 708.334484 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 686.792147 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.546017 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 726.048700 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.132283 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.218425 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.958046 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 685.823983 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.051623 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 724.242790 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.618441 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.138958 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 716.742978 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.13 S.D. = 5.4265 S.E.M. = 0.076742 ECHO 0 Execution completed -2 * Loglike = 703.583953 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.619215 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.294992 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 719.241206 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.271534 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.872941 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.443125 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.136786 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.969530 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.057491 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.473044 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.167569 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.072400 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.801139 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.830800 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 720.557785 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.539070 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.116469 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.063016 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 720.667511 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.494564 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 728.912048 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.961248 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 717.143606 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.164537 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.129955 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 685.704885 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.376257 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.921765 Actual update 4400 of 5000, Stored update 4400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 718.899374 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.234046 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 719.881387 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.348133 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.944354 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.752637 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 723.931833 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.590873 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.018144 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.469610 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.650291 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 704.655832 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.745510 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.564809 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.359283 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 726.414488 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.307380 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.183505 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.444203 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.61 S.D. = 4.3665 S.E.M. = 0.061752 ECHO 0 Execution completed -2 * Loglike = 703.019977 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.112721 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.317760 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 712.911014 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.866768 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.087416 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.928928 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 723.971422 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.820040 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 719.933294 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.841585 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 702.091041 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.032097 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.305148 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.946034 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.654358 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 718.836651 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.622697 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.486848 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.283441 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.287738 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 717.584573 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.836399 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.111786 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.417280 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.290798 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 691.449689 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.663968 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 712.151025 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.923779 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.068306 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 719.037188 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.078467 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 726.085099 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 712.386473 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.144898 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.993081 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 721.014602 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 692.076426 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.025970 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.645196 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.773488 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.966153 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.574466 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.948798 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.372811 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.069268 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.153674 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.762632 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.507185 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 686.683672 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 718.558850 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.305159 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.369841 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.378920 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 725.077556 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.236014 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.192515 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.787919 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 720.779583 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.168765 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.799563 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.623658 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 683.865875 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.283026 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.512191 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.419799 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.877685 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 725.352980 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 719.808969 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.722745 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.626302 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 714.211067 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.818231 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 722.845717 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.480907 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.421514 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.871242 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.813757 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 720.879777 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 694.267044 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 700.561631 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.005114 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.800995 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 719.548693 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.129398 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.240926 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 733.747141 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 714.105335 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.572979 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.031670 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.995094 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 741.136277 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.177769 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 718.645143 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.540766 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 692.163327 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.247583 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 737.807914 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.560378 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 718.352212 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 694.536193 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 713.162981 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 721.268235 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.055455 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 719.449875 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 691.084391 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.632737 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.778625 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 718.964506 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.377961 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.364974 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.001759 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.063610 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 687.340192 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 724.436989 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 722.143290 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 720.075510 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.966794 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.10 S.D. = 5.6633 S.E.M. = 0.080092 ECHO 0 Execution completed -2 * Loglike = 691.142106 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.211921 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 721.269700 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 723.490435 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.659666 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 715.346895 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.896502 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.818966 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 688.624596 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 724.497836 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.362205 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.505473 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 720.488515 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 736.298328 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 687.892691 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 720.398507 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.238968 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 724.250509 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.715338 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.653007 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.676703 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.044289 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 718.235117 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.214933 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.660462 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.122294 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.026060 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.791852 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 720.594454 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.410173 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 718.702275 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.433147 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 723.951440 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 726.601036 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 724.919619 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 714.759593 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 719.560347 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.007542 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.740333 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.107963 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.23 S.D. = 4.4022 S.E.M. = 0.062257 ECHO 0 Execution completed -2 * Loglike = 719.181988 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 727.589265 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.418115 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.482935 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.048933 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 720.910581 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.541411 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 721.115612 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 730.015496 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.906172 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.960030 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 688.94 S.D. = 4.5496 S.E.M. = 0.064342 ECHO 0 Execution completed -2 * Loglike = 718.581769 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.803098 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 720.354963 Actual update 4200 of 5000, Stored update 4200 of 5000 /nogui option ignored -2 * Loglike = 717.571772 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.330682 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.012943 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 723.487132 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.494187 Actual update 4450 of 5000, Stored update 4450 of 5000 ECHO 0 -2 * Loglike = 719.713597 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.855061 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 723.028806 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.433879 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 717.78 S.D. = 4.3550 S.E.M. = 0.061589 ECHO 0 Execution completed -2 * Loglike = 721.380380 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.788864 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 718.453469 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 720.935504 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.160666 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.36 S.D. = 5.6866 S.E.M. = 0.080420 ECHO 0 Execution completed -2 * Loglike = 719.065768 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.276247 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 719.521593 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 719.752593 Actual update 5000 of 5000, Stored update 5000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 720.699565 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.56 S.D. = 2.1842 S.E.M. = 0.030889 ECHO 0 Execution completed /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 697.242917 Burning in for 100 iterations out of 500 -2 * Loglike = 692.554981 Burning in for 150 iterations out of 500 /nogui option ignored -2 * Loglike = 693.135230 Burning in for 200 iterations out of 500 -2 * Loglike = 696.206056 Burning in for 250 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 698.886883 Burning in for 300 iterations out of 500 -2 * Loglike = 696.395884 Burning in for 350 iterations out of 500 -2 * Loglike = 702.054757 Burning in for 400 iterations out of 500 -2 * Loglike = 694.520605 Burning in for 450 iterations out of 500 -2 * Loglike = 698.814141 Burning in for 500 iterations out of 500 -2 * Loglike = 696.719512 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 ECHO 0 -2 * Loglike = 695.925508 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 697.399969 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 690.661940 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.402288 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 694.199981 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 709.530178 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.592720 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 694.262505 Actual update 450 of 5000, Stored update 450 of 5000 /nogui option ignored -2 * Loglike = 694.142055 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.730595 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.030134 Actual update 600 of 5000, Stored update 600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 691.295778 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 691.933176 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.210990 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.341857 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.620327 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.991368 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 692.991875 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.120020 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.378586 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.422197 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.038952 Actual update 1150 of 5000, Stored update 1150 of 5000 ECHO 0 -2 * Loglike = 696.058442 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 696.452698 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.114894 Actual update 1300 of 5000, Stored update 1300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 698.851259 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.106795 Actual update 1400 of 5000, Stored update 1400 of 5000 /nogui option ignored -2 * Loglike = 705.687503 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 694.431708 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.067977 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.472145 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.332294 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 694.939853 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored -2 * Loglike = 694.062589 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.159726 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.490906 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.141776 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 692.755299 Actual update 1950 of 5000, Stored update 1950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 705.905281 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.029868 Actual update 2050 of 5000, Stored update 2050 of 5000 ECHO 0 -2 * Loglike = 692.222423 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.336715 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.469353 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.934974 Actual update 2250 of 5000, Stored update 2250 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 695.764656 Actual update 2300 of 5000, Stored update 2300 of 5000 /nogui option ignored -2 * Loglike = 697.172746 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.737566 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.293792 Actual update 2450 of 5000, Stored update 2450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 691.272475 Actual update 2500 of 5000, Stored update 2500 of 5000 ECHO 0 -2 * Loglike = 694.735645 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.500605 Actual update 2600 of 5000, Stored update 2600 of 5000 ECHO 0 -2 * Loglike = 694.523308 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.431038 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.868794 Actual update 2750 of 5000, Stored update 2750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 698.857900 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.009895 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.613917 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.724714 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 692.449904 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.977311 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.937737 Actual update 3100 of 5000, Stored update 3100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 694.464397 Actual update 3150 of 5000, Stored update 3150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 694.665863 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.216326 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 693.961688 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.351302 Burning in for 150 iterations out of 500 -2 * Loglike = 698.781848 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.765876 Burning in for 200 iterations out of 500 -2 * Loglike = 706.027813 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.775947 Burning in for 250 iterations out of 500 -2 * Loglike = 691.763508 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 719.132910 Burning in for 300 iterations out of 500 -2 * Loglike = 698.732600 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.148701 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 717.175371 Burning in for 350 iterations out of 500 -2 * Loglike = 697.731166 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 722.649969 Burning in for 400 iterations out of 500 -2 * Loglike = 691.411669 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.486535 Burning in for 450 iterations out of 500 -2 * Loglike = 691.031266 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.593997 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.446072 Burning in for 500 iterations out of 500 -2 * Loglike = 700.379787 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.953023 -2 * Loglike = 691.516629 Actual update 3800 of 5000, Stored update 3800 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 698.675351 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.971357 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 703.069521 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 727.707656 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.465505 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.675767 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.570578 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 727.183403 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.412869 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 726.514759 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.693900 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 733.325223 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 702.149283 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.382076 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.331574 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 723.712835 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 692.373031 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 714.249484 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.970748 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.760510 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.574060 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 724.361994 Actual update 600 of 5000, Stored update 600 of 5000 ECHO 0 -2 * Loglike = 701.431780 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 712.927501 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.904934 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.818874 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.306394 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.708079 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.022577 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.985791 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.811095 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.793240 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 692.503333 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.375697 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 698.861776 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 718.415300 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.356382 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.548795 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.176444 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.820006 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.869436 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.210601 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.630691 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.908703 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.328677 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 716.056422 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.305229 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 715.940673 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 723.583086 Actual update 1300 of 5000, Stored update 1300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 723.912437 Actual update 1350 of 5000, Stored update 1350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 725.056614 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.321374 Burning in for 100 iterations out of 500 -2 * Loglike = 725.416698 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.720813 Burning in for 150 iterations out of 500 -2 * Loglike = 727.103309 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.677450 Burning in for 200 iterations out of 500 -2 * Loglike = 693.948951 Burning in for 250 iterations out of 500 -2 * Loglike = 723.424715 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.324583 Burning in for 300 iterations out of 500 -2 * Loglike = 724.687392 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 691.529202 Burning in for 350 iterations out of 500 -2 * Loglike = 725.642919 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.334993 Burning in for 400 iterations out of 500 -2 * Loglike = 725.570586 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 695.650591 Burning in for 450 iterations out of 500 -2 * Loglike = 727.535309 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.022788 Burning in for 500 iterations out of 500 -2 * Loglike = 715.033015 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.017719 -2 * Loglike = 713.628808 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 721.401909 Actual update 1900 of 5000, Stored update 1900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 717.287606 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.243700 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.655094 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.892139 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.373401 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 688.594265 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.592087 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.462229 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.605519 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 696.54 S.D. = 4.1230 S.E.M. = 0.058308 ECHO 0 Execution completed -2 * Loglike = 691.360050 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.337021 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.796517 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.519072 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.831565 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 725.741258 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 726.327438 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.227427 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.772892 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.282850 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 721.972361 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 688.440100 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 716.297836 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.452051 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.071852 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.407152 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.367796 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 729.677876 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.979591 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.907118 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 687.746152 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.763985 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.629085 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 716.000983 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.630516 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 727.012943 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.371990 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 723.036186 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.363166 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.947238 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.186199 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 720.891793 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.362346 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 723.672058 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.615520 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 720.484758 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 692.602684 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.346304 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 692.637647 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.990735 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.508517 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 718.545568 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.900937 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.429299 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 728.640791 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.073048 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 721.601786 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.289863 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.390186 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 702.658041 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 720.388512 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.416995 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.315376 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.149825 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.748982 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 720.274489 Actual update 3550 of 5000, Stored update 3550 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 706.852777 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.940259 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.297408 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 712.336926 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.208662 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.755107 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.215426 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 720.826651 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.847168 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 722.138556 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.783006 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.293250 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.351338 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 729.676281 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.903588 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 695.547229 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.648871 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.229025 Actual update 2100 of 5000, Stored update 2100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 722.752386 Actual update 4000 of 5000, Stored update 4000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 692.163251 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.711814 Burning in for 100 iterations out of 500 -2 * Loglike = 716.521125 Actual update 4050 of 5000, Stored update 4050 of 5000 /nogui option ignored -2 * Loglike = 691.622106 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 707.368564 Burning in for 150 iterations out of 500 -2 * Loglike = 715.349639 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.435379 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.400523 Burning in for 200 iterations out of 500 -2 * Loglike = 722.276028 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.892500 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.404095 Burning in for 250 iterations out of 500 -2 * Loglike = 724.550646 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.458421 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.257080 Burning in for 300 iterations out of 500 -2 * Loglike = 714.848038 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 700.789829 Actual update 2400 of 5000, Stored update 2400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 713.702370 Burning in for 350 iterations out of 500 ECHO 0 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 729.103921 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.573587 Burning in for 400 iterations out of 500 -2 * Loglike = 690.535165 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 713.981100 Burning in for 450 iterations out of 500 -2 * Loglike = 720.887354 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.832554 Burning in for 100 iterations out of 500 -2 * Loglike = 722.038410 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 693.376163 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 719.152674 Burning in for 150 iterations out of 500 -2 * Loglike = 713.084254 Burning in for 500 iterations out of 500 -2 * Loglike = 720.396973 Actual update 4450 of 5000, Stored update 4450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 720.106890 Burning in for 200 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 706.205642 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.707485 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.615007 -2 * Loglike = 723.527533 Burning in for 250 iterations out of 500 -2 * Loglike = 711.316096 Burning in for 100 iterations out of 500 -2 * Loglike = 726.331902 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.981447 Actual update 2600 of 5000, Stored update 2600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 722.478759 Burning in for 300 iterations out of 500 -2 * Loglike = 710.830082 Burning in for 150 iterations out of 500 -2 * Loglike = 696.592280 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 712.125154 Burning in for 200 iterations out of 500 -2 * Loglike = 716.911217 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.406105 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.106667 Burning in for 250 iterations out of 500 -2 * Loglike = 722.237187 Burning in for 350 iterations out of 500 -2 * Loglike = 726.196559 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.498928 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.442955 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.379510 Burning in for 300 iterations out of 500 ECHO 0 -2 * Loglike = 727.639091 Burning in for 400 iterations out of 500 -2 * Loglike = 722.983968 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.109436 Burning in for 350 iterations out of 500 -2 * Loglike = 712.039641 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.939554 Burning in for 450 iterations out of 500 -2 * Loglike = 719.698269 Burning in for 400 iterations out of 500 -2 * Loglike = 715.903488 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.723486 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 727.077704 Actual update 4700 of 5000, Stored update 4700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 696.248780 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.948516 Burning in for 450 iterations out of 500 -2 * Loglike = 714.809004 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 722.927438 Burning in for 500 iterations out of 500 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 723.288706 Actual update 4750 of 5000, Stored update 4750 of 5000 /nogui option ignored -2 * Loglike = 693.314197 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 723.746383 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 717.684632 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.993785 -2 * Loglike = 700.323744 Burning in for 100 iterations out of 500 -2 * Loglike = 715.352206 Burning in for 500 iterations out of 500 -2 * Loglike = 691.948144 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 710.598918 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.609692 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.629230 Burning in for 150 iterations out of 500 -2 * Loglike = 714.996684 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 712.521881 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.957478 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 727.949553 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.075084 Burning in for 200 iterations out of 500 -2 * Loglike = 722.889005 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.493006 Actual update 500 of 5000, Stored update 500 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 695.341297 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.409859 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.191975 Burning in for 250 iterations out of 500 -2 * Loglike = 723.084880 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.522895 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 714.204420 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 690.546323 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 725.743700 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.757749 Burning in for 300 iterations out of 500 -2 * Loglike = 717.443390 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.924179 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.338522 Actual update 150 of 5000, Stored update 150 of 5000 ECHO 0 ECHO 0 -2 * Loglike = 689.290265 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.372927 Burning in for 350 iterations out of 500 -2 * Loglike = 724.784538 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.298188 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.241305 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.106697 Burning in for 400 iterations out of 500 -2 * Loglike = 693.124883 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.766208 Actual update 300 of 5000, Stored update 300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 711.157200 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.256727 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.665646 Burning in for 450 iterations out of 500 -2 * Loglike = 698.764208 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 735.742355 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.847763 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.499963 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.567949 Burning in for 500 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 697.482295 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.446637 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 716.078581 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 728.214805 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.409328 -2 * Loglike = 707.739998 Burning in for 100 iterations out of 500 -2 * Loglike = 700.780702 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.647013 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 722.682663 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.786913 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 700.479914 Burning in for 150 iterations out of 500 -2 * Loglike = 690.996931 Actual update 3400 of 5000, Stored update 3400 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 717.049876 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 719.282487 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.390541 Burning in for 200 iterations out of 500 -2 * Loglike = 721.022071 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.622049 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.523082 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.103990 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.806870 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 707.003131 Burning in for 250 iterations out of 500 -2 * Loglike = 709.374283 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 696.136510 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.023425 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.069907 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.754664 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.838753 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 708.754933 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 719.510904 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 702.606086 Actual update 150 of 5000, Stored update 150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 703.949522 Burning in for 300 iterations out of 500 -2 * Loglike = 688.195237 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.499302 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.377311 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.478568 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.310417 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.200231 Burning in for 100 iterations out of 500 -2 * Loglike = 712.382299 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.054599 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 698.868442 Burning in for 150 iterations out of 500 -2 * Loglike = 704.687533 Burning in for 350 iterations out of 500 -2 * Loglike = 690.800175 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.440992 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.169064 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.515074 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.273033 Actual update 300 of 5000, Stored update 300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 698.630274 Burning in for 200 iterations out of 500 -2 * Loglike = 691.807698 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.119771 Burning in for 400 iterations out of 500 -2 * Loglike = 708.225187 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 726.139241 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.619661 Actual update 1200 of 5000, Stored update 1200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 715.560570 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.73 S.D. = 4.7419 S.E.M. = 0.067060 ECHO 0 Execution completed -2 * Loglike = 711.006110 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 698.924820 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.149161 Burning in for 250 iterations out of 500 -2 * Loglike = 705.587994 Burning in for 450 iterations out of 500 -2 * Loglike = 718.031840 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.119514 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 684.757252 Burning in for 100 iterations out of 500 -2 * Loglike = 697.510700 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.684540 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.057008 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.797594 Burning in for 300 iterations out of 500 -2 * Loglike = 712.880240 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 723.524468 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 680.459780 Burning in for 150 iterations out of 500 -2 * Loglike = 707.672686 Burning in for 500 iterations out of 500 -2 * Loglike = 699.877841 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.459423 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.109167 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 717.937288 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.043201 -2 * Loglike = 680.057890 Burning in for 200 iterations out of 500 -2 * Loglike = 699.286106 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 700.836100 Burning in for 350 iterations out of 500 -2 * Loglike = 717.118815 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 713.766234 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 696.884083 Actual update 3900 of 5000, Stored update 3900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 694.182699 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.786415 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 681.990087 Burning in for 250 iterations out of 500 -2 * Loglike = 705.025953 Burning in for 400 iterations out of 500 -2 * Loglike = 712.604899 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.609851 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.816851 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.189665 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 699.552770 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 688.588253 Burning in for 300 iterations out of 500 -2 * Loglike = 722.995876 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 702.087174 Burning in for 450 iterations out of 500 -2 * Loglike = 718.952090 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.157398 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 692.685942 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.052010 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 684.643748 Burning in for 350 iterations out of 500 -2 * Loglike = 722.638567 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.079229 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.252305 Burning in for 500 iterations out of 500 -2 * Loglike = 713.190377 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 710.514777 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.437126 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.260072 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.859174 Burning in for 400 iterations out of 500 -2 * Loglike = 721.024512 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 711.716897 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.580793 -2 * Loglike = 697.344073 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.000974 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.347477 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 714.291353 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.909072 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 682.303893 Burning in for 450 iterations out of 500 -2 * Loglike = 712.790994 Actual update 1600 of 5000, Stored update 1600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 687.253790 Burning in for 500 iterations out of 500 -2 * Loglike = 699.308680 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.130538 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 713.544509 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 723.631852 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.234286 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.621711 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 714.968094 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.913199 -2 * Loglike = 691.290048 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.924882 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 713.405821 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.627257 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.443855 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.199331 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 702.668969 Actual update 150 of 5000, Stored update 150 of 5000 ECHO 0 -2 * Loglike = 689.144033 Actual update 4250 of 5000, Stored update 4250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 714.711020 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.321430 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 725.817760 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.394198 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.684096 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.688556 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.413155 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.962127 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.620029 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.992031 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.221074 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.412797 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.173678 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.289328 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.695569 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.021028 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.498914 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.621974 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.016885 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 728.668990 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.414463 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.241822 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 678.316372 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.009997 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 711.451908 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.413725 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.112245 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 721.190246 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.072837 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.764533 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 684.930007 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.654584 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.060742 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.373516 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 723.741108 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.793540 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 724.227741 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.232167 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 681.782889 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.594004 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 700.905852 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.463348 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.384789 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.440034 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.977580 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.818671 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.458956 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.605687 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.407779 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.636076 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.557853 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.152946 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 677.681018 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.128254 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.248645 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.309736 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.959666 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.161814 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 709.566166 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.836689 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 681.304207 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.073302 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.846729 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.420516 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.522364 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.407687 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.688024 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.938895 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 682.258913 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.922442 Actual update 4700 of 5000, Stored update 4700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.411047 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 699.004121 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.136088 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 712.426878 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 714.904401 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.702912 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.670781 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.765242 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.541158 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.399386 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.480040 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.591816 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 711.727682 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.665981 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 679.933036 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.167797 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.551683 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 719.023822 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 699.381913 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 708.918291 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.540097 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.404256 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 680.224557 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.077342 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.229908 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.423431 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.215338 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.298482 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.987986 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 679.517103 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.353188 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.548126 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.183969 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.428730 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.321003 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.608983 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 709.343197 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.107545 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.408268 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 711.293304 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.942958 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 730.783933 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 698.906239 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.502403 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.694676 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.985865 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 723.810269 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.067539 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.851492 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 713.605539 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.596368 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.261089 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.592068 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 711.551163 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 713.418326 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.281475 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 679.932318 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 701.460914 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 724.104881 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 703.345012 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.048005 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.630698 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 705.136823 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.901863 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.294610 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.378685 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.654973 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 718.106868 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 718.460710 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 721.406972 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 680.758356 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.748794 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 699.247628 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.050252 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.133628 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 722.115675 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 717.342443 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 687.168091 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.900359 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.983939 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.414192 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.535413 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 724.274573 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 714.983631 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.656762 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.742063 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.705854 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 705.692783 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 710.248886 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 733.010162 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.104014 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 686.711688 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.997874 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 700.382260 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.588644 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 715.136877 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.943596 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.471272 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 681.618153 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.754657 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.948587 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.935460 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.379596 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 718.930063 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 711.529798 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 720.432353 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 714.390691 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.811725 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.035252 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.799330 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 724.068361 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.266955 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 715.231120 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 688.088511 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.28 S.D. = 4.5738 S.E.M. = 0.064684 ECHO 0 Execution completed -2 * Loglike = 711.350447 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.831390 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 702.366210 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 682.238171 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.960853 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.802617 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.687321 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 712.242683 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.700445 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 687.095759 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.003179 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 725.124256 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 711.307593 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 717.235870 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 713.975745 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 697.613465 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 682.300521 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 723.892139 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.764937 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.902127 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.603366 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.464816 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.636908 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.129116 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.424583 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 722.420426 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.311704 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.717438 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.026326 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.512135 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.409471 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 682.121372 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 724.883116 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.365822 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.996706 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.383942 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.363063 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.037024 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 681.570565 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 734.172985 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.015531 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.531188 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.745171 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.621342 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.057534 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.526032 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 682.170716 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.890290 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 714.907246 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.134913 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.269704 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.035391 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.303611 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.301314 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.813182 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.475994 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 726.725176 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.857368 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.691954 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.572317 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.770010 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.835873 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.707930 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 709.442784 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 681.647780 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.298504 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.523678 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.802484 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 703.985627 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 713.251844 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 708.998778 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 682.138321 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.458671 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.316798 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 723.727169 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.800410 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.684796 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.327506 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.011497 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.614526 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.352802 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.178864 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.018494 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.618655 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.896679 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.373608 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.129275 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 695.788538 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 719.642091 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.557057 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.899176 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.547447 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.649820 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 681.432722 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 697.615371 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 723.010255 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 702.532259 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 701.370442 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.816732 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.429891 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.274910 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.157855 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 722.094539 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.684882 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.114727 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.259983 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 693.560263 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.224832 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.696885 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 725.696020 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.074604 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.143510 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.095586 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.550092 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.415975 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.200776 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 731.594059 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.105072 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 702.644296 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.836252 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.106571 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 700.076598 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.183782 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 724.313874 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.467864 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.960600 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.481602 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.757655 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.744541 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.980369 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.869016 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 723.495730 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.110078 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.293136 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 683.812835 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.705328 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.345667 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 723.987582 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.337585 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.855892 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.549753 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 684.206679 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.431304 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.243016 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 724.363655 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.433901 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.447690 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 714.097413 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 684.086242 Actual update 2300 of 5000, Stored update 2300 of 5000 /nogui option ignored -2 * Loglike = 696.620533 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.895947 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.728923 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 718.221760 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.756485 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.469689 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 683.612888 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.445268 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.855409 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.667524 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.545335 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 704.263486 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.592671 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.215520 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.292310 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 718.239916 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 710.225765 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.982467 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.096840 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.700989 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.087398 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.398981 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 727.820964 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.666725 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 681.095935 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.538753 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.768566 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 699.120340 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.481441 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.218009 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.060796 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 679.509397 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 713.662461 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 709.214245 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 705.048938 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 725.422689 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.164847 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 712.044012 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.431537 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.800346 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.301911 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.976130 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 730.358755 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 701.175874 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.363352 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.911511 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.240800 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.678150 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.237790 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 734.191884 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.904665 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.464098 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.948121 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.936783 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.265951 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.329785 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 725.500817 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.999034 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.927640 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.102512 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.433947 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.331311 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.652599 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.199437 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.092649 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.327120 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.438324 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.576375 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.439515 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.581555 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.449082 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.172129 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.828690 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.698309 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 687.433138 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.471430 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.377265 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 728.484329 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.340247 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.717672 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.719463 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.165067 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 714.537985 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 720.277844 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.436962 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 719.834359 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.283126 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 715.305869 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.047571 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.905516 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 719.252120 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.675513 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.413502 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.224090 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 712.225107 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.257672 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.974855 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 686.505441 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.619952 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.930128 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.086814 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.919155 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.257829 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.052668 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.827384 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.278298 Actual update 3400 of 5000, Stored update 3400 of 5000 /nogui option ignored -2 * Loglike = 720.857627 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.415851 Actual update 4750 of 5000, Stored update 4750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 728.268994 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.224437 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 698.603989 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 680.230462 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 707.414959 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.012189 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 711.905058 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 727.989119 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 697.718686 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.079392 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.191618 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.437405 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 683.540696 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.179034 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.325113 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.301894 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.573764 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.176444 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.480929 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.570295 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 724.950768 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 720.325285 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.697388 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.879686 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.359842 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.543152 Actual update 4950 of 5000, Stored update 4950 of 5000 ECHO 0 -2 * Loglike = 703.499740 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.642252 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 711.275689 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.396810 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 701.644975 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 682.729623 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.261574 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.406988 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.569322 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 724.756078 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.742629 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.994396 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 681.426378 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.218776 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 727.625121 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.211817 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 693.142010 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.203933 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 686.532689 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.012649 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.088183 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.531945 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.457254 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 699.194176 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.801489 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.614522 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 715.748261 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 721.418586 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.762819 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.394751 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 679.701962 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 709.379656 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.877827 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.416533 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.948517 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.774682 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 686.794243 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.482186 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.288320 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 727.731693 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.169286 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 699.819347 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.907337 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.091299 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.214878 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.080584 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.575326 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 698.731073 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.286514 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 731.819208 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.455979 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 731.404684 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.696818 Actual update 4550 of 5000, Stored update 4550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 679.811597 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.916769 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 715.880629 Actual update 4950 of 5000, Stored update 4950 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 701.116168 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.959364 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 679.084142 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.112669 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.700740 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.820889 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.760722 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 729.089809 Burning in for 100 iterations out of 500 -2 * Loglike = 679.657724 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 713.407422 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.02 S.D. = 2.5621 S.E.M. = 0.036234 ECHO 0 Execution completed -2 * Loglike = 699.306889 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.009167 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 701.527421 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.526710 Burning in for 150 iterations out of 500 -2 * Loglike = 688.572014 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.309669 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.131926 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 729.470012 Burning in for 200 iterations out of 500 -2 * Loglike = 698.992992 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 679.409388 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.952101 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.668951 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.250622 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 734.622516 Burning in for 250 iterations out of 500 -2 * Loglike = 718.502508 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 687.019660 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.053589 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 734.931975 Burning in for 300 iterations out of 500 -2 * Loglike = 698.403865 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.428960 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.201612 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 704.350977 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.659483 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 733.091878 Burning in for 350 iterations out of 500 -2 * Loglike = 702.214079 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.089347 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.304716 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.088738 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 737.169235 Burning in for 400 iterations out of 500 -2 * Loglike = 700.465642 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.359886 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 732.632685 Burning in for 450 iterations out of 500 -2 * Loglike = 699.832085 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.085761 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.125403 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 678.706631 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 734.655240 Burning in for 500 iterations out of 500 -2 * Loglike = 701.802438 Actual update 4500 of 5000, Stored update 4500 of 5000 /nogui option ignored -2 * Loglike = 682.481256 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.254941 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 709.251444 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 731.758406 -2 * Loglike = 691.262721 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.910398 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.881150 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.236530 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.21 S.D. = 4.1369 S.E.M. = 0.058504 ECHO 0 Execution completed -2 * Loglike = 681.426684 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.923533 Actual update 4400 of 5000, Stored update 4400 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 709.443193 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.68 S.D. = 4.2750 S.E.M. = 0.060457 ECHO 0 Execution completed -2 * Loglike = 700.830150 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 680.377719 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 730.872710 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.451700 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.481920 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.930418 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 733.729518 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.722035 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.407969 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.776850 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 726.544054 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.911556 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 689.213421 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.728645 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 732.911763 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.466215 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.963577 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.004637 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 729.291108 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.132578 Actual update 4650 of 5000, Stored update 4650 of 5000 ECHO 0 -2 * Loglike = 682.179540 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.001585 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.953135 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 744.836009 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.424510 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.697430 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.817227 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.455837 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 685.433948 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.860164 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.008100 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 737.910000 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.123915 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.369252 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 700.909471 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 726.694327 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 687.161872 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 725.964747 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.491845 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 680.540181 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 729.020497 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.421729 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 727.356803 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 682.070891 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.833048 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 725.758739 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 686.283645 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 733.911376 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.182007 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.69 S.D. = 2.9210 S.E.M. = 0.041310 ECHO 0 Execution completed -2 * Loglike = 728.305209 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.096289 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.523263 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.157786 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 729.722380 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.122363 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 739.160894 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 728.434100 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 733.107459 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 730.704554 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 731.509550 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 733.162909 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 729.263335 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 732.099954 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.224405 Actual update 1400 of 5000, Stored update 1400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 736.883498 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 731.589008 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 729.323026 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.057891 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.12 S.D. = 5.4635 S.E.M. = 0.077266 ECHO 0 Execution completed -2 * Loglike = 727.569216 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.593810 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.47 S.D. = 2.1980 S.E.M. = 0.031084 ECHO 0 Execution completed -2 * Loglike = 732.857912 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 679.717884 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.41 S.D. = 4.0274 S.E.M. = 0.056955 ECHO 0 Execution completed -2 * Loglike = 728.846048 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 730.251826 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.478183 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 729.169890 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 728.872558 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 729.406572 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 740.970450 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 733.410281 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 729.067116 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 739.981362 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 733.103298 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 730.564459 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 730.726618 Actual update 2300 of 5000, Stored update 2300 of 5000 /nogui option ignored -2 * Loglike = 730.713983 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 740.626459 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 728.244993 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 729.969001 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.548645 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 734.948487 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 731.790030 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 735.504205 Actual update 2700 of 5000, Stored update 2700 of 5000 ECHO 0 -2 * Loglike = 731.379167 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 734.937207 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 741.087564 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 730.868945 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 731.475888 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 727.973839 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 728.430599 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 730.843433 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 730.335373 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 729.719298 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 728.378153 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 734.215155 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 743.537063 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 728.544167 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 733.849183 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 731.548925 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 734.753220 Actual update 3550 of 5000, Stored update 3550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 726.606506 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.132767 Burning in for 100 iterations out of 500 -2 * Loglike = 728.123176 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 714.673087 Burning in for 150 iterations out of 500 -2 * Loglike = 728.842683 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.334183 Burning in for 200 iterations out of 500 -2 * Loglike = 736.330417 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 721.156996 Burning in for 250 iterations out of 500 -2 * Loglike = 729.030167 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.746012 Burning in for 300 iterations out of 500 -2 * Loglike = 732.699120 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.529031 Burning in for 350 iterations out of 500 -2 * Loglike = 737.319186 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.013494 Burning in for 400 iterations out of 500 -2 * Loglike = 742.063745 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.468575 Burning in for 450 iterations out of 500 -2 * Loglike = 735.756820 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 721.105902 Burning in for 500 iterations out of 500 -2 * Loglike = 729.008527 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.531669 -2 * Loglike = 728.581649 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 738.269716 Actual update 4150 of 5000, Stored update 4150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 729.237626 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 726.374031 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 727.705796 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 735.100313 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.489187 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 730.291008 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.501483 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 735.816479 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 720.172469 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 741.365835 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.341165 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.595890 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 731.401666 Actual update 350 of 5000, Stored update 350 of 5000 /nogui option ignored -2 * Loglike = 734.852830 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 711.915560 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 735.749327 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 731.651630 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 729.874711 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 715.201082 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 732.849802 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.221339 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 727.601986 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.621704 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 729.871928 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.636733 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 733.946494 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 717.485466 Actual update 700 of 5000, Stored update 700 of 5000 ECHO 0 -2 * Loglike = 741.499761 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.119071 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 732.466589 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 717.875998 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 735.791096 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 715.583157 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 717.229044 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.889635 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 724.215790 Actual update 1000 of 5000, Stored update 1000 of 5000 /nogui option ignored -2 * Loglike = 714.662172 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.785244 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 718.775985 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.581720 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 718.371962 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.315407 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 718.235422 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.003685 Actual update 1400 of 5000, Stored update 1400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 726.538190 Actual update 1450 of 5000, Stored update 1450 of 5000 /nogui option ignored -2 * Loglike = 717.795709 Actual update 1500 of 5000, Stored update 1500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 /nogui option ignored -2 * Loglike = 731.806282 Actual update 1550 of 5000, Stored update 1550 of 5000 ECHO 0 -2 * Loglike = 727.568979 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 732.19 S.D. = 4.1463 S.E.M. = 0.058638 ECHO 0 Execution completed -2 * Loglike = 715.295997 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 722.107229 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.915622 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 718.231649 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.539962 Actual update 1800 of 5000, Stored update 1800 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 713.509295 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.113423 Burning in for 100 iterations out of 500 -2 * Loglike = 706.223591 Burning in for 150 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.463489 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 709.788956 Burning in for 200 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 709.716502 Burning in for 250 iterations out of 500 -2 * Loglike = 716.033022 Actual update 1950 of 5000, Stored update 1950 of 5000 ECHO 0 -2 * Loglike = 707.189581 Burning in for 300 iterations out of 500 -2 * Loglike = 727.334109 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.623252 Burning in for 350 iterations out of 500 -2 * Loglike = 718.170778 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.991977 Burning in for 400 iterations out of 500 -2 * Loglike = 715.724749 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 711.992228 Burning in for 450 iterations out of 500 -2 * Loglike = 719.867528 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.830675 Burning in for 500 iterations out of 500 -2 * Loglike = 719.295447 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.162936 -2 * Loglike = 716.325950 Actual update 2250 of 5000, Stored update 2250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 715.954981 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.625030 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 725.974322 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.489686 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.840384 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.970526 Actual update 200 of 5000, Stored update 200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 713.824487 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 714.151277 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.172428 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 711.863387 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 726.021131 Actual update 2550 of 5000, Stored update 2550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.971999 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.149712 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.551388 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.776513 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.376362 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.229426 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.716786 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.339940 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.662688 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 720.589363 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.470982 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.518863 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.865183 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.631061 Actual update 2900 of 5000, Stored update 2900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 709.313170 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 714.561486 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.493833 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 713.768177 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 712.254426 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 716.051930 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.163582 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 716.068580 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.717425 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.660189 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.647239 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.327730 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.103794 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.228853 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.944954 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.776655 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.113917 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.196757 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 727.848357 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.637739 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.741740 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.465181 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 721.300041 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.972303 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 719.672185 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 721.057259 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.461938 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 709.764200 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.278446 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.442024 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.454240 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.584836 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 715.939036 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.669475 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 722.393788 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.963406 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 711.685310 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.442383 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.725761 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.840983 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.778615 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 723.595339 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.363041 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.040296 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 706.367411 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.529393 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.114377 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.918976 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.310724 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.546219 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 715.173616 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.581800 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.340567 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 706.642369 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 715.606423 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.288791 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.146824 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.921544 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 736.044971 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.736706 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 721.841538 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 712.168514 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.237825 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.494665 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.396098 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.222615 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 712.147774 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 716.099341 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.918611 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.555287 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 710.438984 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 723.201827 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.166889 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.344670 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 712.454810 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 728.833962 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.478456 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.414500 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.227200 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.807830 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.569126 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.362230 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.559244 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 731.012409 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.644575 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 723.717021 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.678581 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 725.606241 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.825633 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.502815 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.018545 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.626647 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 709.968949 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.527825 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.900445 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.133451 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.049620 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.787092 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.436118 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.328356 Actual update 3550 of 5000, Stored update 3550 of 5000 /nogui option ignored -2 * Loglike = 709.851873 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 708.980463 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.794177 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 718.124367 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.989377 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 713.134598 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 719.39 S.D. = 4.9455 S.E.M. = 0.069940 ECHO 0 Execution completed ECHO 0 -2 * Loglike = 709.925183 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 715.538586 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.220032 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.862569 Actual update 4000 of 5000, Stored update 4000 of 5000 ECHO 0 -2 * Loglike = 709.099565 Actual update 4050 of 5000, Stored update 4050 of 5000 /nogui option ignored -2 * Loglike = 706.299433 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.151864 Actual update 4150 of 5000, Stored update 4150 of 5000 /nogui option ignored -2 * Loglike = 711.542289 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 709.438522 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.136327 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.259530 Actual update 4350 of 5000, Stored update 4350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 713.349902 Actual update 4400 of 5000, Stored update 4400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 713.611716 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 695.651479 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 710.385145 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.207597 Burning in for 150 iterations out of 500 -2 * Loglike = 707.931760 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 693.952357 Burning in for 200 iterations out of 500 -2 * Loglike = 713.793848 Actual update 4600 of 5000, Stored update 4600 of 5000 ECHO 0 -2 * Loglike = 696.998557 Burning in for 250 iterations out of 500 -2 * Loglike = 708.706597 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.805316 Burning in for 300 iterations out of 500 -2 * Loglike = 713.118319 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.303148 Burning in for 350 iterations out of 500 -2 * Loglike = 709.637936 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.039439 Burning in for 400 iterations out of 500 -2 * Loglike = 696.158635 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 695.880193 Burning in for 500 iterations out of 500 -2 * Loglike = 707.866510 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.186926 -2 * Loglike = 711.627895 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.718274 Actual update 4900 of 5000, Stored update 4900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 696.420533 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.360720 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.522965 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.063786 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.782471 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.000920 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 695.153199 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 711.140141 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.219587 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.079788 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.247172 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 691.354497 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.824184 Actual update 600 of 5000, Stored update 600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... ECHO 0 Burning in for 50 iterations out of 500 -2 * Loglike = 692.535989 Actual update 650 of 5000, Stored update 650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 723.356524 Burning in for 100 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 694.030346 Actual update 700 of 5000, Stored update 700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 719.829273 Burning in for 150 iterations out of 500 -2 * Loglike = 693.556524 Burning in for 100 iterations out of 500 Burning in for 50 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 691.079910 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.815543 Burning in for 200 iterations out of 500 -2 * Loglike = 690.285423 Burning in for 150 iterations out of 500 -2 * Loglike = 710.502548 Burning in for 100 iterations out of 500 -2 * Loglike = 698.844114 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.293364 Burning in for 250 iterations out of 500 ECHO 0 -2 * Loglike = 692.641048 Burning in for 200 iterations out of 500 -2 * Loglike = 708.270237 Burning in for 150 iterations out of 500 -2 * Loglike = 691.752135 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 729.148859 Burning in for 300 iterations out of 500 -2 * Loglike = 696.666215 Burning in for 250 iterations out of 500 -2 * Loglike = 707.651116 Burning in for 200 iterations out of 500 -2 * Loglike = 737.857639 Burning in for 350 iterations out of 500 -2 * Loglike = 697.115086 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.736414 Burning in for 250 iterations out of 500 -2 * Loglike = 691.447781 Burning in for 300 iterations out of 500 -2 * Loglike = 730.273101 Burning in for 400 iterations out of 500 -2 * Loglike = 693.816642 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.633332 Burning in for 350 iterations out of 500 -2 * Loglike = 716.674186 Burning in for 300 iterations out of 500 -2 * Loglike = 701.513118 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 722.828679 Burning in for 450 iterations out of 500 -2 * Loglike = 698.325774 Burning in for 400 iterations out of 500 -2 * Loglike = 723.475354 Burning in for 350 iterations out of 500 -2 * Loglike = 695.111346 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 694.633053 Burning in for 450 iterations out of 500 -2 * Loglike = 695.530134 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.077992 Burning in for 500 iterations out of 500 -2 * Loglike = 725.774110 Burning in for 500 iterations out of 500 -2 * Loglike = 717.149284 Burning in for 400 iterations out of 500 -2 * Loglike = 695.462430 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.769993 -2 * Loglike = 693.830497 -2 * Loglike = 713.172581 Burning in for 450 iterations out of 500 -2 * Loglike = 695.068412 Actual update 1200 of 5000, Stored update 1200 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 714.255234 Burning in for 500 iterations out of 500 -2 * Loglike = 696.597657 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 714.924801 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 706.729982 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.54 S.D. = 2.7982 S.E.M. = 0.039572 ECHO 0 Execution completed -2 * Loglike = 721.306093 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 697.794259 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.144400 Actual update 100 of 5000, Stored update 100 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 730.179327 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.064662 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.404730 Actual update 1350 of 5000, Stored update 1350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 709.279400 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.642192 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.543747 Actual update 1400 of 5000, Stored update 1400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 724.354942 Actual update 150 of 5000, Stored update 150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 688.772649 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.802095 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 725.891413 Actual update 250 of 5000, Stored update 250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 710.426421 Burning in for 100 iterations out of 500 -2 * Loglike = 719.675663 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.810000 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.393259 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.805712 Burning in for 100 iterations out of 500 -2 * Loglike = 720.676096 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.906991 Burning in for 150 iterations out of 500 -2 * Loglike = 723.824151 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 691.817198 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.896985 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 695.713853 Burning in for 150 iterations out of 500 -2 * Loglike = 735.808165 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.926158 Burning in for 200 iterations out of 500 -2 * Loglike = 717.962625 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 706.609593 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.232686 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.632977 Burning in for 200 iterations out of 500 -2 * Loglike = 717.941478 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.343818 Burning in for 250 iterations out of 500 -2 * Loglike = 723.846405 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.083431 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.218421 Burning in for 250 iterations out of 500 -2 * Loglike = 696.773481 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 725.356784 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.851952 Burning in for 300 iterations out of 500 -2 * Loglike = 701.290993 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 706.510111 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.110871 Burning in for 300 iterations out of 500 -2 * Loglike = 698.433528 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.723251 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.576264 Burning in for 350 iterations out of 500 -2 * Loglike = 689.415933 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.312027 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.357429 Burning in for 350 iterations out of 500 -2 * Loglike = 696.138186 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 719.107778 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 718.856047 Burning in for 400 iterations out of 500 -2 * Loglike = 688.290633 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.904833 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.265550 Burning in for 400 iterations out of 500 -2 * Loglike = 692.414349 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.875658 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.796784 Burning in for 450 iterations out of 500 -2 * Loglike = 689.209639 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.885247 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.959542 Burning in for 450 iterations out of 500 -2 * Loglike = 694.171543 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 719.991949 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.994977 Burning in for 500 iterations out of 500 -2 * Loglike = 691.562768 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 715.258150 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 698.333657 Burning in for 500 iterations out of 500 -2 * Loglike = 693.418494 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 724.442976 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.714994 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 714.848795 -2 * Loglike = 708.787301 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.164068 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 699.889439 -2 * Loglike = 717.317446 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.128415 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.642293 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.305470 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 738.839249 Actual update 800 of 5000, Stored update 800 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 695.561405 Actual update 800 of 5000, Stored update 800 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 720.424265 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.076047 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.548076 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.228276 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 689.895250 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.821458 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.394369 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.725301 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.470506 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 721.168168 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.720086 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.969007 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.011404 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.050725 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.483881 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.934382 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.419462 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 733.421930 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.912543 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.998971 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.580146 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 716.085641 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 725.890928 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.333390 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.535968 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.598728 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.807825 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.562110 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 726.982757 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 697.630483 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.404049 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 693.466591 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 726.987738 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.023727 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.276249 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.588312 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.559931 Actual update 1000 of 5000, Stored update 1000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 692.621794 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 708.372843 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 724.149391 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.965745 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.774247 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.140201 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.511951 Burning in for 100 iterations out of 500 -2 * Loglike = 712.066720 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 721.066968 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.966660 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 724.248838 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.034585 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.484014 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 714.022628 Burning in for 150 iterations out of 500 -2 * Loglike = 709.565386 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 720.302641 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.738061 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.809899 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.093765 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.448736 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.182276 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.454483 Burning in for 200 iterations out of 500 -2 * Loglike = 726.591731 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.888983 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.625257 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.028963 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.543006 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.691871 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 714.251561 Burning in for 250 iterations out of 500 -2 * Loglike = 712.465326 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 735.436383 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.982891 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.525004 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.459624 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.247250 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 721.893983 Burning in for 300 iterations out of 500 -2 * Loglike = 706.616762 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 736.963048 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.674810 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.156951 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.243917 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.749844 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 717.783992 Burning in for 350 iterations out of 500 -2 * Loglike = 712.456383 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 737.141373 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.204651 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.632848 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.954781 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.718115 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.895478 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 735.392849 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 723.953141 Burning in for 400 iterations out of 500 -2 * Loglike = 693.372709 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.580779 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.033966 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 721.159690 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.143065 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.900114 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.443793 Burning in for 450 iterations out of 500 -2 * Loglike = 711.951132 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 722.168067 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.556634 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 727.043751 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.253671 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.410850 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.382273 Burning in for 500 iterations out of 500 -2 * Loglike = 699.216113 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 714.004785 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 719.706149 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.752588 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.860871 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.932128 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.328597 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.131672 -2 * Loglike = 698.888711 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.432542 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.323319 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 725.025255 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.834315 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.219268 Actual update 1000 of 5000, Stored update 1000 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 709.641279 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 715.253496 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 692.366967 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.284349 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.149414 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 717.069615 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 716.124693 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 694.559053 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 709.034016 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.147521 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.037067 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.538460 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.183534 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 722.109322 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.025975 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.269429 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.344705 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.830238 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.159407 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.652117 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 712.052579 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.702359 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.726108 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 688.955777 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 714.432125 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.589441 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.626290 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.259473 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.006241 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.090174 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.197412 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.238457 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.677166 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 731.312709 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.963848 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.785515 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 715.911647 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 690.197359 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 730.943937 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.966737 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.369632 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.657927 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.265690 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.605480 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.692504 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.667312 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 716.165887 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 721.107905 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.945335 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 696.307659 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 718.926904 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.328281 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.805402 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.684998 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.752237 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 723.641602 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.193720 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 713.394719 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.114565 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.597302 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 699.788294 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.238001 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.638195 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.494446 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.450240 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.856521 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 714.105472 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.676574 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.606459 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 726.903031 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.686938 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.528084 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.456365 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.141573 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.380835 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.138611 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 737.638816 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.442001 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.348324 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.312175 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.571873 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.702171 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.356615 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 713.216003 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 722.236538 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 717.915892 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.967291 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 718.528691 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.547337 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.826033 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.669630 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 737.544754 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.643741 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.409895 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.979663 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.892737 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 699.208412 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.528411 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.915830 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.267510 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 720.337978 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.302138 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.503371 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.584235 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.522766 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.794093 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 721.814195 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 714.463488 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.613599 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.215735 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.472091 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.292086 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.035949 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.161724 Actual update 1750 of 5000, Stored update 1750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 691.757674 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.219023 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.042015 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 712.418465 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.736805 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.022779 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.745960 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 735.213961 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.183000 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.808851 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 717.738742 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.300858 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 728.337537 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.405554 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.777767 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.752346 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.714627 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.600835 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 696.294254 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 721.590982 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 725.446296 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 726.464557 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 712.188203 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.067429 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 719.078489 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.298569 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.079299 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 722.447585 Actual update 2750 of 5000, Stored update 2750 of 5000 /nogui option ignored -2 * Loglike = 718.238880 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 706.927703 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.877321 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.915661 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.351747 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 728.156948 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.356634 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 713.548060 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.920973 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.476579 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.562640 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.947983 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 724.005498 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.892802 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.094377 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.145167 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 706.619401 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.151150 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.467304 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.217149 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 716.418753 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.095973 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 693.419045 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 695.695474 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.655393 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.503054 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 728.483331 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.127923 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 693.277669 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 693.261565 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.401724 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.960746 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.661681 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 735.519088 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.309821 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.810948 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.008652 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.492307 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.354877 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.586844 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.256437 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 693.721782 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.073868 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 721.664162 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.453793 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.005935 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.056736 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 692.830233 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 726.426724 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.071624 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.830704 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 720.018801 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 703.010832 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 723.228013 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.152140 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.700822 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.114473 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 713.934333 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 732.580090 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.270744 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.430389 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.785445 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.198091 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 695.764000 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.151360 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.638902 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.407094 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 711.587049 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.003847 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.412086 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 696.348351 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 694.359424 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 727.522817 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.638151 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 711.476878 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.930514 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 718.806376 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.636727 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 696.900971 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.378157 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 734.841334 Actual update 3350 of 5000, Stored update 3350 of 5000 /nogui option ignored -2 * Loglike = 716.469474 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.539042 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.182639 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.230118 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 719.113239 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 720.048756 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.800374 Actual update 3300 of 5000, Stored update 3300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 722.194836 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.062506 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.874333 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.239764 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.151569 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 725.894246 Actual update 3450 of 5000, Stored update 3450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 725.425031 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 718.843737 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.313631 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.243567 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.054793 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 721.340561 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.102407 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.747414 Burning in for 100 iterations out of 500 -2 * Loglike = 709.876707 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.265891 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.896903 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.832652 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.502443 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.018146 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.045498 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.493207 Burning in for 150 iterations out of 500 -2 * Loglike = 713.988424 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.254232 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.902177 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.869188 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.944703 Actual update 3600 of 5000, Stored update 3600 of 5000 ECHO 0 -2 * Loglike = 713.342732 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 695.948694 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.413807 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.624722 Burning in for 200 iterations out of 500 -2 * Loglike = 718.668777 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.328513 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.422671 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.731548 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.851852 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.573950 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 698.857845 Burning in for 250 iterations out of 500 -2 * Loglike = 712.985202 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 716.537514 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.129492 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.718321 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.263112 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.801620 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.506764 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.149735 Burning in for 300 iterations out of 500 -2 * Loglike = 714.992495 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.957254 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.077188 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.165832 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 727.523824 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 727.413499 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.467255 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.382519 Burning in for 350 iterations out of 500 -2 * Loglike = 717.094339 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 708.131944 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.474929 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.080726 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 716.816745 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.613663 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 713.661164 Burning in for 400 iterations out of 500 -2 * Loglike = 706.175402 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 715.377339 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.914645 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.458324 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 688.865071 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 713.796972 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.656118 Burning in for 450 iterations out of 500 -2 * Loglike = 728.119686 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.101843 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.490706 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.487811 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.723280 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.721655 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.761608 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.088880 Burning in for 500 iterations out of 500 -2 * Loglike = 726.954616 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.099571 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 712.632237 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 697.050930 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 711.381844 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.003516 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 707.629720 -2 * Loglike = 699.729472 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 735.834288 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 712.226353 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 719.319295 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.900321 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 720.840811 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.690915 Actual update 3950 of 5000, Stored update 3950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 729.337090 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 725.691998 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.695874 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 697.344556 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 718.397317 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.844986 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.748473 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 718.956634 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 722.248524 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 712.631691 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.504841 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 715.579444 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.328846 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.602378 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.162341 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 717.339397 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 718.105842 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.468863 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 728.967372 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.810335 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.380753 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 718.358202 Actual update 4050 of 5000, Stored update 4050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 732.395364 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.107269 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 724.150517 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.946753 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.186071 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.187798 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.699474 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.995135 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.823637 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.301680 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.202426 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.197814 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.549395 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 720.777986 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.610316 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.762673 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.110238 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.482231 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 716.526553 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.899810 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.350785 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 729.725396 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.923380 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.932528 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.806659 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.602176 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.263124 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.766565 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.658001 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.385112 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.210336 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.642129 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.258276 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 694.864524 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 724.396310 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 728.478911 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 693.119468 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 692.029535 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.57 S.D. = 4.4721 S.E.M. = 0.063246 ECHO 0 Execution completed -2 * Loglike = 718.872506 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.589627 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.234527 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.238676 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 708.083320 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.274104 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 725.378551 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.354417 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 709.556875 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.773018 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.278822 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.311585 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.993150 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 725.689455 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 722.033496 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.168594 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.828824 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 691.096899 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.048342 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 732.074865 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.445649 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 719.236638 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.131118 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.182523 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.396986 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 713.617798 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.744853 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 723.813331 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.247715 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.617625 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.442448 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.385272 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.700176 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.439852 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.124175 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 727.692612 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.970591 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 719.487093 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.128476 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 713.560167 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.539774 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.312255 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 725.809691 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.657494 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 717.915418 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.536720 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.315484 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 709.595258 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.557880 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.812835 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.592319 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 722.153758 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 690.283666 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.334857 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.749175 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.571502 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 716.209184 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 724.139516 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.644620 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.257339 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 691.666929 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.197721 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.188995 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 695.614447 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 726.339353 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 710.433579 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.161764 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.051197 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 695.091228 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.656590 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.027969 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 728.126344 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.348264 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.417519 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 711.904471 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 716.152332 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 702.779442 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 720.103530 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.055118 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 722.719141 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 727.783808 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 715.233663 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.249124 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 711.154420 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.890167 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.980987 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.753991 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 727.797758 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.446032 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 725.289049 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.751265 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.549080 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 714.266058 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 694.165627 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.666563 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.740893 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 721.178239 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.182917 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.562930 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.564101 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.464730 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 707.272128 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 714.439336 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.123368 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.192803 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.851747 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 710.084277 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 718.052697 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.331559 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.091314 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.825046 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 712.917356 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.656945 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 717.521513 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.751587 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.039011 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 697.552588 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.701739 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.839825 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.946684 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.883517 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.030316 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.787269 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.396843 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.302074 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.346069 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.301003 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 720.430762 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.109591 Actual update 4650 of 5000, Stored update 4650 of 5000 ECHO 0 -2 * Loglike = 721.934735 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.501579 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.698891 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.552071 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.284298 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.992419 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.922936 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 719.507899 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.685359 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.691660 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 713.890046 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 689.150544 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.13 S.D. = 4.0952 S.E.M. = 0.057914 ECHO 0 Execution completed -2 * Loglike = 706.141534 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.509236 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 723.034950 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.017055 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.388568 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 725.71 S.D. = 5.2964 S.E.M. = 0.074903 ECHO 0 Execution completed -2 * Loglike = 703.036656 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.371953 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.584608 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.143298 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.126441 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 713.099708 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.830981 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.65 S.D. = 5.1976 S.E.M. = 0.073505 ECHO 0 Execution completed -2 * Loglike = 713.752210 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.119976 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 709.205850 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 725.818713 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.645632 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.811846 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.872527 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.675931 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.263141 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.769181 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.144641 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.421049 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.751506 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 725.299614 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.079555 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 713.450748 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 712.102307 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.713034 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.035682 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 717.977371 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 712.534946 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 716.511641 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.268864 Actual update 2450 of 5000, Stored update 2450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 726.852741 Actual update 4550 of 5000, Stored update 4550 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 708.180369 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 719.903498 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.781504 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 723.156267 Burning in for 100 iterations out of 500 -2 * Loglike = 716.527488 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.219185 Burning in for 150 iterations out of 500 -2 * Loglike = 715.374364 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 720.172620 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 721.949197 Burning in for 200 iterations out of 500 -2 * Loglike = 705.923668 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.878323 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 726.925780 Burning in for 250 iterations out of 500 -2 * Loglike = 704.501188 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.707504 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 726.145035 Burning in for 300 iterations out of 500 -2 * Loglike = 701.942310 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 725.151749 Burning in for 350 iterations out of 500 -2 * Loglike = 710.694669 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 729.645979 Burning in for 400 iterations out of 500 -2 * Loglike = 716.252819 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.419823 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 724.135221 Burning in for 450 iterations out of 500 -2 * Loglike = 701.762134 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 725.912799 Burning in for 500 iterations out of 500 -2 * Loglike = 724.258181 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.203093 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.99 S.D. = 5.2786 S.E.M. = 0.074650 ECHO 0 Execution completed -2 * Loglike = 713.136123 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 723.090183 -2 * Loglike = 716.013756 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.784381 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 722.936087 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.159228 Actual update 3050 of 5000, Stored update 3050 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 702.477430 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.874248 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 723.920052 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 701.741617 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 707.219033 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 726.125013 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.534905 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 719.284401 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 709.476758 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 726.596649 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.141057 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.086730 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.90 S.D. = 4.0730 S.E.M. = 0.057602 ECHO 0 Execution completed -2 * Loglike = 706.147377 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.357248 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.657463 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.725360 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 737.363510 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.418307 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 718.103041 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.225152 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.934156 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.397743 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 720.552898 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.931903 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.923680 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 707.396610 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.172495 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.685140 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.103602 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.760749 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.347783 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 720.339384 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.109016 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 718.998279 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.408943 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 727.977500 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 701.516411 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.187776 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.915958 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 725.139185 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.415774 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 731.028858 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 710.544343 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 712.448553 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.29 S.D. = 4.2550 S.E.M. = 0.060175 ECHO 0 Execution completed -2 * Loglike = 722.793632 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.388970 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 725.094394 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.754650 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 723.134088 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.349660 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 723.944938 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 709.506867 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.895216 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 726.315062 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.733193 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.822378 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.065826 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 726.750227 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.872239 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 721.029717 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.052176 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.227463 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 705.499202 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.661303 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 725.026600 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.067628 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.197734 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.908222 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 725.043342 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.795480 Actual update 4850 of 5000, Stored update 4850 of 5000 /nogui option ignored -2 * Loglike = 722.093942 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.961613 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 724.632498 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 709.210269 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.017959 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.919325 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.756885 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 721.421081 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.829291 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 732.830276 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 727.251231 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.457031 Actual update 2100 of 5000, Stored update 2100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 729.900302 Actual update 2150 of 5000, Stored update 2150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 724.714057 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.099571 Burning in for 100 iterations out of 500 -2 * Loglike = 723.080113 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.325226 Burning in for 150 iterations out of 500 -2 * Loglike = 723.620421 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 697.550681 Burning in for 200 iterations out of 500 -2 * Loglike = 725.833380 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.896692 Burning in for 250 iterations out of 500 -2 * Loglike = 734.313029 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.477604 Burning in for 300 iterations out of 500 -2 * Loglike = 721.378259 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.449267 Burning in for 350 iterations out of 500 -2 * Loglike = 721.895604 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.820926 Burning in for 400 iterations out of 500 -2 * Loglike = 723.511878 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.373364 Burning in for 450 iterations out of 500 -2 * Loglike = 728.969451 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.504111 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.880649 Burning in for 500 iterations out of 500 -2 * Loglike = 697.415304 -2 * Loglike = 727.767604 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.607216 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.45 S.D. = 4.5845 S.E.M. = 0.064835 ECHO 0 Execution completed ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 724.409827 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 726.934131 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.023584 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 736.812943 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.483373 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.420278 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.161229 Actual update 200 of 5000, Stored update 200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 724.898859 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.767053 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 724.580622 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.330450 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 722.038833 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.797125 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.234528 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.382484 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.258882 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 697.589725 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 696.593626 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 723.161509 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.457460 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 721.929161 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 697.296397 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 727.008827 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 694.343380 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.603608 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 735.056913 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 720.464440 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 725.542045 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 690.995506 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 724.934707 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 726.780033 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.170636 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.691037 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 694.946675 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.177241 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.486836 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.490497 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.436662 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 729.609019 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.634636 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 720.226485 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.995495 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 725.681881 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 731.634356 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.211009 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 697.420823 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 737.984059 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.296544 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 727.995694 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.758273 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 720.001445 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.777179 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 721.221505 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.599320 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 730.493139 Actual update 4150 of 5000, Stored update 4150 of 5000 ECHO 0 -2 * Loglike = 696.440294 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.135323 Actual update 4200 of 5000, Stored update 4200 of 5000 /nogui option ignored -2 * Loglike = 697.785615 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.566672 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.596197 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 721.153072 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 696.918826 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 726.013705 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.825481 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 724.397679 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.511565 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 730.038873 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.504990 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 732.344549 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 694.889757 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 722.604820 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 726.200619 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.070786 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 727.314617 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.306970 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.143401 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.187198 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 726.761267 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.461923 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.690617 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 723.474312 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.715770 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 727.814803 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 692.850347 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 731.603077 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.038122 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.396361 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 732.115809 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.569664 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.087223 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.028573 Actual update 2300 of 5000, Stored update 2300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 696.019276 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.788203 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.258291 Actual update 2450 of 5000, Stored update 2450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 697.982542 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 696.071998 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.175438 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.860836 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.175559 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.109236 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.239053 Actual update 2800 of 5000, Stored update 2800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 720.408053 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 725.18 S.D. = 4.1970 S.E.M. = 0.059355 ECHO 0 Execution completed -2 * Loglike = 702.840753 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 697.602693 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.504546 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.240402 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 693.048105 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 695.737365 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.865464 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.618037 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.231734 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.268651 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 699.110059 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.968875 Actual update 3400 of 5000, Stored update 3400 of 5000 ECHO 0 -2 * Loglike = 697.596511 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.575484 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.748455 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.202033 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 696.872725 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.582734 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.371078 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.050633 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.579870 Actual update 3850 of 5000, Stored update 3850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 702.775796 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.072635 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.187432 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.353909 Actual update 4050 of 5000, Stored update 4050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 694.679703 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.213762 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.386478 Actual update 4200 of 5000, Stored update 4200 of 5000 /nogui option ignored -2 * Loglike = 694.529301 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 700.290050 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.000937 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.009736 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.779298 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 697.577775 Actual update 4500 of 5000, Stored update 4500 of 5000 ECHO 0 -2 * Loglike = 698.395774 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.024498 Actual update 4600 of 5000, Stored update 4600 of 5000 /nogui option ignored -2 * Loglike = 695.563719 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.564482 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.978728 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.690607 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.479477 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.415812 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.803059 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.174277 Actual update 5000 of 5000, Stored update 5000 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 694.074610 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.82 S.D. = 2.6727 S.E.M. = 0.037798 ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 700.911257 Burning in for 100 iterations out of 500 -2 * Loglike = 694.049800 Burning in for 150 iterations out of 500 -2 * Loglike = 695.865451 Burning in for 200 iterations out of 500 -2 * Loglike = 700.749397 Burning in for 250 iterations out of 500 -2 * Loglike = 697.971130 Burning in for 300 iterations out of 500 -2 * Loglike = 698.459415 Burning in for 350 iterations out of 500 -2 * Loglike = 701.802709 Burning in for 400 iterations out of 500 -2 * Loglike = 697.259193 Burning in for 450 iterations out of 500 -2 * Loglike = 701.020263 Burning in for 500 iterations out of 500 -2 * Loglike = 697.028579 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 699.707569 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.604220 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.356803 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.882655 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.293428 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 708.639994 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.158266 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.212572 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.678483 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 691.953478 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.150796 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 695.357136 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 693.526729 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 691.937861 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 701.419745 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 693.636998 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 699.517779 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.376591 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.187666 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.374219 Actual update 1050 of 5000, Stored update 1050 of 5000 ECHO 0 -2 * Loglike = 699.818194 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 695.938625 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 697.433143 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.974216 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.147776 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 700.967462 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.416877 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.294129 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.554326 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 703.139929 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.800166 Actual update 1600 of 5000, Stored update 1600 of 5000 ECHO 0 -2 * Loglike = 701.453397 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.893597 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.838610 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.295626 Actual update 1800 of 5000, Stored update 1800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... /nogui option ignored -2 * Loglike = 693.683008 Actual update 1850 of 5000, Stored update 1850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.364255 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 725.351931 Burning in for 100 iterations out of 500 -2 * Loglike = 694.481107 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.714835 Burning in for 150 iterations out of 500 -2 * Loglike = 705.003606 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.594677 Burning in for 200 iterations out of 500 /nogui option ignored -2 * Loglike = 702.639331 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.991057 Burning in for 250 iterations out of 500 /nogui option ignored -2 * Loglike = 697.381560 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 721.071182 Burning in for 300 iterations out of 500 -2 * Loglike = 699.203537 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.955371 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 694.546627 Actual update 2200 of 5000, Stored update 2200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 724.713723 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 694.815018 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.171269 Burning in for 100 iterations out of 500 -2 * Loglike = 717.492234 Burning in for 450 iterations out of 500 -2 * Loglike = 696.543710 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.474671 Burning in for 150 iterations out of 500 -2 * Loglike = 723.329306 Burning in for 500 iterations out of 500 -2 * Loglike = 700.236066 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.683074 Burning in for 200 iterations out of 500 -2 * Loglike = 721.110799 -2 * Loglike = 709.211131 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 -2 * Loglike = 709.612426 Burning in for 250 iterations out of 500 -2 * Loglike = 693.378721 Actual update 2450 of 5000, Stored update 2450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 712.563951 Burning in for 300 iterations out of 500 -2 * Loglike = 695.035022 Actual update 2500 of 5000, Stored update 2500 of 5000 ECHO 0 -2 * Loglike = 721.493407 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.309514 Burning in for 350 iterations out of 500 -2 * Loglike = 697.295254 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 716.868841 Burning in for 400 iterations out of 500 -2 * Loglike = 718.996651 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 701.030341 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.097160 Burning in for 450 iterations out of 500 -2 * Loglike = 714.034410 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 703.016508 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 711.018024 Burning in for 500 iterations out of 500 -2 * Loglike = 698.542726 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 721.947489 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.333422 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.802526 -2 * Loglike = 717.428247 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.135075 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 731.514293 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 702.627086 Actual update 2850 of 5000, Stored update 2850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.904774 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.318824 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.523369 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.785694 Burning in for 100 iterations out of 500 -2 * Loglike = 720.601617 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.503943 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.379476 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.801977 Burning in for 150 iterations out of 500 -2 * Loglike = 719.830628 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.941676 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.700047 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 711.228702 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 688.515755 Burning in for 200 iterations out of 500 -2 * Loglike = 715.119430 Actual update 550 of 5000, Stored update 550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 695.182179 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.551800 Burning in for 250 iterations out of 500 -2 * Loglike = 709.554037 Actual update 300 of 5000, Stored update 300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 717.242279 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.230509 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.046543 Burning in for 300 iterations out of 500 -2 * Loglike = 726.023921 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.387376 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.362490 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.450769 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 730.230433 Burning in for 100 iterations out of 500 -2 * Loglike = 704.705151 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.503097 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.161181 Actual update 3200 of 5000, Stored update 3200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.741192 Burning in for 400 iterations out of 500 -2 * Loglike = 726.071848 Burning in for 150 iterations out of 500 /nogui option ignored -2 * Loglike = 692.325760 Burning in for 450 iterations out of 500 -2 * Loglike = 713.583229 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.653440 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 724.469410 Burning in for 100 iterations out of 500 -2 * Loglike = 716.230040 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 727.442706 Burning in for 200 iterations out of 500 -2 * Loglike = 690.656268 Burning in for 500 iterations out of 500 -2 * Loglike = 723.036467 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 699.731281 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 725.600741 Burning in for 150 iterations out of 500 -2 * Loglike = 708.643995 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 733.316157 Burning in for 250 iterations out of 500 -2 * Loglike = 689.689967 -2 * Loglike = 715.121998 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.388349 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 726.758680 Burning in for 200 iterations out of 500 -2 * Loglike = 731.903910 Burning in for 300 iterations out of 500 -2 * Loglike = 706.124795 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 721.598626 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.196490 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 726.538089 Burning in for 250 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 708.006094 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 730.721605 Burning in for 350 iterations out of 500 -2 * Loglike = 716.238639 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.886046 Burning in for 300 iterations out of 500 -2 * Loglike = 691.623576 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 699.282067 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 723.989790 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 705.910406 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 734.902756 Burning in for 400 iterations out of 500 -2 * Loglike = 729.645507 Burning in for 350 iterations out of 500 -2 * Loglike = 690.487659 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.736560 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 728.826231 Burning in for 450 iterations out of 500 -2 * Loglike = 727.819064 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 709.156515 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 732.373963 Burning in for 400 iterations out of 500 -2 * Loglike = 685.203356 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.921239 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 733.243834 Burning in for 500 iterations out of 500 -2 * Loglike = 723.388471 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.265421 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 724.880368 Burning in for 450 iterations out of 500 -2 * Loglike = 692.567871 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.196569 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 728.987417 -2 * Loglike = 713.589616 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 717.163436 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 725.277011 Burning in for 500 iterations out of 500 -2 * Loglike = 687.976006 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 695.253728 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.103410 Actual update 850 of 5000, Stored update 850 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 720.549282 -2 * Loglike = 719.671126 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.272437 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.658040 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.545658 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 730.731626 Actual update 100 of 5000, Stored update 100 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 719.517334 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 683.659728 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 709.177383 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 703.489883 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.983355 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 730.729785 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.879626 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 700.114510 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 692.437971 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 716.122357 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 724.152489 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 730.745305 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 684.391752 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 723.610052 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.382303 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 710.521033 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 731.270965 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 726.704283 Actual update 200 of 5000, Stored update 200 of 5000 ECHO 0 -2 * Loglike = 684.974746 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 723.889764 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.277151 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 711.147210 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 727.199837 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.917524 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 684.562150 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 727.733664 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 714.244918 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.413874 Actual update 1150 of 5000, Stored update 1150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 742.066175 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 688.336372 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 727.469141 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.780119 Actual update 1500 of 5000, Stored update 1500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 710.079098 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.242594 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.026622 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.440393 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 735.848695 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.035541 Burning in for 100 iterations out of 500 -2 * Loglike = 724.139645 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.143563 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.969113 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 731.943797 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 684.453048 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 725.455151 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.482061 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 691.686235 Burning in for 150 iterations out of 500 -2 * Loglike = 712.327014 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.692532 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.561172 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.865959 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 727.344687 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 726.017160 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.733678 Burning in for 200 iterations out of 500 -2 * Loglike = 715.121141 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 724.340388 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 686.920211 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.270502 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 726.064694 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.751266 Burning in for 250 iterations out of 500 -2 * Loglike = 717.002084 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.980130 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.465676 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.277182 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.811371 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 724.683259 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.650358 Burning in for 300 iterations out of 500 -2 * Loglike = 723.847228 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 719.513922 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.211507 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 687.683256 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.928358 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 727.490864 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.546372 Burning in for 350 iterations out of 500 -2 * Loglike = 710.580114 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.582694 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.561098 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.878077 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 724.406466 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.571143 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.055266 Burning in for 400 iterations out of 500 -2 * Loglike = 710.278477 Actual update 1550 of 5000, Stored update 1550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 698.365646 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.279716 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 687.566562 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 723.445366 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 723.229035 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.218163 Burning in for 450 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 719.827773 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.000902 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 716.320316 Actual update 1900 of 5000, Stored update 1900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 689.196786 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 732.225218 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.447343 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 699.604574 Burning in for 500 iterations out of 500 -2 * Loglike = 729.454433 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 717.851438 Burning in for 100 iterations out of 500 -2 * Loglike = 707.883828 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.537980 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.748265 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 725.400320 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 711.670723 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 695.618473 -2 * Loglike = 724.826443 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.406943 Burning in for 150 iterations out of 500 -2 * Loglike = 696.884028 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 728.516967 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.166635 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 730.019197 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.973636 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.956667 Burning in for 200 iterations out of 500 -2 * Loglike = 731.677414 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.293797 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.144142 Actual update 4550 of 5000, Stored update 4550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.528459 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 726.956707 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.264247 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.695156 Burning in for 250 iterations out of 500 -2 * Loglike = 721.491320 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 717.738757 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.438324 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 696.755403 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 688.500351 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.541682 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.502265 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.666313 Burning in for 300 iterations out of 500 -2 * Loglike = 732.718779 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 719.087493 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.404159 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.887140 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.916459 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 725.510603 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.477386 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 727.218014 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 716.741551 Burning in for 350 iterations out of 500 -2 * Loglike = 718.128924 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.818866 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.493761 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.779591 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 732.330873 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.188138 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 727.250022 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 722.895368 Burning in for 400 iterations out of 500 -2 * Loglike = 699.075166 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 685.823773 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 719.131347 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.554994 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 727.953306 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 723.414911 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 707.399608 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 724.018076 Burning in for 450 iterations out of 500 -2 * Loglike = 693.083712 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.592023 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 720.933449 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.496632 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 729.212068 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 723.485631 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.217952 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.577007 Burning in for 500 iterations out of 500 -2 * Loglike = 706.145330 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 732.391374 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.145112 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.134289 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 730.601357 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 726.401355 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 710.077041 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.336351 -2 * Loglike = 689.610958 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.789685 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.463611 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.134482 Actual update 4900 of 5000, Stored update 4900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 726.230234 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.477094 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.392589 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.221683 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 727.505253 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 696.197819 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 723.529728 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.384531 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 728.055788 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.212250 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.951727 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 731.078997 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.071274 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.414326 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 719.194144 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 725.839852 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.406356 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 714.369374 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.915439 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.122789 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.800795 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 725.181771 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 727.473059 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 688.833906 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.719092 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.947277 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.044458 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 693.628407 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 732.949426 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 729.623612 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.041340 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.806672 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.835093 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.095889 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.957055 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.640655 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.016259 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.388471 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.188857 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 728.291494 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 731.886846 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 685.322082 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 726.793258 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 721.493515 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.454883 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 719.301314 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 729.148220 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 712.753198 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.303912 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 727.910742 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 722.343107 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.613580 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.070464 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 725.897975 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.611691 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 734.489368 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 725.448517 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.799935 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 691.230132 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.107399 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.709267 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 686.993418 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.336953 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 730.735639 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 720.733457 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.398087 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.444332 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 725.919500 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 697.993446 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.604326 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 731.943592 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.156020 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 728.905736 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.006091 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.714101 Actual update 1800 of 5000, Stored update 1800 of 5000 ECHO 0 -2 * Loglike = 692.117041 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.036170 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.220155 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.704112 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.955455 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.328261 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 693.383517 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.64 S.D. = 4.5367 S.E.M. = 0.064159 ECHO 0 Execution completed -2 * Loglike = 724.699973 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 687.395393 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.254034 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 728.716156 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.702492 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.069432 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.635005 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 728.567224 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.446454 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 725.382958 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 726.247733 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.033018 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.580964 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.804013 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 722.018628 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.326791 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.273241 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 726.653247 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.035227 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.758010 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.878390 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 725.517383 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.533407 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 717.444682 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 738.985327 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 720.102102 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 719.965472 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.751402 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 729.552205 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.338399 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.640499 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 731.624542 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.724604 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.189577 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.198517 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 725.197388 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.140132 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.956664 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 728.350030 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 727.096202 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.466827 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 712.750264 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 729.586553 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.233775 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 695.507214 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.480474 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 734.997348 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.306883 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 719.080632 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 729.349952 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 727.988117 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.958863 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.769105 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 728.903058 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 707.652583 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.828026 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.302667 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 722.965185 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.453160 Actual update 3100 of 5000, Stored update 3100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 728.078707 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 722.252655 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.899055 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.773647 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.182002 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 729.239590 Actual update 2300 of 5000, Stored update 2300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 709.339371 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 727.946295 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.334060 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.363648 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.947136 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.375437 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 726.814316 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.797911 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.346578 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.836775 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.455498 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 679.000877 Burning in for 100 iterations out of 500 -2 * Loglike = 710.736252 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.403313 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 731.014844 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 716.039451 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 692.857601 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 728.820701 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.760488 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 676.205971 Burning in for 150 iterations out of 500 -2 * Loglike = 725.563307 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 719.106047 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 738.244936 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.800364 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.664976 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 728.296419 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.977114 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.259705 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 677.755342 Burning in for 200 iterations out of 500 -2 * Loglike = 716.694447 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.486909 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.282604 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.647180 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 725.518744 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.002931 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.195789 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.171780 Burning in for 250 iterations out of 500 -2 * Loglike = 719.601753 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.707360 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 724.481676 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.688164 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 733.326480 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.466961 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.674775 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 681.327192 Burning in for 300 iterations out of 500 -2 * Loglike = 731.418373 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.985010 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 714.108934 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 702.460268 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 729.301321 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.761813 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.022815 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.020053 Burning in for 350 iterations out of 500 -2 * Loglike = 732.442634 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 732.679437 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.356060 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.429743 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 728.231621 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 692.594549 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.404958 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 724.284104 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 732.721205 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 724.434226 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 731.234237 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 692.901808 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.862146 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 732.983941 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 730.319399 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.358154 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 687.547358 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.079950 Burning in for 400 iterations out of 500 -2 * Loglike = 730.206999 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 705.957100 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 729.395248 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 728.873205 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 723.166143 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.089425 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.290036 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 685.536366 Burning in for 450 iterations out of 500 -2 * Loglike = 716.342791 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 725.593774 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 731.771317 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.591546 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.577544 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.539913 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 688.655671 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 681.656442 Burning in for 500 iterations out of 500 -2 * Loglike = 729.263389 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 725.944265 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 738.680238 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.181026 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.186879 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.185869 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 686.502142 -2 * Loglike = 720.132491 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.396570 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 726.584263 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 728.596917 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 725.045482 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.610437 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 687.196796 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 720.861735 Actual update 1750 of 5000, Stored update 1750 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 696.130135 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 720.769459 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 729.222262 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 717.236874 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.512815 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.256503 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.180246 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 681.262390 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.472480 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 723.121390 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 726.164104 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.483593 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.972405 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 688.243942 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.868806 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 682.162104 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 726.822834 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.284262 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 725.550939 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.211510 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.134789 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 732.253817 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.452414 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 675.400887 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.432917 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.679167 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 729.346611 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.860900 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.346737 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 697.392719 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.806382 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.614510 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 724.237908 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 728.270006 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 728.127705 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 723.735008 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.080008 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 721.272299 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 724.706584 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 677.805983 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.832147 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 727.095946 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 723.112746 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.524511 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.828391 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.983716 Actual update 3450 of 5000, Stored update 3450 of 5000 ECHO 0 -2 * Loglike = 717.177691 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.961352 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.229122 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 726.332740 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.806779 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.224288 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 733.935148 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 690.559256 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.727493 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.918492 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 673.655936 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 731.272736 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.166643 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.374677 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.318799 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.421345 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 718.150697 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.811085 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.612240 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.049617 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 740.655921 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 722.111414 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 716.338070 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 715.675874 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 684.695309 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.103204 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 677.833567 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 725.915375 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.415394 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 725.550086 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.894777 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 732.060924 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 688.393719 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.132164 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 676.550103 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 731.704554 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 701.674753 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 729.754748 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.224484 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.561844 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 723.882082 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 687.718524 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 675.258900 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 730.282144 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.469193 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 726.993284 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.293966 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 722.829920 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.664548 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 676.283767 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 731.700415 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 695.083968 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.262990 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 727.417769 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.847702 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.590912 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.785256 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.640456 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.494141 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.301305 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.221729 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.584093 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.511121 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 722.486108 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 686.721166 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 673.647877 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 726.121621 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.864317 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 731.727753 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.729814 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 735.018826 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.345274 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 726.123071 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.784971 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.392980 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.640004 Actual update 2900 of 5000, Stored update 2900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 722.086861 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.250392 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.713406 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 734.135088 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.520390 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.517907 Actual update 5000 of 5000, Stored update 5000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 679.002667 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 697.463835 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 721.100277 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 721.594072 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 678.551074 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 726.103387 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.384048 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.465951 Burning in for 100 iterations out of 500 -2 * Loglike = 726.806977 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.062788 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 717.388561 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.234175 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.364820 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.625558 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.463992 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 686.720345 Burning in for 150 iterations out of 500 -2 * Loglike = 732.581269 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 689.654665 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.718444 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.955601 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.403151 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.898461 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 729.354006 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 735.409380 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.515094 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 727.043042 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.074071 Burning in for 200 iterations out of 500 -2 * Loglike = 706.796026 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.639092 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 694.441172 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 678.849788 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.573775 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.324341 Burning in for 250 iterations out of 500 -2 * Loglike = 726.169264 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 741.812036 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.272678 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.867298 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 693.902165 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 680.310734 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 722.701617 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.913920 Burning in for 300 iterations out of 500 -2 * Loglike = 723.530128 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.742577 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 679.967323 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 692.893080 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.058286 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 733.229798 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.786965 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.143723 Burning in for 350 iterations out of 500 -2 * Loglike = 728.576844 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.784407 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 679.524219 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 693.175443 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 716.587575 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 725.543074 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.094024 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 696.034751 Burning in for 400 iterations out of 500 -2 * Loglike = 728.546180 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.528552 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.39 S.D. = 4.5072 S.E.M. = 0.063742 ECHO 0 Execution completed -2 * Loglike = 708.822375 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.563705 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.292968 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 717.650597 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 725.812419 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 693.224305 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.994529 Burning in for 450 iterations out of 500 -2 * Loglike = 726.213665 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 725.142660 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 675.796967 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.786917 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 720.803761 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 734.949123 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.457113 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.122112 Burning in for 500 iterations out of 500 -2 * Loglike = 730.278322 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 679.691151 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.587206 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.910065 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 727.024589 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 715.263301 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.023876 -2 * Loglike = 682.364370 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 726.513176 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.227956 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.089196 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 725.485088 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.177699 Actual update 3150 of 5000, Stored update 3150 of 5000 ECHO 0 -2 * Loglike = 694.392635 Actual update 1450 of 5000, Stored update 1450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 728.586771 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.421506 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.785105 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 729.792662 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.022745 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 679.737142 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.962850 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.593717 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.068151 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 727.945559 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.312127 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 712.86 S.D. = 5.5508 S.E.M. = 0.078500 ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 727.854077 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 726.225273 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.903015 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.917684 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.288005 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 694.824875 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 726.866085 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 733.910041 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.320586 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 685.116671 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 678.177967 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.495262 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.503457 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 730.649088 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 738.967508 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 727.002540 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 691.149217 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.206492 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 685.705916 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.223368 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 725.019442 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.653476 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.644372 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 717.669282 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.559694 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 681.693282 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 686.094519 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 726.420222 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 732.981151 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.764756 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.977676 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.955442 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.856173 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 688.663423 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 732.290390 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.840706 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.899426 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.679263 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 673.935583 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.156402 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.989677 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 723.685930 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 726.232159 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 692.831250 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 721.645160 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 674.295397 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.653293 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.737966 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 728.027620 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 729.937181 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 689.942957 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.202050 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 677.722042 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 713.180860 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 732.197729 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.557936 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 725.352852 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.185903 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 720.009440 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 679.258624 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 727.232178 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.621278 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.734087 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 726.580593 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 687.962762 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 719.502870 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.962579 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 725.607446 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.147300 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 731.079003 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 685.564760 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 738.798849 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 678.657219 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 737.610175 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.621378 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.524196 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 676.353317 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 728.651135 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 716.114439 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.567314 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.599398 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 678.620134 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 735.401496 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.608700 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.980173 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 693.217575 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 682.188981 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 723.262289 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 693.468701 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 686.044250 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.083851 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 720.345855 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 691.723940 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.583373 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 679.712597 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.742969 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.577222 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 687.839456 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 678.975875 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 719.916142 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.146228 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.800268 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 685.826295 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.254453 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.875738 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.775042 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 676.836301 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.722688 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 724.536802 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.539687 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 678.559973 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.862632 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.613122 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.231884 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.908262 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 683.811898 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.606792 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.182056 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.641241 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.534607 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.825590 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 734.551445 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 677.715848 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.873991 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.296824 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 730.486102 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.473994 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.285925 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.061170 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.002888 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 677.389357 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 692.384529 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 693.353794 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.680065 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 690.64 S.D. = 4.2193 S.E.M. = 0.059669 ECHO 0 Execution completed -2 * Loglike = 721.645882 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 727.21 S.D. = 3.1399 S.E.M. = 0.044405 ECHO 0 Execution completed -2 * Loglike = 725.639599 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 684.186594 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.670565 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.979701 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.773386 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 682.276266 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.136514 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 723.224443 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 688.531489 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 688.557109 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.123524 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.583856 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 691.263727 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.216369 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 730.15 S.D. = 4.3445 S.E.M. = 0.061440 ECHO 0 Execution completed -2 * Loglike = 680.395593 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.362602 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 717.001295 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 690.415798 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 677.521241 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.791305 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 733.126562 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 696.034947 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 679.662347 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.874363 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.475794 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 677.223544 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.086203 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.948630 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 678.023609 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 718.824487 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 685.496312 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 724.955117 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 678.214703 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 685.182399 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 724.439890 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.913829 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 687.336599 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.820962 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 683.863775 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.413609 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 688.925840 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.769270 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 677.861760 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.513708 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.618783 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.120496 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 678.902672 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.711829 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 682.667213 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 690.701385 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 673.849045 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 691.291648 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.551281 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 677.077020 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.058113 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 676.980576 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.754815 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.392057 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 680.518013 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 687.574706 Actual update 2450 of 5000, Stored update 2450 of 5000 /nogui option ignored -2 * Loglike = 686.374178 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 684.962039 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.440309 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 691.597237 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.02 S.D. = 5.7574 S.E.M. = 0.081422 ECHO 0 Execution completed -2 * Loglike = 691.566974 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 676.809657 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.768036 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.464745 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.014893 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 680.201330 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 690.341988 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 677.963445 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 713.538016 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 721.08 S.D. = 5.5865 S.E.M. = 0.079005 ECHO 0 Execution completed -2 * Loglike = 686.565551 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.595489 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 676.938560 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 674.524976 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 693.171817 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.129309 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.125662 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 677.013957 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 689.212134 Actual update 2900 of 5000, Stored update 2900 of 5000 ECHO 0 -2 * Loglike = 682.570027 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 692.083809 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.547208 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 688.603126 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 678.203243 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 689.803096 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.173460 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 684.108012 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.107033 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.141582 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 678.305958 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 692.376530 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 689.657174 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 676.097615 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 710.205787 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 677.851294 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 693.686717 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 677.098894 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.514042 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.751791 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.301031 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 686.215734 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 686.692396 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.148469 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.405040 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.332982 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.998046 Actual update 3600 of 5000, Stored update 3600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 685.767383 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 685.874810 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 694.727059 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.726602 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.173822 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.212894 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.984446 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.172444 Actual update 4000 of 5000, Stored update 4000 of 5000 /nogui option ignored -2 * Loglike = 686.066689 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 674.102579 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 681.47 S.D. = 5.4812 S.E.M. = 0.077516 ECHO 0 Execution completed -2 * Loglike = 689.318653 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 696.395794 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 687.823371 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 686.368319 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 696.578782 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 689.441782 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 695.055881 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 691.850263 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 686.735227 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.059864 Actual update 4550 of 5000, Stored update 4550 of 5000 ECHO 0 -2 * Loglike = 691.243888 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.826099 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.564319 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 687.315731 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 687.888644 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.937844 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 693.960029 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 688.305704 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 696.054795 Actual update 5000 of 5000, Stored update 5000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 715.363435 Burning in for 100 iterations out of 500 -2 * Loglike = 714.072620 Burning in for 150 iterations out of 500 -2 * Loglike = 715.597864 Burning in for 200 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.151501 Burning in for 250 iterations out of 500 -2 * Loglike = 715.336873 Burning in for 300 iterations out of 500 -2 * Loglike = 716.600972 Burning in for 350 iterations out of 500 -2 * Loglike = 721.185267 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 720.102460 Burning in for 450 iterations out of 500 -2 * Loglike = 716.236839 Burning in for 500 iterations out of 500 -2 * Loglike = 716.893591 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 /nogui option ignored -2 * Loglike = 718.721944 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 718.184954 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.619420 Actual update 200 of 5000, Stored update 200 of 5000 ECHO 0 -2 * Loglike = 722.763294 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.076011 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 685.259524 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.26 S.D. = 4.8470 S.E.M. = 0.068547 ECHO 0 Execution completed -2 * Loglike = 729.685439 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.123101 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 727.872649 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 711.573568 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.025329 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.336751 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 716.352755 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.538355 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.094125 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 719.037527 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 714.906179 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 716.845644 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.107371 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 729.093895 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 718.390488 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.744352 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 717.038607 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 716.415994 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.503081 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.312686 Actual update 1300 of 5000, Stored update 1300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.298537 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 715.875367 Actual update 1400 of 5000, Stored update 1400 of 5000 /nogui option ignored -2 * Loglike = 719.888688 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.019517 Actual update 1500 of 5000, Stored update 1500 of 5000 /nogui option ignored -2 * Loglike = 721.401812 Actual update 1550 of 5000, Stored update 1550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.966093 Actual update 1600 of 5000, Stored update 1600 of 5000 ECHO 0 -2 * Loglike = 722.687371 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.400861 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 -2 * Loglike = 719.847434 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.617776 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 712.340771 Actual update 1850 of 5000, Stored update 1850 of 5000 /nogui option ignored -2 * Loglike = 714.042650 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.254421 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 723.247321 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.286716 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.047502 Actual update 2100 of 5000, Stored update 2100 of 5000 ECHO 0 -2 * Loglike = 718.743159 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 717.268649 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.957879 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.719943 Actual update 2300 of 5000, Stored update 2300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.138228 Actual update 2350 of 5000, Stored update 2350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 725.110424 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 717.571962 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.100284 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 728.883998 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.473573 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 724.374172 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 717.020104 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.605911 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.007955 Actual update 2800 of 5000, Stored update 2800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 723.996970 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 719.717486 Burning in for 100 iterations out of 500 -2 * Loglike = 717.269968 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.540449 Burning in for 150 iterations out of 500 -2 * Loglike = 715.844262 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 721.731565 Burning in for 200 iterations out of 500 -2 * Loglike = 717.343434 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 718.655991 Burning in for 250 iterations out of 500 -2 * Loglike = 718.153204 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 721.381851 Burning in for 300 iterations out of 500 -2 * Loglike = 715.380872 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 723.758321 Burning in for 350 iterations out of 500 -2 * Loglike = 713.441865 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 726.826047 Burning in for 400 iterations out of 500 -2 * Loglike = 717.332921 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 726.018879 Burning in for 450 iterations out of 500 -2 * Loglike = 717.780337 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.290538 Burning in for 500 iterations out of 500 -2 * Loglike = 721.104990 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 721.883488 -2 * Loglike = 726.208965 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.879681 Actual update 3400 of 5000, Stored update 3400 of 5000 /nogui option ignored ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 716.416694 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 724.904041 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.648723 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 726.114289 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.566019 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 722.245037 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.403301 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 726.003554 Actual update 250 of 5000, Stored update 250 of 5000 ECHO 0 -2 * Loglike = 715.261232 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 723.833744 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.720389 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 733.646196 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.543414 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 721.279673 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.434562 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 723.160486 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.316105 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 720.599660 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 721.458661 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.240192 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 727.814242 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 722.710410 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 718.236239 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.047247 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 715.536625 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.290194 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.183524 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.169823 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 723.861474 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 724.192910 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.600203 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 721.987688 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.803930 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 725.662242 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 719.108371 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 721.898546 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 738.223602 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 728.219319 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 721.690576 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.591288 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.535650 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.920169 Actual update 1100 of 5000, Stored update 1100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.294331 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 718.827472 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 717.867042 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.734194 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.932188 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 720.152853 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 720.989724 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 721.366928 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 715.180942 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 724.242220 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.564505 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 714.405200 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 723.425644 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 727.095738 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 721.787367 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 716.126785 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 722.313147 Actual update 1600 of 5000, Stored update 1600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 720.785811 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.887549 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 723.325618 Actual update 1700 of 5000, Stored update 1700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 721.133185 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 726.083297 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 690.416714 Burning in for 100 iterations out of 500 -2 * Loglike = 720.941088 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 716.363581 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.206786 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.660778 Burning in for 150 iterations out of 500 -2 * Loglike = 717.174006 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 692.011506 Burning in for 200 iterations out of 500 -2 * Loglike = 723.993077 Actual update 1900 of 5000, Stored update 1900 of 5000 /nogui option ignored -2 * Loglike = 694.750903 Burning in for 250 iterations out of 500 -2 * Loglike = 720.480769 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.627371 Burning in for 300 iterations out of 500 ECHO 0 -2 * Loglike = 720.935155 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.136575 Burning in for 350 iterations out of 500 -2 * Loglike = 723.617606 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.152270 Burning in for 400 iterations out of 500 -2 * Loglike = 717.459642 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.380225 Burning in for 450 iterations out of 500 -2 * Loglike = 720.426757 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.814573 Burning in for 500 iterations out of 500 -2 * Loglike = 726.072136 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.929841 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 697.476740 -2 * Loglike = 724.688761 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.784020 Actual update 2350 of 5000, Stored update 2350 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 720.052186 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 721.615110 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 698.334824 Actual update 100 of 5000, Stored update 100 of 5000 ECHO 0 -2 * Loglike = 697.877253 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.515006 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.899503 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.133092 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 728.398793 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.015278 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 722.410100 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.155087 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.60 S.D. = 4.8312 S.E.M. = 0.068323 ECHO 0 Execution completed ECHO 0 -2 * Loglike = 691.871025 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 719.474515 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.707596 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 717.527661 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 689.128998 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 726.649584 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.532754 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 721.846982 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.962407 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.038542 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.716790 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.360903 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.598342 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.226852 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 723.286491 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 704.045292 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 722.679882 Actual update 3050 of 5000, Stored update 3050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 687.819184 Actual update 750 of 5000, Stored update 750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 692.836592 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 717.565208 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 721.690064 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.992656 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.823539 Burning in for 100 iterations out of 500 -2 * Loglike = 720.731399 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.349857 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 723.081843 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.372416 Burning in for 150 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 727.107170 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.021964 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 713.678513 Burning in for 200 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 723.842949 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.160055 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.392894 Burning in for 100 iterations out of 500 -2 * Loglike = 713.747616 Burning in for 250 iterations out of 500 -2 * Loglike = 720.361113 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.887902 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.463097 Burning in for 150 iterations out of 500 -2 * Loglike = 714.138106 Burning in for 300 iterations out of 500 -2 * Loglike = 722.038321 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 715.466055 Burning in for 350 iterations out of 500 -2 * Loglike = 693.134822 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 690.824267 Burning in for 200 iterations out of 500 -2 * Loglike = 721.272876 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 695.756787 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 719.989489 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 724.050795 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.894025 Burning in for 250 iterations out of 500 -2 * Loglike = 716.866302 Burning in for 450 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 693.162127 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 721.130633 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.953993 Burning in for 300 iterations out of 500 -2 * Loglike = 694.417113 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.874128 Burning in for 500 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 718.707515 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.283205 Burning in for 350 iterations out of 500 -2 * Loglike = 690.430850 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.584154 /nogui option ignored -2 * Loglike = 701.491819 Burning in for 100 iterations out of 500 -2 * Loglike = 721.425490 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 696.836178 Burning in for 400 iterations out of 500 -2 * Loglike = 691.914175 Actual update 1350 of 5000, Stored update 1350 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 729.954970 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.639653 Burning in for 150 iterations out of 500 -2 * Loglike = 702.277330 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 717.593957 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.219242 Burning in for 450 iterations out of 500 -2 * Loglike = 702.484255 Burning in for 200 iterations out of 500 -2 * Loglike = 720.102342 Actual update 3800 of 5000, Stored update 3800 of 5000 ECHO 0 -2 * Loglike = 704.354164 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 692.786079 Burning in for 500 iterations out of 500 -2 * Loglike = 717.173611 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.290216 Burning in for 250 iterations out of 500 -2 * Loglike = 723.067361 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.810689 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.613470 -2 * Loglike = 713.523002 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 727.839654 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.490252 Burning in for 300 iterations out of 500 -2 * Loglike = 702.729987 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 717.296916 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 723.997031 Actual update 3950 of 5000, Stored update 3950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 705.943431 Burning in for 350 iterations out of 500 -2 * Loglike = 689.819523 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.316907 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.885691 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.338469 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.804538 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 695.157218 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 690.545852 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 727.609607 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.769679 Burning in for 450 iterations out of 500 -2 * Loglike = 722.510023 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.938001 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.030696 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.012474 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 722.075811 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.065228 Burning in for 500 iterations out of 500 -2 * Loglike = 697.679751 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.284159 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.935141 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 725.525512 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 688.148881 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.269610 -2 * Loglike = 713.172528 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.320820 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 723.225497 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 690.461459 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.799319 Actual update 550 of 5000, Stored update 550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 715.708618 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.354177 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.983706 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.053773 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.973066 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.284052 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 725.804157 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.442631 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.124846 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.037485 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.402125 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 688.365872 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.266588 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.832790 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.359386 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.708611 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.580534 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 693.477237 Actual update 2050 of 5000, Stored update 2050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 725.772329 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.235303 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.837572 Actual update 250 of 5000, Stored update 250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 723.012560 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 690.039745 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 687.920538 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.390170 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.415751 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.491893 Burning in for 100 iterations out of 500 -2 * Loglike = 724.973353 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.350634 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 688.948563 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.800113 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.087139 Burning in for 150 iterations out of 500 -2 * Loglike = 715.724977 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 727.470652 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.374919 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.303575 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.093790 Burning in for 200 iterations out of 500 -2 * Loglike = 714.801900 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.516092 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.668222 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.165902 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.797275 Burning in for 250 iterations out of 500 -2 * Loglike = 710.102130 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.700201 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 686.313080 Actual update 750 of 5000, Stored update 750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 725.467856 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 693.334227 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.312909 Burning in for 300 iterations out of 500 -2 * Loglike = 699.762231 Actual update 500 of 5000, Stored update 500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.746959 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.347430 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 696.183589 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.915723 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.672484 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.073449 Burning in for 350 iterations out of 500 -2 * Loglike = 680.149330 Burning in for 100 iterations out of 500 -2 * Loglike = 687.834956 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.465098 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.224798 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.300133 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 699.311843 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 675.436292 Burning in for 150 iterations out of 500 -2 * Loglike = 692.122650 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.392516 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.226493 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.207944 Burning in for 400 iterations out of 500 -2 * Loglike = 678.427960 Burning in for 200 iterations out of 500 -2 * Loglike = 713.787936 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 702.607495 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 688.523132 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.235692 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.330562 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 681.450988 Burning in for 250 iterations out of 500 -2 * Loglike = 713.730390 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.628434 Burning in for 450 iterations out of 500 -2 * Loglike = 701.079523 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.244420 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.297995 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.608493 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 676.368158 Burning in for 300 iterations out of 500 -2 * Loglike = 715.455487 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 691.353986 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 722.411781 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.177924 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.971330 Burning in for 500 iterations out of 500 -2 * Loglike = 704.462609 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 678.704644 Burning in for 350 iterations out of 500 -2 * Loglike = 714.656306 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.694366 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.603475 Actual update 800 of 5000, Stored update 800 of 5000 /nogui option ignored -2 * Loglike = 690.502206 -2 * Loglike = 696.401035 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.434400 Burning in for 400 iterations out of 500 -2 * Loglike = 714.346525 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.141590 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.730212 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.055268 Actual update 2700 of 5000, Stored update 2700 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 683.889169 Burning in for 450 iterations out of 500 -2 * Loglike = 711.955239 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.600779 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.183230 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.678666 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 680.331161 Burning in for 500 iterations out of 500 -2 * Loglike = 697.220134 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.333204 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 702.081826 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 716.100353 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.409413 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 680.372806 -2 * Loglike = 696.630378 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.289891 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.579890 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.727406 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 699.850235 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.957272 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 693.974971 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.103318 Actual update 1050 of 5000, Stored update 1050 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 714.646326 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.468558 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.880991 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.683659 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.876084 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 683.779796 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.172292 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 693.432394 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.127703 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.742868 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.048411 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 678.370011 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.025639 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 706.210217 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.068570 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.095449 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 695.242664 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 674.789302 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.768883 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 691.944744 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.361309 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.107266 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.656322 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.109915 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.215089 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 716.630300 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 690.043538 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.036656 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.399582 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.284384 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.243498 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.926584 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.685712 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.889692 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 691.050515 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.039596 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 688.761222 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.202001 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.963419 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.937673 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 678.662086 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.836172 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.687627 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.756488 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.800343 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.323338 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.931462 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 687.580534 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.978507 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.712895 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.532415 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.153046 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 679.325346 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 686.894612 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.470310 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 715.074723 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.828486 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.856256 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 674.596599 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 688.418237 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.407099 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 715.260161 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.447143 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.008810 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 722.57 S.D. = 2.9739 S.E.M. = 0.042058 ECHO 0 Execution completed -2 * Loglike = 691.764728 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.186916 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 676.205697 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.454105 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.532396 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.481041 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.021900 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.142242 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.424926 Actual update 2000 of 5000, Stored update 2000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 688.151309 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.013660 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.097104 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.580780 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.980668 Actual update 1650 of 5000, Stored update 1650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.230511 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.549435 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.030033 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 673.280995 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.878311 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.352266 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.691756 Burning in for 100 iterations out of 500 -2 * Loglike = 688.786185 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.747390 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.602849 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 678.981626 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 688.026625 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.239567 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.591989 Burning in for 150 iterations out of 500 -2 * Loglike = 692.897771 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.730896 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.527465 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 677.544233 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.860179 Burning in for 200 iterations out of 500 -2 * Loglike = 699.960184 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.464460 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.251413 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 694.671199 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 679.555464 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.012212 Burning in for 250 iterations out of 500 -2 * Loglike = 702.945552 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.196159 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.281767 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.361730 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 678.189241 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.651296 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.121894 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.295660 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.133687 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 693.358778 Burning in for 300 iterations out of 500 -2 * Loglike = 691.588618 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 697.588378 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.923936 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.870768 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.058170 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 692.278254 Burning in for 350 iterations out of 500 -2 * Loglike = 701.772931 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.814286 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 695.835294 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 685.065746 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.075674 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.238638 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.482066 Burning in for 400 iterations out of 500 -2 * Loglike = 693.395623 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.519066 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 680.311500 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.194402 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.745094 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.993703 Burning in for 450 iterations out of 500 -2 * Loglike = 695.458192 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 709.087544 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.742191 Burning in for 500 iterations out of 500 -2 * Loglike = 688.857294 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 678.017319 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 715.394426 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.164974 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.042275 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.552313 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.862704 -2 * Loglike = 688.986694 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 679.466893 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.911826 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 715.080563 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.139510 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.969097 Actual update 4000 of 5000, Stored update 4000 of 5000 /nogui option ignored -2 * Loglike = 695.291667 Actual update 2550 of 5000, Stored update 2550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 679.056401 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 718.117122 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.607967 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 693.849009 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.416079 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.371289 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.254706 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 679.967284 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 708.983250 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.588882 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 695.165851 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 689.916403 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.776836 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.855879 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.772598 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.531415 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.013186 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.852220 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.984158 Actual update 4150 of 5000, Stored update 4150 of 5000 ECHO 0 -2 * Loglike = 693.430535 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 687.135953 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.857037 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.379459 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.424869 Actual update 2300 of 5000, Stored update 2300 of 5000 ECHO 0 -2 * Loglike = 713.331975 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 691.068339 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.265747 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.313792 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.542964 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 692.796376 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 706.030985 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.594993 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.908777 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 685.199213 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.248205 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.188250 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.659919 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.055767 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.085447 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 686.423165 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 717.412130 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.252769 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.932005 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.539446 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.670226 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.307898 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.147835 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.712898 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.162452 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.294763 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.221328 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.934861 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 695.810015 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 689.643782 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.257324 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 694.257751 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.953980 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.891698 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.697111 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.805942 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.719708 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 692.714255 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.867280 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.493222 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 685.195645 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.997331 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.952486 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.123704 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.121585 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.292367 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.668319 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.440286 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 708.876527 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 704.256757 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.417091 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 688.402005 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 692.119725 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.813863 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 674.489693 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.091815 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.663868 Actual update 4600 of 5000, Stored update 4600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 689.359253 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 688.533392 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.934920 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.741068 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 673.557558 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 694.185668 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.555466 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.521935 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 689.659177 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.211729 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.849083 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 674.892414 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 701.747513 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.489241 Actual update 2800 of 5000, Stored update 2800 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 695.969751 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.216769 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.886049 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.770579 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.045480 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 676.630014 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.535873 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.846800 Burning in for 100 iterations out of 500 -2 * Loglike = 694.111843 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.608554 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 693.885286 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.745693 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.348863 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 681.049567 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.789826 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.301854 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.904149 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.214957 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.815364 Burning in for 150 iterations out of 500 -2 * Loglike = 718.682977 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 688.477339 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.930893 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.918356 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.904303 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 692.195801 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.418974 Burning in for 200 iterations out of 500 -2 * Loglike = 694.153170 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.154633 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.691822 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 678.405520 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.137321 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.498796 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.105204 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.261062 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.308006 Burning in for 250 iterations out of 500 -2 * Loglike = 714.882028 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.772148 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.129875 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.169938 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 703.013981 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 695.694681 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.756979 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 713.477162 Burning in for 300 iterations out of 500 -2 * Loglike = 715.974782 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.918490 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 680.005032 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.476275 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 694.056314 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.685575 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.589852 Burning in for 350 iterations out of 500 -2 * Loglike = 714.668299 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.116947 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 674.939401 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.920991 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.927698 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 715.449423 Burning in for 400 iterations out of 500 -2 * Loglike = 692.189245 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 716.374605 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 686.759028 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 684.432252 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.831818 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.735476 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.066580 Burning in for 450 iterations out of 500 -2 * Loglike = 699.274894 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.107004 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.859799 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 684.351955 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.802056 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.206417 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.816173 Burning in for 500 iterations out of 500 -2 * Loglike = 695.085391 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.067914 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.634324 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 680.584762 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.218132 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.219045 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.331008 -2 * Loglike = 694.315205 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 696.832594 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.033376 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 675.495100 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 689.611373 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.060207 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.306884 Actual update 2750 of 5000, Stored update 2750 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 686.824333 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.205565 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.471365 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.193785 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.427688 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.882443 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.522484 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.699398 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.091973 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 686.721169 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.584467 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.757856 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.256533 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.141855 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.104200 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.639011 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.268092 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.880251 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.640302 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 692.775684 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.862708 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.084745 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 718.961015 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 682.926750 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.155945 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.896565 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.051582 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.553998 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.358616 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.269942 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 677.116793 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 691.575996 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.642610 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 688.485519 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.497484 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.149908 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 676.947853 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.887234 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.831611 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.972939 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.568256 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 690.599199 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.722506 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.903650 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.110615 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.302527 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.146448 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.013947 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.257531 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.241405 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 696.78 S.D. = 5.3785 S.E.M. = 0.076063 ECHO 0 Execution completed -2 * Loglike = 704.039028 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.913787 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 691.581561 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 682.241473 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.545758 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 709.659603 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 716.258830 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.671648 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.261317 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 706.500000 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 687.031863 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 688.072294 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.760172 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.115649 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 691.909893 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.795272 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 675.056656 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.696754 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.513836 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.935621 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.566024 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 693.877965 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.029087 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 677.323806 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.350830 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.798060 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 711.435805 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.866891 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 689.004282 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.867833 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 678.511707 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.784035 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.664028 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.200731 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 713.122061 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.021317 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.752374 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 675.172425 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.604297 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.215297 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.858444 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.959370 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.710095 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 674.386150 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.118373 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 687.877985 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.428070 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.817395 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.487140 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.121217 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 677.475755 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.264453 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 695.005117 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 704.829509 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 700.984781 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 691.801107 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.975659 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 682.746427 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.334112 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.898952 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.879580 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.881668 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.374359 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.842646 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 682.430390 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 717.780766 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 688.204611 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.776769 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.178967 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.396046 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.109849 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 691.555851 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.152205 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.752230 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.960373 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.250229 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.121613 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 677.892719 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 705.507344 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.274542 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 716.491129 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.399416 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 688.531123 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.072139 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.448164 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.873175 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 680.467565 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.626662 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.041768 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.767927 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.316053 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.706337 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.208337 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 680.387500 Actual update 3500 of 5000, Stored update 3500 of 5000 /nogui option ignored -2 * Loglike = 712.915748 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.738986 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.508875 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.884130 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.045966 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.257336 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 681.119097 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.058182 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.270595 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.395468 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.988099 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 714.055543 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.024806 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 673.299146 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 718.248765 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 692.409755 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.688081 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.345736 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.410410 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.393300 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 680.700638 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.642451 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 698.835835 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 688.870123 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 711.902997 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.575019 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 686.111379 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 708.632752 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.328204 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.906024 Actual update 1300 of 5000, Stored update 1300 of 5000 ECHO 0 -2 * Loglike = 694.769830 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.615436 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.439072 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.977901 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.498456 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.300442 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.793291 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 691.394384 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 675.703973 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.371513 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 690.091265 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.652106 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.409305 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.933111 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 680.794199 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.273869 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.362937 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.186825 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.973807 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 692.073677 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.307527 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.105501 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.802800 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.720353 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.217129 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 688.616879 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.354408 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.631639 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.497655 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 691.787593 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 676.548436 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.556565 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 693.376307 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.227562 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.087508 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.292011 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 696.295021 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 680.630890 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.896315 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.271575 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.144418 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 677.275307 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.621755 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.640867 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 682.773195 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.770118 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 690.213828 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 676.895944 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.154378 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.033315 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.892602 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 674.106049 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 696.658093 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.782423 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.708021 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.293052 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 689.752048 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.644429 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.332328 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.603334 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.611436 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 706.790195 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.529279 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.753269 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 681.795449 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.377915 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.655428 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.007931 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 688.995323 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.376035 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.89 S.D. = 2.2904 S.E.M. = 0.032391 ECHO 0 Execution completed -2 * Loglike = 713.835766 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.240600 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.824867 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 678.333459 Actual update 4500 of 5000, Stored update 4500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 707.618748 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.453946 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.523639 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 687.118879 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.33 S.D. = 4.1184 S.E.M. = 0.058242 ECHO 0 Execution completed -2 * Loglike = 693.517597 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 711.544118 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 680.452592 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.096545 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 692.965332 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 710.010815 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.275111 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 693.996388 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.177395 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.604104 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.101475 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 686.874983 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 676.497774 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 710.294800 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.676953 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.391571 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.758653 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.949538 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.743039 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 676.149982 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 724.498238 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.537281 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 676.134216 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.889224 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.716280 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.63 S.D. = 4.3646 S.E.M. = 0.061725 ECHO 0 Execution completed -2 * Loglike = 688.301272 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 679.567054 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.184810 Actual update 2500 of 5000, Stored update 2500 of 5000 /nogui option ignored -2 * Loglike = 693.797958 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 685.507261 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.176977 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.210683 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.355505 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 680.901118 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 695.915263 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.457740 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 695.167994 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 713.330721 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.874241 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 712.463332 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 690.864138 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.070960 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.316959 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.125242 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.011235 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.727889 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 708.918400 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 687.598796 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.584161 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.110100 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.22 S.D. = 2.4661 S.E.M. = 0.034876 ECHO 0 Execution completed -2 * Loglike = 695.660778 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.445304 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.270099 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.332243 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.012581 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 710.596234 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.160455 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 697.709503 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.550205 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.778637 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.421514 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.163704 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.811736 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.142990 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.895535 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.203715 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.613421 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.816960 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.582656 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.002687 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 710.258622 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.863642 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 711.532117 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.034114 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.597868 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 706.164851 Actual update 3600 of 5000, Stored update 3600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 692.490199 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 673.975708 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 681.92 S.D. = 5.0296 S.E.M. = 0.071129 ECHO 0 Execution completed -2 * Loglike = 705.534611 Actual update 3650 of 5000, Stored update 3650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.753471 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.520716 Burning in for 100 iterations out of 500 -2 * Loglike = 705.695619 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.631821 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.029588 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.838793 Burning in for 150 iterations out of 500 -2 * Loglike = 701.351036 Burning in for 200 iterations out of 500 -2 * Loglike = 713.340669 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.215604 Burning in for 250 iterations out of 500 -2 * Loglike = 700.615986 Burning in for 300 iterations out of 500 -2 * Loglike = 716.021132 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.564998 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 710.443266 Burning in for 400 iterations out of 500 -2 * Loglike = 723.765954 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.846560 Burning in for 450 iterations out of 500 -2 * Loglike = 714.790119 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.438540 Burning in for 500 iterations out of 500 -2 * Loglike = 701.467588 -2 * Loglike = 704.663174 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.692586 Actual update 4100 of 5000, Stored update 4100 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 717.070129 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.018823 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 708.955930 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.155572 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.843519 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.156531 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.392927 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.392074 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.900895 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.267877 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.294887 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.463199 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.395295 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 710.017178 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 687.062427 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.58 S.D. = 4.1891 S.E.M. = 0.059242 ECHO 0 Execution completed -2 * Loglike = 704.681228 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 713.754458 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.012100 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.070636 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.065145 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.961592 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.129097 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 714.980973 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.491202 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.817871 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.803981 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.389184 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.943814 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 714.590137 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.295582 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.756486 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.093002 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.547087 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.789099 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 714.357153 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.742657 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.390656 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.015383 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.300062 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.933272 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.498774 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 696.911520 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.938517 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.017412 Actual update 1300 of 5000, Stored update 1300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 705.516668 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.902211 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.880574 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.782895 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 706.799267 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 706.857405 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.426896 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.966910 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 710.944933 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 703.944632 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.084053 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.437350 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 700.076548 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.896211 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.434676 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.107228 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.260421 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.11 S.D. = 4.1508 S.E.M. = 0.058701 ECHO 0 Execution completed -2 * Loglike = 706.071774 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.687508 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 701.758406 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.286310 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.811090 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.120829 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 702.008644 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.311230 Actual update 2500 of 5000, Stored update 2500 of 5000 /nogui option ignored -2 * Loglike = 708.119670 Actual update 2550 of 5000, Stored update 2550 of 5000 /nogui option ignored -2 * Loglike = 713.197562 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.173646 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.913311 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.001365 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 709.967142 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 711.467017 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 707.403673 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.605501 Actual update 2950 of 5000, Stored update 2950 of 5000 ECHO 0 -2 * Loglike = 705.627646 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 703.517914 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.779686 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.106921 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.962756 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.805073 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.358976 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.526511 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.151160 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.430576 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.146804 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.332979 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.538748 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.474626 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.934185 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.812390 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.376081 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.347186 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 712.913236 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.196912 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 701.378701 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.756209 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.388764 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.762823 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 706.188487 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.228906 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.512897 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.580958 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 706.123913 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 710.794419 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.540758 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.038138 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 713.884113 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 706.664665 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 710.277266 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.743685 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.768112 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 704.089797 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.609722 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.181583 Actual update 4950 of 5000, Stored update 4950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 707.327098 Actual update 5000 of 5000, Stored update 5000 of 5000 Burning in for 50 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 720.109239 Burning in for 100 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.367195 Burning in for 150 iterations out of 500 -2 * Loglike = 716.404142 Burning in for 200 iterations out of 500 -2 * Loglike = 718.877525 Burning in for 250 iterations out of 500 -2 * Loglike = 718.478570 Burning in for 300 iterations out of 500 -2 * Loglike = 717.580337 Burning in for 350 iterations out of 500 -2 * Loglike = 723.684902 Burning in for 400 iterations out of 500 -2 * Loglike = 717.168897 Burning in for 450 iterations out of 500 -2 * Loglike = 719.987521 Burning in for 500 iterations out of 500 -2 * Loglike = 721.056204 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 719.671737 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 718.836832 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.917870 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 717.815752 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.638763 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 732.390219 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.469053 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 728.632790 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 716.110033 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.595387 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.20 S.D. = 3.8024 S.E.M. = 0.053774 ECHO 0 Execution completed -2 * Loglike = 713.862473 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 716.109312 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.767325 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 715.657749 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.826113 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.974133 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 713.439759 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.252838 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 717.927965 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 721.875756 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.731498 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 719.807844 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.764305 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.188081 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 717.270211 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.992855 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 724.359078 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 719.456277 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 729.746331 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.221089 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 721.566593 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 717.990414 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.352866 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.222361 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 716.298405 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.517550 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.668137 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 714.294114 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.931356 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 729.002299 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 715.792669 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 713.175548 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.784962 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 720.721943 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 724.498874 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 732.994586 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.244448 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.756069 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.169480 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.385981 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.243980 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 735.093222 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.966927 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 718.886507 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 717.781871 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 719.837312 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 726.689040 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 716.027499 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.255698 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 724.035990 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.507640 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 719.275649 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.435970 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.960695 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.956143 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.387746 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 726.405738 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.153012 Actual update 3400 of 5000, Stored update 3400 of 5000 /nogui option ignored -2 * Loglike = 720.976853 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.848200 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.378635 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.267908 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 714.017897 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.708885 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 721.286131 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.300737 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 726.608227 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 736.814609 Actual update 3900 of 5000, Stored update 3900 of 5000 ECHO 0 -2 * Loglike = 732.797088 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 720.732530 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.237577 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 714.184565 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.953129 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.741346 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.399586 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 727.468426 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.470049 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.190305 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.638347 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.723376 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 728.658301 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 734.472924 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.971336 Actual update 4650 of 5000, Stored update 4650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 720.031660 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.089137 Burning in for 100 iterations out of 500 -2 * Loglike = 713.432362 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.469965 Burning in for 150 iterations out of 500 -2 * Loglike = 707.354112 Burning in for 200 iterations out of 500 -2 * Loglike = 716.695540 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.983621 Burning in for 250 iterations out of 500 -2 * Loglike = 714.892658 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.623756 Burning in for 300 iterations out of 500 -2 * Loglike = 733.495696 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.184679 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 717.954852 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.032650 Burning in for 400 iterations out of 500 -2 * Loglike = 731.119546 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.963708 Burning in for 450 iterations out of 500 -2 * Loglike = 708.261075 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 708.772095 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 710.574143 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.968430 Actual update 150 of 5000, Stored update 150 of 5000 ECHO 0 -2 * Loglike = 703.983870 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.909268 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.721361 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.506078 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 702.380585 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.764123 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.353592 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.399831 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.341439 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.299058 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 706.836497 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.990977 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 719.98 S.D. = 5.5567 S.E.M. = 0.078583 ECHO 0 Execution completed -2 * Loglike = 703.418873 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.576532 Actual update 800 of 5000, Stored update 800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 705.606718 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.536362 Burning in for 100 iterations out of 500 -2 * Loglike = 708.439593 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.585975 Burning in for 150 iterations out of 500 -2 * Loglike = 704.663798 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 682.982628 Burning in for 200 iterations out of 500 -2 * Loglike = 716.860509 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 687.273737 Burning in for 250 iterations out of 500 -2 * Loglike = 709.397744 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 683.004940 Burning in for 300 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 707.817627 Actual update 1100 of 5000, Stored update 1100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 684.623376 Burning in for 350 iterations out of 500 -2 * Loglike = 708.092968 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 725.386624 Burning in for 100 iterations out of 500 -2 * Loglike = 688.782589 Burning in for 400 iterations out of 500 -2 * Loglike = 708.063635 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 724.457198 Burning in for 150 iterations out of 500 -2 * Loglike = 687.113494 Burning in for 450 iterations out of 500 -2 * Loglike = 710.425306 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 723.624545 Burning in for 200 iterations out of 500 -2 * Loglike = 683.957062 Burning in for 500 iterations out of 500 -2 * Loglike = 707.730834 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.693905 Burning in for 250 iterations out of 500 -2 * Loglike = 683.879357 -2 * Loglike = 710.627831 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 732.971493 Burning in for 300 iterations out of 500 -2 * Loglike = 706.895774 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 728.504188 Burning in for 350 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 713.878440 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 733.812020 Burning in for 400 iterations out of 500 -2 * Loglike = 685.742795 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.361301 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 727.085676 Burning in for 450 iterations out of 500 -2 * Loglike = 685.882053 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.638277 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 729.602905 Burning in for 500 iterations out of 500 -2 * Loglike = 680.020265 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.621945 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 726.922974 -2 * Loglike = 689.770652 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.210841 Actual update 1650 of 5000, Stored update 1650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 682.533179 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 708.000931 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 725.554818 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 697.168643 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.652301 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 733.376131 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 678.569579 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.760367 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 722.165999 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 693.982407 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.683777 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 727.963080 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 679.051908 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 705.480441 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 725.268601 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 679.442825 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.546620 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 740.847933 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.513088 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.758019 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.666645 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 683.809480 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.258489 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.990456 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 683.146628 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 707.281917 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.628907 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.577540 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.328739 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 722.537709 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 686.641275 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 707.754385 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 681.890607 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 723.045501 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.661486 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.447446 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.241563 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.099674 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 680.464225 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 723.665232 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.084189 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.929269 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 721.824708 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.706570 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.084796 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 732.195224 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.490184 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.139880 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.584694 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.628495 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.436205 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 728.442575 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 683.876872 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 716.189989 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 724.969473 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.230424 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.878763 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 735.535738 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 683.994136 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.379201 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 726.974430 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 686.610190 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 708.589014 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 729.517341 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 682.571992 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 708.214903 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 725.700920 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 685.968536 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.436876 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 727.771174 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.497011 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.728784 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 729.062247 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.392685 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.581013 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 726.195625 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.554492 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.226115 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 729.831265 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.837788 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.126576 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.851708 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 683.330587 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.131471 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 733.383685 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 687.191973 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.377008 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 727.333353 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 681.046799 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.348402 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 724.753174 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 680.374895 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.036421 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 724.836944 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 681.464572 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.520904 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 728.282257 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 681.551160 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.400458 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 726.410554 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.893037 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.156726 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 727.284355 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.845432 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.716049 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 722.699073 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.085986 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.916322 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 727.049675 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 687.832194 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 725.640513 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.885719 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 685.475074 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 725.227299 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 711.121644 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 681.489708 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 736.644614 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.783324 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 683.974842 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 729.198191 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.818513 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.842025 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 723.737995 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.007401 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.344384 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 731.699827 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.770486 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 684.580257 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 729.498493 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.830863 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 686.016298 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 728.651404 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.359087 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 693.851085 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.660765 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.599905 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 688.944075 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.475665 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 718.851457 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.871599 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 739.741732 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 691.870947 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.713369 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 725.338531 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 685.130419 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.320799 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 724.773208 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.292801 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.054412 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 726.185154 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.301324 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.887145 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 734.622045 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.283347 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 729.008272 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.149392 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.573051 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 731.201251 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 683.258805 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.818053 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 727.368571 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 684.816061 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 731.312129 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.662990 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.837249 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 734.840102 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.305135 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.299496 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 725.459032 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 681.027107 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 730.186905 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.140049 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 684.567873 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 734.461407 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 684.332806 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.666451 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.959251 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.257141 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 727.645107 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 709.594243 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.155715 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 727.400452 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 681.987802 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.492385 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 726.160529 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 684.019362 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 724.461643 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 705.840069 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 685.129028 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 729.900732 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.159836 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.566244 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 739.584303 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.860893 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.629212 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 723.604911 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 682.654949 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.341588 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 729.524978 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 682.879748 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.765958 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 726.608270 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 690.899099 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.266171 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 729.379355 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 680.143179 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.439981 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 723.127897 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 688.240728 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.785971 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.624283 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.696328 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.010351 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 696.561342 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 731.867328 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.962273 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 724.632359 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 683.568512 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 731.690642 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 683.070082 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 733.834595 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 691.149610 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 739.145061 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.022883 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 732.912111 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 681.371127 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.575816 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.140980 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 725.194320 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.456474 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 735.109102 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.300048 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 724.863605 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.510629 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 684.941630 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.200945 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.349109 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 732.948112 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.549254 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.498983 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 725.609118 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.414917 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 733.414155 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 681.569798 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 731.636537 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.649448 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 727.227793 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.407831 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 735.797999 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 689.360420 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 730.044759 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 688.431642 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 727.759785 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.430885 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 709.34 S.D. = 4.0676 S.E.M. = 0.057525 ECHO 0 Execution completed -2 * Loglike = 693.330542 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 729.228692 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.336853 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 728.311663 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 731.082358 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 735.403472 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 724.620471 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 733.775156 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 680.716235 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.03 S.D. = 4.7571 S.E.M. = 0.067276 ECHO 0 Execution completed -2 * Loglike = 723.679447 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 728.52 S.D. = 4.2757 S.E.M. = 0.060467 ECHO 0 Execution completed > > for(i in 1:ns){ + if (Actual[1] > r[[i]]$quantiles[1,1] & Actual[1] < r[[i]]$quantiles[1,2]) { + CounterMCMC[1] <- CounterMCMC[1] + 1 + } + if (Actual[2] > r[[i]]$quantiles[2,1] & Actual[2] < r[[i]]$quantiles[2,2]) { + CounterMCMC[2] <- CounterMCMC[2] + 1 + } + if (Actual[3] > r[[i]]$quantiles[3,1] & Actual[3] < r[[i]]$quantiles[3,2]) { + CounterMCMC[3] <- CounterMCMC[3] + 1 + } + MCMC_array[, , i] <- r[[i]]$MCMCarray + MCMC_median[i, ] <- r[[i]]$MCMCmed + IGLS_array[, , i] <- r[[i]]$IGLSarray + } > > aa <- sapply(1:ns, function(x) na.omit(stack(as.data.frame(IGLS_array[, , x])))$values) > counterIGLS <- rep(0, 3) > for (i in 1:ns) { + if (Actual[1] > aa[1, i] - 1.96 * sqrt(aa[4, i]) && Actual[1] < aa[1, i] + 1.96 * sqrt(aa[4, i])) + { + counterIGLS[1] <- counterIGLS[1] + 1 + } + if (Actual[2] > aa[2, i] - 1.96 * sqrt(aa[5, i]) && Actual[2] < aa[2, i] + 1.96 * sqrt(aa[5, i])) + { + counterIGLS[2] <- counterIGLS[2] + 1 + } + if (Actual[3] > aa[3, i] - 1.96 * sqrt(aa[6, i]) && Actual[3] < aa[3, i] + 1.96 * sqrt(aa[6, i])) + { + counterIGLS[3] <- counterIGLS[3] + 1 + } + } > Percent_interval_coverage <- (counterIGLS/ns) * 100 > Mean_across_simus <- round(c(mean(aa[1, ]), mean(aa[2, ]), mean(aa[3, ])), 2) > Percent_bias <- round(-100 * (1 - Mean_across_simus/Actual), 2) > IGLS_results <- cbind(Mean_across_simus, Actual, Percent_bias, Percent_interval_coverage) > rownames(IGLS_results) <- c("beta0", "sigma2_u", "sigma2_e") > Percent_interval_coverage <- (CounterMCMC/ns) * 100 > bb <- sapply(1:ns, function(x) na.omit(stack(as.data.frame(MCMC_array[, , x])))$values) > Mean_across_simus <- round(c(mean(bb[1, ]), mean(bb[2, ]), mean(bb[3, ])), 2) > Percent_bias <- round(-100 * (1 - Mean_across_simus/Actual), 2) > MCMC_results <- cbind(Mean_across_simus, Actual, Percent_bias, Percent_interval_coverage) > rownames(MCMC_results) <- c("beta0", "sigma2_u", "sigma2_e") > > # 8.5 Analysing the simulation results . . . . . . . . . . . . . . . . . 109 > > cat("Simulation results using IGLS\n") Simulation results using IGLS > IGLS_results Mean_across_simus Actual Percent_bias Percent_interval_coverage beta0 29.90 30 -0.33 89 sigma2_u 8.26 10 -17.40 75 sigma2_e 40.20 40 0.50 98 > cat("Simulation results using MCMC\n") Simulation results using MCMC > MCMC_results Mean_across_simus Actual Percent_bias Percent_interval_coverage beta0 29.86 30 -0.47 89 sigma2_u 15.21 10 52.10 87 sigma2_e 41.55 40 3.87 98 > > # Investigating median estimates with Gamma(epsilon, epsilon) priors > > Mean_across_simus <- round(c(mean(MCMC_median$RP2_var_Intercept), + mean(MCMC_median$RP1_var_Intercept)), 2) > Actual <- tail(Actual, -1) > Percent_bias <- round(-100 * (1 - Mean_across_simus/Actual), 2) > Percent_interval_coverage <- tail(Percent_interval_coverage, -1) > MCMC_results2 <- cbind(Mean_across_simus, Actual, Percent_bias, Percent_interval_coverage) > rownames(MCMC_results2) <- c("sigma2_u", "sigma2_e") > cat("Simulation results based on median MCMC estimates\n") Simulation results based on median MCMC estimates > MCMC_results2 Mean_across_simus Actual Percent_bias Percent_interval_coverage sigma2_u 10.17 10 1.7 87 sigma2_e 40.96 40 2.4 98 > > # Chapter learning outcomes . . . . . . . . . . . . . . . . . . . . . . . 96 > > > > > > ############################################################################ > > proc.time() user system elapsed 3.40 0.29 22.04