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.12/ 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)) + } > > 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) + if (require(doRNG)) { + # Use doRNG package to make random number draws reproducible + registerDoRNG(1) + } else { + warning("doRNG library is not installed, simulations will not match between runs") + } + 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 Loading required package: doRNG Loading required package: rngtools /nogui option ignored 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 ECHO 0 /nogui option ignored /nogui option ignored /nogui option ignored /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 ECHO 0 ECHO 0 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 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 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 /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 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 = 711.180271 Burning in for 100 iterations out of 500 /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.720174 Burning in for 150 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 706.853590 Burning in for 200 iterations out of 500 -2 * Loglike = 718.076987 Burning in for 100 iterations out of 500 -2 * Loglike = 706.618061 Burning in for 250 iterations out of 500 -2 * Loglike = 715.041168 Burning in for 150 iterations out of 500 -2 * Loglike = 713.841187 Burning in for 300 iterations out of 500 -2 * Loglike = 718.478034 Burning in for 200 iterations out of 500 -2 * Loglike = 708.883635 Burning in for 350 iterations out of 500 -2 * Loglike = 719.814044 Burning in for 250 iterations out of 500 -2 * Loglike = 716.659978 Burning in for 400 iterations out of 500 -2 * Loglike = 714.100385 Burning in for 300 iterations out of 500 -2 * Loglike = 711.288934 Burning in for 450 iterations out of 500 -2 * Loglike = 719.654731 Burning in for 350 iterations out of 500 -2 * Loglike = 723.511379 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 710.560583 Burning in for 500 iterations out of 500 -2 * Loglike = 721.252192 Burning in for 450 iterations out of 500 -2 * Loglike = 712.978591 -2 * Loglike = 718.090545 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 = 718.665279 -2 * Loglike = 710.573237 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.464279 Actual update 150 of 5000, Stored update 150 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 = 706.336852 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored -2 * Loglike = 722.114683 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 721.144097 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 714.054529 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 718.016199 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.555769 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.326023 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.823369 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 719.809202 Actual update 300 of 5000, Stored update 300 of 5000 ECHO 0 -2 * Loglike = 705.318377 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 729.811767 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.610085 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.162047 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.715612 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 = 706.536990 Actual update 550 of 5000, Stored update 550 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 718.541743 Actual update 450 of 5000, Stored update 450 of 5000 /nogui option ignored -2 * Loglike = 690.277786 Burning in for 100 iterations out of 500 -2 * Loglike = 708.929804 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.967160 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 687.542936 Burning in for 150 iterations out of 500 -2 * Loglike = 707.855942 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 687.603751 Burning in for 200 iterations out of 500 -2 * Loglike = 714.243824 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.091527 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 691.471349 Burning in for 250 iterations out of 500 -2 * Loglike = 718.038120 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.768782 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.696500 Burning in for 300 iterations out of 500 -2 * Loglike = 717.864089 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 715.592451 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.941766 Burning in for 350 iterations out of 500 -2 * Loglike = 719.194503 Actual update 700 of 5000, Stored update 700 of 5000 /nogui option ignored -2 * Loglike = 707.604848 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.564902 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 712.723207 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 711.844914 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.177183 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 708.966151 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 719.831850 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 693.509693 Burning in for 500 iterations out of 500 -2 * Loglike = 722.027035 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.203612 -2 * Loglike = 715.416238 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.769042 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 711.343843 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.713781 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 = 709.608719 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 = 718.034185 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.789586 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 711.706436 Actual update 1200 of 5000, Stored update 1200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 723.304079 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.930511 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.710582 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.693343 Burning in for 100 iterations out of 500 -2 * Loglike = 717.908330 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 685.449159 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.949676 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.508609 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.080314 Burning in for 150 iterations out of 500 -2 * Loglike = 717.573482 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 715.133231 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.105358 Burning in for 200 iterations out of 500 -2 * Loglike = 688.436008 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.826829 Actual update 1150 of 5000, Stored update 1150 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 = 712.899493 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.534457 Burning in for 250 iterations out of 500 -2 * Loglike = 702.970814 Actual update 350 of 5000, Stored update 350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 714.489311 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 726.664810 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 692.868323 Burning in for 300 iterations out of 500 -2 * Loglike = 684.624645 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.542991 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.764109 Burning in for 100 iterations out of 500 -2 * Loglike = 689.994666 Burning in for 350 iterations out of 500 -2 * Loglike = 710.652939 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 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.250403 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.893005 Actual update 1300 of 5000, Stored update 1300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 699.103286 Burning in for 150 iterations out of 500 -2 * Loglike = 697.803923 Burning in for 400 iterations out of 500 -2 * Loglike = 709.724264 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 687.432418 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.788737 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 683.229922 Burning in for 100 iterations out of 500 -2 * Loglike = 705.189044 Burning in for 200 iterations out of 500 -2 * Loglike = 694.990133 Burning in for 450 iterations out of 500 -2 * Loglike = 712.864444 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.658174 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.262927 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 680.368833 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 = 702.352487 Burning in for 250 iterations out of 500 -2 * Loglike = 716.570564 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.844538 Burning in for 500 iterations out of 500 -2 * Loglike = 718.543666 Actual update 1450 of 5000, Stored update 1450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 686.357195 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 681.646193 Burning in for 200 iterations out of 500 -2 * Loglike = 703.700307 Burning in for 300 iterations out of 500 -2 * Loglike = 716.866664 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.742685 -2 * Loglike = 721.007964 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 697.071615 Burning in for 100 iterations out of 500 -2 * Loglike = 687.164661 Burning in for 250 iterations out of 500 -2 * Loglike = 688.346791 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.287457 Burning in for 350 iterations out of 500 -2 * Loglike = 712.049231 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 = 717.321286 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.340576 Burning in for 150 iterations out of 500 -2 * Loglike = 686.521245 Burning in for 300 iterations out of 500 -2 * Loglike = 686.481483 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.485777 Burning in for 400 iterations out of 500 -2 * Loglike = 717.752798 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.719187 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.812892 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.951955 Burning in for 350 iterations out of 500 -2 * Loglike = 696.148471 Burning in for 200 iterations out of 500 -2 * Loglike = 685.245844 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 704.541387 Burning in for 450 iterations out of 500 -2 * Loglike = 720.398010 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.637079 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.168210 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.927843 Burning in for 250 iterations out of 500 -2 * Loglike = 689.325865 Burning in for 400 iterations out of 500 -2 * Loglike = 687.999421 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.336005 Burning in for 500 iterations out of 500 -2 * Loglike = 698.572370 Burning in for 300 iterations out of 500 -2 * Loglike = 695.605414 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.160207 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.660677 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 683.536058 Burning in for 450 iterations out of 500 -2 * Loglike = 693.029679 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.225594 -2 * Loglike = 698.917619 Burning in for 350 iterations out of 500 -2 * Loglike = 686.970151 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.928050 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 721.393144 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.315838 Burning in for 500 iterations out of 500 -2 * Loglike = 691.166396 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.547883 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 = 691.692168 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 716.055133 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 683.733393 -2 * Loglike = 719.055823 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.345699 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.156202 Burning in for 450 iterations out of 500 -2 * Loglike = 710.122129 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.260064 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.268573 Actual update 2050 of 5000, Stored update 2050 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.080511 Burning in for 500 iterations out of 500 -2 * Loglike = 716.388179 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 686.640734 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.321160 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.233879 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.346574 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 684.503377 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 697.659025 -2 * Loglike = 698.835902 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.538875 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 709.209008 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.894952 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 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.054838 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.784300 Actual update 150 of 5000, Stored update 150 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.869084 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 709.668634 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 712.931309 Actual update 2200 of 5000, Stored update 2200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 715.984193 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 678.441692 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 688.842535 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.261341 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.690178 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 707.862719 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.151295 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.202463 Burning in for 100 iterations out of 500 -2 * Loglike = 717.718501 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 684.849124 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 688.654625 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.430222 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.325601 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.034794 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.367028 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.135079 Burning in for 150 iterations out of 500 -2 * Loglike = 719.601324 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.459158 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.938367 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.593653 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.643287 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 691.001797 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.559727 Burning in for 200 iterations out of 500 -2 * Loglike = 710.024382 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 716.143446 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.761770 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 693.840437 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.325583 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.026407 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.135147 Burning in for 250 iterations out of 500 -2 * Loglike = 692.843329 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 722.721157 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 717.141319 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 677.313359 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.730728 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.339010 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.917847 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 710.438728 Burning in for 300 iterations out of 500 -2 * Loglike = 689.327973 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 709.909782 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.169701 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 687.509136 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.257096 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.917359 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.720862 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 693.874765 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 707.544126 Burning in for 350 iterations out of 500 -2 * Loglike = 708.447054 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 714.960726 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 680.582065 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 691.244530 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.569277 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 690.068971 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 711.926282 Burning in for 400 iterations out of 500 -2 * Loglike = 687.201805 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 716.334684 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 678.722256 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.858573 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.799671 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.279515 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 691.935133 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.531258 Burning in for 450 iterations out of 500 -2 * Loglike = 722.231200 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.449794 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 678.332452 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.943633 Burning in for 500 iterations out of 500 -2 * Loglike = 693.561035 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.087857 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.312598 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 716.276790 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.651389 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 680.360463 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 689.367898 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.232231 -2 * Loglike = 700.040288 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.610992 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.843735 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 715.202813 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 678.779121 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.215135 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 690.469990 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.364397 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 = 692.347557 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 692.725986 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 719.222543 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.963492 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 677.624588 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.037862 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.764223 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 707.383806 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 695.472136 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.567465 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.907099 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 686.025723 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.555629 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.252672 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.252924 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.540864 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 693.555812 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.854255 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.083770 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.851077 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 679.829146 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.063637 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.131054 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.799868 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 709.193096 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 723.806071 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.671604 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.185005 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.715055 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 683.883777 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.475898 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.155576 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 719.288388 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.257462 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.496453 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.875221 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 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 = 681.794873 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 686.215181 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 694.282651 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.920090 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.725914 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.948788 Actual update 3000 of 5000, Stored update 3000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 704.456990 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.703403 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 689.674502 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 687.729360 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.438593 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.236662 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.565983 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.077824 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.485782 Burning in for 100 iterations out of 500 -2 * Loglike = 718.901461 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.682321 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 679.313051 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.243198 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 695.294752 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.372131 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.445329 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 721.115045 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.411785 Burning in for 150 iterations out of 500 -2 * Loglike = 700.645852 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.743232 Burning in for 200 iterations out of 500 -2 * Loglike = 685.990184 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 688.081989 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.078934 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.770691 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.122173 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.977597 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.239772 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.301095 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.152046 Burning in for 250 iterations out of 500 -2 * Loglike = 682.371964 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 719.513215 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.481902 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.416286 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 711.607336 Burning in for 300 iterations out of 500 -2 * Loglike = 696.280700 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.385156 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 706.917189 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 683.457449 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.324981 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.777692 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.913858 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 724.145219 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.459461 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.153529 Burning in for 350 iterations out of 500 -2 * Loglike = 694.493241 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 684.794738 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.938666 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.134363 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 718.686553 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.662117 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 716.155924 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.454404 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.465631 Burning in for 400 iterations out of 500 -2 * Loglike = 681.472721 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.097800 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.720326 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.679859 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.626260 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.312518 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.809539 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 717.412701 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.407294 Burning in for 450 iterations out of 500 -2 * Loglike = 684.627360 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.227869 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.466407 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.457291 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 717.229799 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.996593 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 689.237310 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 707.368590 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.553128 Burning in for 500 iterations out of 500 -2 * Loglike = 678.641447 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.332762 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.036906 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.536134 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 714.087159 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 695.431947 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.577346 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 695.416981 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.908605 -2 * Loglike = 709.667252 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.864837 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.897787 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 706.748561 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 716.836258 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.656679 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 716.880886 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.541519 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.648098 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.036538 Actual update 1500 of 5000, Stored update 1500 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.576778 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.710112 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.401720 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 719.793257 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 705.326907 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.845424 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.054004 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.247934 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.734046 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.483331 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.311618 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.548455 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 720.955600 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.842735 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.068869 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 679.955501 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.922866 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.250874 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.561320 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.035136 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 687.337856 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.354857 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 687.817104 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.848210 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 684.002712 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.990573 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.142243 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.537737 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 686.705369 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.845655 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.750372 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 716.893055 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.822341 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.709718 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.623330 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.637545 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.808762 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.572226 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.362181 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.443966 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.533598 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 693.365809 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.709583 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 682.460590 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 715.350505 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 709.567962 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 706.889324 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.433343 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 699.391456 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.760075 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 719.496879 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 718.462885 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 678.347330 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 709.892188 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.699545 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.784603 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.664422 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.467774 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.562260 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 721.887907 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 682.461439 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 704.458597 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 732.351615 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.067534 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 702.977414 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 691.676281 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.979773 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.115046 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.465688 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 680.600866 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.438178 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.630575 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.952478 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 706.996071 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.802229 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.826008 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.824668 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.546837 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 681.137136 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 707.386347 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 709.792247 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.382023 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 691.831187 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.914004 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.260122 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 693.552555 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.300635 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 704.159125 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.098726 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.010846 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.032282 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 693.954132 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 725.573683 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.662165 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.445101 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.037637 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.167139 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.910166 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 684.586472 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.831530 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 708.028491 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.394038 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.333706 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 692.494744 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.497514 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.413377 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.158310 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 680.926513 Actual update 2100 of 5000, Stored update 2100 of 5000 /nogui option ignored -2 * Loglike = 716.929471 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.534142 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.799600 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.073434 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.663055 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.612041 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 708.753029 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.534814 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 689.880220 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 723.194836 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.302207 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.214526 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.308371 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.946646 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 704.766880 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.163458 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 707.628916 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.040810 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.691274 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 689.843195 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 704.990341 Actual update 2200 of 5000, Stored update 2200 of 5000 ECHO 0 -2 * Loglike = 700.480524 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 690.124841 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.821854 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 711.573066 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 720.001083 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.773273 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.751144 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 690.581273 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.211259 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.078133 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 688.901930 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.367147 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 706.030021 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.977257 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 718.532555 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 682.337261 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.858013 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.923660 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.291491 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.803976 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.751662 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.521133 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 716.431830 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 707.990070 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 684.469346 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.102271 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 697.107250 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.853833 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.991082 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.078879 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.346791 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 710.000470 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 717.554847 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.084281 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.471310 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.248791 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.700144 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.585701 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.839203 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 712.954253 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.198295 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 715.113315 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 679.998580 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.903984 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 696.115456 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.886175 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.521161 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.643662 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.069973 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.259248 Actual update 3350 of 5000, Stored update 3350 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.367392 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 681.250433 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.009862 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.722205 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.452945 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.618136 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.648625 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.211767 Actual update 1850 of 5000, Stored update 1850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 686.913459 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.150240 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 679.730307 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.544051 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.922831 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.527207 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 720.925925 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.915095 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 684.355941 Burning in for 100 iterations out of 500 -2 * Loglike = 704.210726 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.103382 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.654849 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.840396 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.591034 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.465588 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 718.135071 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 711.914365 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.519773 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 681.698028 Burning in for 150 iterations out of 500 -2 * Loglike = 697.425977 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.975352 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.933253 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 683.926663 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 692.570167 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 719.969007 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 696.222948 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.347394 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.443580 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 683.042821 Burning in for 200 iterations out of 500 -2 * Loglike = 691.686031 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.016839 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.422210 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.862815 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 686.543863 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 721.507359 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 695.771124 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.019667 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.911248 Burning in for 250 iterations out of 500 -2 * Loglike = 702.605273 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 692.178231 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.976011 Burning in for 300 iterations out of 500 -2 * Loglike = 683.519521 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 689.894898 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 686.621935 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.393561 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.500621 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 712.726801 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 711.891770 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 709.830137 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 686.225013 Burning in for 350 iterations out of 500 -2 * Loglike = 703.836201 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.399653 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.745155 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 687.006605 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.374560 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.730972 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.925101 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.561696 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 706.116049 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.320286 Burning in for 400 iterations out of 500 -2 * Loglike = 693.417099 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.584071 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.022213 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.557654 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 722.610835 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.019742 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.279719 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 723.701535 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.289663 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 684.995119 Burning in for 450 iterations out of 500 -2 * Loglike = 682.755839 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.709920 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.151325 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.317653 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.069732 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.349888 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 723.099479 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.775952 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.553074 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 688.204911 Burning in for 500 iterations out of 500 -2 * Loglike = 683.424629 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.374318 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.785365 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.132240 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 720.643874 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.181096 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.344004 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 705.994205 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.319372 -2 * Loglike = 678.781961 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.718566 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.701814 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.818612 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.753312 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.154929 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 708.589726 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.113710 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.487671 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 679.843758 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 = 704.839124 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.033446 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.151036 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.530524 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 721.279156 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 705.472534 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 697.240152 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 683.418411 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 685.855970 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.501683 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.423206 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.779105 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.586244 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.296240 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 722.283044 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.066862 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 682.633487 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 685.722672 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.361829 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 681.436155 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.709776 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.000689 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.119104 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.374024 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.260394 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.945231 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 679.796493 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 702.382222 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.509173 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 680.353259 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.711705 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.925786 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 718.737170 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 704.046339 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 694.862292 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.828035 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 705.837885 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.266792 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.785536 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.659487 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.748790 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.336744 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.398565 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 696.324720 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.768022 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.096655 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.022199 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 686.931334 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.397804 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.531926 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.011741 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.11 S.D. = 5.3108 S.E.M. = 0.075106 ECHO 0 Execution completed -2 * Loglike = 707.057269 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.361426 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 697.857912 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.284224 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.049003 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.962387 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.545960 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.895053 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.169320 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.642820 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.084875 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 678.580257 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 707.627521 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.096389 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.219306 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.983585 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.179354 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.205736 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 684.224573 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.820905 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 696.560914 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 688.770854 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.918037 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 696.121665 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.424041 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.113961 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 686.349535 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.362786 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.176324 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.422868 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.394974 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.517769 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.153494 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.615501 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 678.582018 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.544197 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.631670 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.731208 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 679.828505 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.239667 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.757734 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.074084 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 680.165894 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.343427 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.524503 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.625505 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 679.717919 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.715355 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.66 S.D. = 2.5387 S.E.M. = 0.035903 ECHO 0 Execution completed -2 * Loglike = 699.696472 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.871773 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.168024 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 680.449603 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.154933 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.339318 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.001477 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 682.135816 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 698.506145 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.666275 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.015064 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 688.137599 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.896159 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.141896 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.642138 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 680.286158 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.244734 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.842681 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 680.829609 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.470922 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 703.629784 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.380383 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.516306 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 679.115904 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.486416 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 683.216749 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.471897 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.815465 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.931295 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 691.120073 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.427781 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.037030 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.375792 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 693.952414 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.362930 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 694.156611 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.044043 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.701528 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 681.066060 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.919466 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.338653 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 687.359378 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 687.644703 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.614562 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.871899 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.875222 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 685.243547 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.302079 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 689.224754 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.759384 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 680.297412 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.640941 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.218219 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 687.981632 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.409833 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.650892 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.131056 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.024766 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 694.386809 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.191106 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.052024 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.384136 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.491375 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 710.506116 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 695.754940 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.458052 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.738625 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 717.077098 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.255866 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 691.640833 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 681.192526 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 707.184495 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 687.912843 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.124125 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.584487 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.004125 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 703.475277 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.334343 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 708.825468 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.770621 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.840041 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 679.606279 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.649230 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.378723 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.364082 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.418402 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.039600 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 683.763823 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 685.750458 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.427215 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.273772 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.073235 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.587731 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.921045 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 684.627933 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.615901 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 695.299153 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.630040 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.770985 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.817738 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.507527 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.346509 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.991486 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 707.126984 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.540773 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.356645 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.210084 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.673270 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.920984 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.200432 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.867652 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.444101 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.635123 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 690.003169 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 711.245433 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 681.884650 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 686.120358 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.833046 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.465472 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 708.992608 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.400336 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.516046 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 688.178538 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.123584 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 679.930035 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.548872 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.800051 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.605108 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 687.223273 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 689.225422 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.871203 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.878633 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.509942 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.732264 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.828246 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.852972 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 690.737974 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.239714 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.348454 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.290842 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.253598 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.159727 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 683.676869 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.951824 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.46 S.D. = 4.0581 S.E.M. = 0.057390 ECHO 0 Execution completed -2 * Loglike = 689.930658 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.903930 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.599930 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.586524 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 706.091528 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.079926 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 679.521376 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.004141 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.843333 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 681.073984 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.793241 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.275676 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.282664 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 714.760427 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.199235 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.000162 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 685.330074 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 696.423644 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.031142 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 711.726615 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.686589 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 685.082946 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 681.820407 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.228789 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.609936 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 704.688587 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.610555 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 693.641939 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.152309 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 684.941692 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.506457 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 706.445068 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 709.061591 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 706.041176 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 683.640373 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.897650 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 713.531654 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.863643 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 706.124984 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 703.689574 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 690.071599 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 683.550352 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.303291 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.152264 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.013712 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.937346 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.970120 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 681.773240 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.848184 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.663253 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 706.872148 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 705.252540 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.084880 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.868324 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.751722 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.890654 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.127784 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.191493 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.803577 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.561388 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.150072 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 686.985285 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.447081 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.282499 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 705.991456 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 682.453058 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.495825 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.532358 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.990988 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 692.078877 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.940053 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.516481 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.075670 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 685.150494 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 706.614097 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.814076 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.893999 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 683.444406 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.450701 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 707.453484 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.540199 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.841268 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.184013 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.353331 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.368612 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.686158 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.047691 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.938224 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.481105 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.082595 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 693.071474 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 687.030151 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.31 S.D. = 4.5458 S.E.M. = 0.064288 ECHO 0 Execution completed -2 * Loglike = 708.121481 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.330870 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 681.152931 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.715189 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 679.410195 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.26 S.D. = 4.2534 S.E.M. = 0.060152 ECHO 0 Execution completed -2 * Loglike = 704.594589 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 714.385481 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 710.064326 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.787174 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.648630 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.643718 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 707.782175 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.639393 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.352205 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 712.841597 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 686.669509 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 711.501457 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.480091 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.58 S.D. = 2.6838 S.E.M. = 0.037954 ECHO 0 Execution completed -2 * Loglike = 693.400236 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.22 S.D. = 4.2108 S.E.M. = 0.059549 ECHO 0 Execution completed -2 * Loglike = 708.055915 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.630393 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.618473 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 684.893049 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.442432 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 695.853334 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.410774 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 684.157823 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.613469 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 715.256054 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 706.285148 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 684.405419 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.313099 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.36 S.D. = 4.1327 S.E.M. = 0.058445 ECHO 0 Execution completed -2 * Loglike = 705.818871 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.949785 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.139592 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.046642 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.788512 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 681.042941 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.607268 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.924249 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 683.383287 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 682.820543 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.922929 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 687.152301 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.200478 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 681.528507 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 686.936691 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 685.673720 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 687.587114 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 679.932399 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.666470 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 681.813559 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.769111 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.685947 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 683.740709 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.288370 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.904352 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 688.476171 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.588938 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 709.74 S.D. = 4.2668 S.E.M. = 0.060341 ECHO 0 Execution completed -2 * Loglike = 681.617464 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 681.193298 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.637393 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 682.578113 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 681.114147 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 686.071239 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.852946 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 689.475419 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.849337 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.239321 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 687.575707 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 688.506418 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 681.951804 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 685.409885 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.858337 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.752525 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 686.973758 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 693.967981 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 685.536766 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.675511 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 680.793074 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 685.62 S.D. = 4.2573 S.E.M. = 0.060207 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 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 /nogui option ignored ECHO 0 /nogui option ignored ECHO 0 ECHO 0 /nogui option ignored 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 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 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 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.398574 Burning in for 100 iterations out of 500 -2 * Loglike = 696.173588 Burning in for 150 iterations out of 500 -2 * Loglike = 696.581365 Burning in for 200 iterations out of 500 /nogui option ignored -2 * Loglike = 700.085618 Burning in for 250 iterations out of 500 -2 * Loglike = 700.621221 Burning in for 300 iterations out of 500 -2 * Loglike = 699.230972 Burning in for 350 iterations out of 500 -2 * Loglike = 703.873427 Burning in for 400 iterations out of 500 -2 * Loglike = 701.460960 Burning in for 450 iterations out of 500 -2 * Loglike = 697.882248 Burning in for 500 iterations out of 500 ECHO 0 -2 * Loglike = 698.835216 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.796319 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 703.530818 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.351702 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.840044 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.830158 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.296579 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.175748 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.092530 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.013561 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.126806 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.077986 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.549290 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 698.012856 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.894195 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.161647 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.518036 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.760636 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.869587 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... Burning in for 50 iterations out of 500 -2 * Loglike = 710.119085 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.872848 Burning in for 100 iterations out of 500 -2 * Loglike = 699.427976 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.104486 Burning in for 150 iterations out of 500 -2 * Loglike = 698.553919 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 679.614602 Burning in for 200 iterations out of 500 -2 * Loglike = 698.913908 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 681.544508 Burning in for 250 iterations out of 500 -2 * Loglike = 698.675029 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 680.456714 Burning in for 300 iterations out of 500 -2 * Loglike = 678.999316 Burning in for 350 iterations out of 500 -2 * Loglike = 701.440966 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.210665 Burning in for 400 iterations out of 500 -2 * Loglike = 697.824123 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 683.469290 Burning in for 450 iterations out of 500 -2 * Loglike = 699.986591 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 679.255678 Burning in for 500 iterations out of 500 -2 * Loglike = 696.114313 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.604576 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 682.703233 -2 * Loglike = 699.542315 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.395799 Actual update 1550 of 5000, Stored update 1550 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.462438 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 682.088652 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 701.674613 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 682.100931 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.311449 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 676.802676 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.437539 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 683.160078 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 694.841029 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.194580 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 679.718437 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.649171 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.944226 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.552133 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 675.154060 Actual update 400 of 5000, Stored update 400 of 5000 /nogui option ignored -2 * Loglike = 706.529531 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.798823 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.562932 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 676.447561 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.866021 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 676.423615 Actual update 550 of 5000, Stored update 550 of 5000 /nogui option ignored -2 * Loglike = 703.198004 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 677.215845 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 679.262806 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 702.079529 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.259472 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 681.109189 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.861633 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 675.983844 Actual update 750 of 5000, Stored update 750 of 5000 ECHO 0 -2 * Loglike = 682.782600 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.305761 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 678.501968 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.446944 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 680.879806 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 698.568070 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 678.654026 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.175518 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.237537 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 682.787639 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.292407 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 680.473217 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.400339 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.878009 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 680.942868 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.790051 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.729216 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 680.687706 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.818927 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.835220 Actual update 2850 of 5000, Stored update 2850 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 = 681.937276 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.539069 Actual update 2900 of 5000, Stored update 2900 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 680.645096 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.338924 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 679.077038 Burning in for 100 iterations out of 500 -2 * Loglike = 682.862317 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.957591 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 677.074576 Burning in for 150 iterations out of 500 -2 * Loglike = 681.266298 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.917120 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 676.942967 Burning in for 200 iterations out of 500 -2 * Loglike = 693.162878 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 698.126739 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 678.045738 Burning in for 250 iterations out of 500 -2 * Loglike = 681.465960 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.753286 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 681.096364 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.480562 Burning in for 300 iterations out of 500 -2 * Loglike = 698.215389 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 679.697297 Burning in for 350 iterations out of 500 -2 * Loglike = 679.386641 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 697.419285 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.568878 Burning in for 400 iterations out of 500 -2 * Loglike = 685.508118 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.794345 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 680.604115 Burning in for 450 iterations out of 500 -2 * Loglike = 684.770219 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.742697 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 681.653453 Burning in for 500 iterations out of 500 -2 * Loglike = 681.784581 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.191010 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 677.172819 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 683.203012 -2 * Loglike = 699.587203 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 675.829348 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.171920 Actual update 3500 of 5000, Stored update 3500 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 = 678.412770 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.237814 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 679.431237 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 678.419005 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.302222 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 684.728820 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.188037 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 695.488298 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 675.430796 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 682.983197 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 696.503615 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 678.362866 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 678.125540 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.697475 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 678.696660 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 681.624998 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.450670 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.527865 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 682.209800 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 674.392792 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.021672 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.199859 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 685.426948 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.263259 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.591762 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 678.185940 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.113130 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.495595 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 676.050613 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 689.369376 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 -2 * Loglike = 702.309168 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 679.453364 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 676.313734 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.463176 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 680.418455 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 689.324165 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 697.343926 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 676.165568 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 706.572789 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 684.104267 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 679.576532 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.139970 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 682.143731 Actual update 2650 of 5000, Stored update 2650 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 = 674.636103 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 680.776887 Actual update 2700 of 5000, Stored update 2700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 682.625382 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.763055 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 680.579270 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 721.146575 Burning in for 100 iterations out of 500 -2 * Loglike = 704.104953 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 684.809504 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 676.934690 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.105340 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.393161 Burning in for 150 iterations out of 500 -2 * Loglike = 689.410771 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 703.809953 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 680.579448 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.907196 Burning in for 200 iterations out of 500 -2 * Loglike = 680.822554 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.886897 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 679.952413 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 680.940587 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 724.884314 Burning in for 250 iterations out of 500 -2 * Loglike = 685.242830 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.646311 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 680.023391 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.452604 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 683.805041 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.379338 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 725.112189 Burning in for 300 iterations out of 500 -2 * Loglike = 680.286320 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 681.521788 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.455081 Actual update 4600 of 5000, Stored update 4600 of 5000 /nogui option ignored -2 * Loglike = 723.498323 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 = 678.469362 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 679.075984 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.794414 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.753341 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.562396 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 680.612509 Actual update 1200 of 5000, Stored update 1200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 684.154182 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 680.361249 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 685.684618 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.865194 Burning in for 100 iterations out of 500 -2 * Loglike = 695.585162 Actual update 4750 of 5000, Stored update 4750 of 5000 /nogui option ignored -2 * Loglike = 678.879182 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.244364 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 728.405723 Burning in for 400 iterations out of 500 -2 * Loglike = 709.017051 Burning in for 150 iterations out of 500 -2 * Loglike = 678.187046 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.834123 Actual update 4800 of 5000, Stored update 4800 of 5000 ECHO 0 -2 * Loglike = 681.982894 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 682.622905 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 724.829838 Burning in for 450 iterations out of 500 -2 * Loglike = 709.497136 Burning in for 200 iterations out of 500 -2 * Loglike = 725.906503 Burning in for 500 iterations out of 500 -2 * Loglike = 680.395906 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.335268 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 725.900434 -2 * Loglike = 714.651587 Burning in for 250 iterations out of 500 -2 * Loglike = 681.705713 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.463027 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.176594 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.708577 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 = 680.361955 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 676.299502 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 714.268620 Burning in for 300 iterations out of 500 -2 * Loglike = 700.300431 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 676.783339 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.390705 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 677.248429 Actual update 3650 of 5000, Stored update 3650 of 5000 /nogui option ignored -2 * Loglike = 713.004742 Burning in for 350 iterations out of 500 -2 * Loglike = 679.527795 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.936807 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.608045 Actual update 150 of 5000, Stored update 150 of 5000 /nogui option ignored -2 * Loglike = 678.050165 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.228251 Burning in for 400 iterations out of 500 -2 * Loglike = 683.693816 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.813392 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 684.744151 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.465608 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.521459 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.098958 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 = 679.467654 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 720.666145 Actual update 300 of 5000, Stored update 300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.452149 Burning in for 500 iterations out of 500 -2 * Loglike = 676.681159 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 675.369596 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 736.354381 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.684208 Burning in for 100 iterations out of 500 -2 * Loglike = 710.290097 -2 * Loglike = 685.980557 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 675.850158 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 716.522115 Actual update 400 of 5000, Stored update 400 of 5000 ECHO 0 -2 * Loglike = 685.675063 Burning in for 150 iterations out of 500 -2 * Loglike = 678.362947 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.328961 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 = 733.021737 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 689.529879 Burning in for 200 iterations out of 500 -2 * Loglike = 678.435723 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.497659 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.577586 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.632219 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.454420 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 690.057270 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.623627 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 682.815879 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 686.112071 Burning in for 250 iterations out of 500 -2 * Loglike = 717.252461 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 679.659067 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 707.128766 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 678.617465 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.700685 Burning in for 300 iterations out of 500 -2 * Loglike = 719.398904 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.743337 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 675.591150 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 680.324045 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 = 691.214860 Burning in for 350 iterations out of 500 -2 * Loglike = 722.053818 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 680.281744 Actual update 2150 of 5000, Stored update 2150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 709.722236 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.214395 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.890667 Burning in for 400 iterations out of 500 -2 * Loglike = 716.554218 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 682.553064 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.248974 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.91 S.D. = 4.0782 S.E.M. = 0.057674 ECHO 0 Execution completed -2 * Loglike = 689.167759 Burning in for 100 iterations out of 500 -2 * Loglike = 725.436625 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.177172 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.055918 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 = 723.435892 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 677.583179 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.401493 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 687.147269 Burning in for 150 iterations out of 500 -2 * Loglike = 705.993980 Actual update 400 of 5000, Stored update 400 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 = 686.973078 Burning in for 500 iterations out of 500 -2 * Loglike = 687.627368 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.042670 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 680.901042 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 682.863401 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.515453 Burning in for 100 iterations out of 500 -2 * Loglike = 694.104802 Burning in for 200 iterations out of 500 -2 * Loglike = 717.139820 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.809573 Burning in for 50 iterations out of 500 -2 * Loglike = 722.015508 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 679.136935 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 689.372656 Burning in for 150 iterations out of 500 -2 * Loglike = 685.919028 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 692.431501 Burning in for 250 iterations out of 500 -2 * Loglike = 707.016700 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.126383 Burning in for 100 iterations out of 500 -2 * Loglike = 690.373409 Burning in for 200 iterations out of 500 -2 * Loglike = 723.753597 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.507772 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.733521 Actual update 4450 of 5000, Stored update 4450 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 = 692.598893 Burning in for 300 iterations out of 500 -2 * Loglike = 707.192970 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 677.445262 Burning in for 150 iterations out of 500 -2 * Loglike = 690.713269 Burning in for 250 iterations out of 500 -2 * Loglike = 728.919029 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.294404 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.034283 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.284563 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.800990 Burning in for 350 iterations out of 500 -2 * Loglike = 707.166010 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 680.023309 Burning in for 200 iterations out of 500 -2 * Loglike = 689.373082 Burning in for 300 iterations out of 500 -2 * Loglike = 718.963826 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 677.181762 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 686.770018 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.359829 Burning in for 400 iterations out of 500 -2 * Loglike = 693.820118 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.792748 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 677.615643 Burning in for 250 iterations out of 500 -2 * Loglike = 691.891385 Burning in for 350 iterations out of 500 -2 * Loglike = 724.127293 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 685.569565 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.557340 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.115779 Burning in for 450 iterations out of 500 -2 * Loglike = 689.947150 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 709.588644 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 684.460719 Burning in for 300 iterations out of 500 -2 * Loglike = 696.252873 Burning in for 400 iterations out of 500 -2 * Loglike = 722.181533 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 678.931729 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.831070 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.004677 Burning in for 500 iterations out of 500 -2 * Loglike = 693.709072 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.550229 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 681.240081 Burning in for 350 iterations out of 500 -2 * Loglike = 693.383804 Burning in for 450 iterations out of 500 -2 * Loglike = 722.512972 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 687.175153 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 677.145505 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 690.211728 -2 * Loglike = 686.616584 Burning in for 400 iterations out of 500 -2 * Loglike = 713.605695 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.299553 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.634175 Burning in for 500 iterations out of 500 -2 * Loglike = 708.559330 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 681.460616 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 678.255105 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 681.888070 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 = 723.294321 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.102350 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.098055 -2 * Loglike = 711.804888 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 680.444247 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.232056 Burning in for 500 iterations out of 500 -2 * Loglike = 679.638639 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.455966 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.316610 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.833051 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.116138 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 682.817188 Actual update 4850 of 5000, Stored update 4850 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.153797 -2 * Loglike = 684.462627 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.875147 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.472495 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 690.778337 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.930318 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 686.651615 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.529339 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.872856 Actual update 2850 of 5000, Stored update 2850 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.934660 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.327101 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 688.760337 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 709.504373 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.204325 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 682.855407 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 680.967238 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.747421 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.673151 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 732.803210 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.686449 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.254404 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 684.392320 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 682.783350 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.920197 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.802388 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.278002 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 722.809322 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.601049 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.785642 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 678.738492 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 675.761157 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.041891 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 703.889586 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 719.695840 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 686.085604 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.223311 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 680.604305 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 685.198841 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.386904 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.552214 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.204095 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.247423 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.922542 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 678.666357 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 679.995273 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 694.560258 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 724.792651 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.948212 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 684.205252 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 711.395086 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.638877 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.203074 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.811596 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 721.967311 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 676.638665 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 681.90 S.D. = 4.0580 S.E.M. = 0.057389 ECHO 0 Execution completed -2 * Loglike = 692.108358 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.283132 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 675.548714 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 689.607709 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 679.344178 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.917920 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.332814 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.753781 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.456740 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 689.239599 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.855152 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 679.308498 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.038400 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.112845 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.224394 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 692.952506 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 683.129642 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 689.810183 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.336576 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 712.618421 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.972279 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.836719 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 679.579616 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.690393 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.672314 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 686.641003 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.679563 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.504229 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.824489 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 678.616490 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 676.810827 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 720.074906 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.646761 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.388675 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 707.279437 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 690.542954 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 677.564046 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 683.708803 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 721.177993 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 684.482413 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.753733 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 711.745452 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.277826 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.264386 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 679.510284 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 732.827552 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.462184 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.849480 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.773668 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 675.186811 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.036897 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 682.014334 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 722.013405 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 687.503775 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 687.512900 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.712058 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 684.964981 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.471320 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 675.457760 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.531353 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.649132 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.059725 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.265887 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 678.755632 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.695163 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 675.081075 Actual update 3650 of 5000, Stored update 3650 of 5000 ECHO 0 -2 * Loglike = 690.536707 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 725.744240 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 689.746286 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.614433 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 676.430316 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 681.472610 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.862010 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.598221 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.514222 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 724.959751 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.145724 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.571054 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.686322 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.690201 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.127943 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.033404 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 678.332730 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 680.614145 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.177005 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.094066 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 721.643297 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.438011 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.610151 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.763844 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.159343 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.857974 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.544256 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.882435 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 689.771978 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.929224 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 687.014677 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 686.709990 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.681858 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 690.142548 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 688.720166 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 729.292346 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.558341 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.852351 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.778086 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.573023 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 708.469172 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.755852 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 719.336123 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.508518 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.109080 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 679.063968 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.817360 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 728.093368 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.647002 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 721.338823 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.817744 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 676.862851 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.224254 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 681.917280 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.378730 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.385101 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 721.327796 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.017926 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 678.903461 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 691.236961 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 681.040346 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.742233 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.981980 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 = 725.163194 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 688.000142 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.812531 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.658259 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 677.279653 Actual update 1300 of 5000, Stored update 1300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.788975 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.942799 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 677.603353 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 720.809331 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.868831 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 684.156224 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 690.568960 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.913511 Burning in for 100 iterations out of 500 -2 * Loglike = 686.527468 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.836319 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 676.395004 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 718.778183 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 724.515275 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.148909 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.164413 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.704533 Burning in for 150 iterations out of 500 -2 * Loglike = 688.166347 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 677.977614 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.843358 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.666038 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.994939 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 685.177279 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 693.059911 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.220272 Burning in for 200 iterations out of 500 -2 * Loglike = 691.653265 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.067213 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 693.760430 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 711.664958 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 726.254534 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 680.192033 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 689.068463 Burning in for 250 iterations out of 500 -2 * Loglike = 689.805223 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.846631 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.143725 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.326602 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 677.792011 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 729.559325 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.550135 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.388597 Burning in for 300 iterations out of 500 -2 * Loglike = 693.999270 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.429904 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.502581 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.523236 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.835966 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.009395 Burning in for 350 iterations out of 500 -2 * Loglike = 693.243361 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.342141 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.538771 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.810523 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 721.798470 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 678.550331 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 682.495553 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 690.628326 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.875955 Burning in for 400 iterations out of 500 -2 * Loglike = 692.618694 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.520798 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 684.117174 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 721.299869 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 684.698705 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.268465 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.772471 Burning in for 450 iterations out of 500 -2 * Loglike = 693.957677 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.683767 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 692.493783 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 676.865573 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.108034 Actual update 2700 of 5000, Stored update 2700 of 5000 /nogui option ignored -2 * Loglike = 686.452302 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.424852 Burning in for 500 iterations out of 500 -2 * Loglike = 680.734606 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 721.234593 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.054053 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.384780 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 679.918267 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 711.815384 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.829909 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.876240 -2 * Loglike = 683.919829 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.667401 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.597357 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.205778 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 678.782966 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.001631 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.453053 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 = 675.616794 Actual update 1800 of 5000, Stored update 1800 of 5000 ECHO 0 -2 * Loglike = 720.687239 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.510743 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.318687 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.394773 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.586028 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.535640 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 687.338703 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 675.305926 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.007039 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 720.059421 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 679.489253 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.808087 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.711114 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 687.609119 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 691.552300 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 679.022745 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.247693 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 725.634212 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.439547 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 687.881437 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.482414 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 688.731268 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.653086 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.516554 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.620503 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.590233 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.605248 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.395873 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.624262 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 689.246264 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.780190 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.093445 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.579047 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.078247 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.970317 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 685.464518 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.502393 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 682.024065 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.893868 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.563718 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 725.924957 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 690.686529 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.159370 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.213278 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.582825 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.711322 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.914489 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.724703 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.146844 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.172777 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 682.842600 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 709.018167 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.066409 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.356056 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 726.290154 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 694.516086 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 678.618702 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.971069 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.555383 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.086006 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.556187 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 717.111799 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.445609 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.302764 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 681.068237 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 685.588118 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 723.317440 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.459835 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 720.128312 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.369045 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 691.613898 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 682.711558 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.211733 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.706226 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.429849 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.180230 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.990790 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 692.335760 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 682.613523 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 683.403340 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.855703 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.250872 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 726.638830 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.163573 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.489135 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.634517 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 685.878742 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.476928 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.291917 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 689.978863 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 721.578913 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.117271 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 675.510907 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 681.10 S.D. = 4.2147 S.E.M. = 0.059605 ECHO 0 Execution completed -2 * Loglike = 693.378765 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.205306 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 715.612583 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 690.783663 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 724.205134 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.022366 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.820334 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.887049 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.896734 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.880845 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.510724 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.280836 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.095591 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 708.767605 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.442469 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.333170 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.256272 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 725.907113 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 685.916103 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.472123 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.358301 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.402886 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 683.228738 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.142893 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.767480 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 726.307406 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.029565 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.638201 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.519786 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 684.906625 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 687.083754 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 687.627417 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.504466 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 709.874073 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.499846 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 690.273372 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 681.191764 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 689.400249 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.784117 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.862313 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 728.192184 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.111200 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.629045 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.555803 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.037475 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.935575 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 735.032239 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 729.011628 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.302546 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.442506 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.337338 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 678.111684 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 691.987788 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 731.419657 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.998358 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.850502 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.951064 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.786719 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 685.731354 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.338812 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.075772 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 717.956729 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.888305 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 687.687533 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 691.045652 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.326444 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.108652 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 720.220676 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 729.120861 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.837283 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.157698 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.167764 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 687.996398 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.770492 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.148456 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 719.416959 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.379136 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 690.017624 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 685.581568 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.155417 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 718.218380 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.245008 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 725.937568 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 685.739639 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.850957 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 689.341473 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 681.012375 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.458195 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 709.544011 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 730.228736 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 689.999613 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.006467 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 690.724441 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 682.906325 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 692.922852 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 708.464088 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 721.044553 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 685.328275 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.431984 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 688.984387 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 678.645090 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.294263 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 719.619554 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 730.830840 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.732059 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 686.215250 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.819940 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 679.657161 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 695.754776 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.976248 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 727.373820 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 689.532174 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.741564 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.682155 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 680.304118 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.810817 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.414740 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 684.257168 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 689.874956 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 723.750675 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.821776 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 682.056819 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 685.934482 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 716.664353 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.770181 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.461374 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.718507 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.884803 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 686.599743 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 719.882049 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.302703 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.510637 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.004381 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.213147 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 686.635347 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.130401 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.472658 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.100202 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 722.230865 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.286348 Actual update 3450 of 5000, Stored update 3450 of 5000 /nogui option ignored -2 * Loglike = 695.668159 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 679.752384 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 686.949417 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 693.517665 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 719.572170 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 737.045091 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.234658 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.539078 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 685.255494 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 686.973490 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.966817 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 679.903574 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.606136 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 693.567597 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 688.935111 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 725.393060 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 683.561359 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.556020 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 681.440441 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.415244 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.412861 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 729.809016 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.394874 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 684.619063 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 678.353645 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.119749 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.872586 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.262165 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.532409 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.598223 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 677.108788 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.120042 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.772709 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.226702 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 687.342343 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.529758 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 677.665278 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.367361 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.216397 Actual update 3850 of 5000, Stored update 3850 of 5000 ECHO 0 -2 * Loglike = 692.904591 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.906861 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 685.519169 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.589837 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.802554 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.608387 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 690.812126 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.827964 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 679.743498 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.178681 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.211796 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 684.409590 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 689.670624 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 724.463265 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 684.489443 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.113719 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 688.670132 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 686.298166 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.601868 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.023847 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.541934 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.351676 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 690.519304 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.141193 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 689.563003 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 721.667172 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 682.527079 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.997556 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 691.570440 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.669523 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.490281 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 685.991418 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 692.971914 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.488708 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 688.980668 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 677.189660 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 693.289158 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 687.467254 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.028496 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.750077 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 680.648584 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.334524 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.887701 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.301750 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 686.419049 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 689.054212 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.531191 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.386080 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 678.726270 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.973347 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.430536 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 690.815204 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.823335 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 676.431890 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.578078 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 691.119805 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 697.658293 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 686.579361 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.314631 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.268414 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.996624 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.33 S.D. = 4.3460 S.E.M. = 0.061462 ECHO 0 Execution completed -2 * Loglike = 692.459809 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 695.901216 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.763713 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 693.311073 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 678.979201 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.797412 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.884249 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 689.949254 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 691.546159 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 684.332564 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.788827 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.893233 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 689.095302 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 686.031045 Actual update 2650 of 5000, Stored update 2650 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 = 683.605481 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 686.884237 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.809460 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.776375 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 691.609269 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.755679 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 681.590560 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.020457 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.723268 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 688.305124 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 688.236368 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 690.853708 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.137860 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.088292 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 692.878759 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 682.197307 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.620102 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.327876 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 689.582844 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.778414 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 679.736744 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.022863 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.82 S.D. = 5.4516 S.E.M. = 0.077097 ECHO 0 Execution completed -2 * Loglike = 690.586046 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.387151 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 688.071963 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 686.101319 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.163907 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 683.024763 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.209371 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 678.730008 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.892645 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.612970 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 678.594985 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.636306 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.201289 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 690.115776 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.106652 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 685.500376 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.925484 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.718167 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 688.434848 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 687.563752 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 679.970554 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 690.121878 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.601859 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 687.849237 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 683.013259 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 687.261028 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.519840 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.790990 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.817794 Actual update 3300 of 5000, Stored update 3300 of 5000 /nogui option ignored -2 * Loglike = 700.728817 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 685.938670 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 689.941683 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 690.63 S.D. = 2.7622 S.E.M. = 0.039063 ECHO 0 Execution completed -2 * Loglike = 691.945039 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 688.153646 Actual update 3500 of 5000, Stored update 3500 of 5000 ECHO 0 -2 * Loglike = 691.420502 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.005433 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 686.667660 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.35 S.D. = 3.7841 S.E.M. = 0.053516 ECHO 0 Execution completed -2 * Loglike = 684.589461 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.675543 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.80 S.D. = 2.1935 S.E.M. = 0.031020 ECHO 0 Execution completed -2 * Loglike = 683.077842 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 683.16 S.D. = 5.4805 S.E.M. = 0.077506 ECHO 0 Execution completed -2 * Loglike = 685.915150 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 693.085104 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.551832 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.837741 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 693.566612 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.895544 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 693.992972 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.336931 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.038867 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 = 696.752795 Actual update 4150 of 5000, Stored update 4150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 686.436103 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.918045 Burning in for 100 iterations out of 500 -2 * Loglike = 684.463530 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.513239 Burning in for 150 iterations out of 500 -2 * Loglike = 697.871698 Burning in for 200 iterations out of 500 -2 * Loglike = 694.021255 Actual update 4300 of 5000, Stored update 4300 of 5000 /nogui option ignored -2 * Loglike = 700.081517 Burning in for 250 iterations out of 500 -2 * Loglike = 704.384242 Burning in for 300 iterations out of 500 -2 * Loglike = 701.080908 Burning in for 350 iterations out of 500 -2 * Loglike = 686.734409 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.338370 Burning in for 400 iterations out of 500 -2 * Loglike = 700.269586 Burning in for 450 iterations out of 500 -2 * Loglike = 692.986384 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 695.660748 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 688.153406 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.569313 Burning in for 500 iterations out of 500 ECHO 0 -2 * Loglike = 703.651929 -2 * Loglike = 694.896312 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 692.647678 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 687.833973 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 691.371077 Actual update 4700 of 5000, Stored update 4700 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 = 700.330195 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.262053 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.003162 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 687.025620 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.721061 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.356083 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.082645 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.978449 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.160873 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.651667 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.910819 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.903510 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.736801 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.362587 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.340155 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.501286 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 696.584301 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 695.752088 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 697.722374 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 694.912520 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 703.226582 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.974036 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 701.309299 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.235773 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.295011 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.659867 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.31 S.D. = 4.0218 S.E.M. = 0.056876 ECHO 0 Execution completed -2 * Loglike = 699.780756 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.003319 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.232870 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.079429 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.008371 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.020502 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.543002 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.155280 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 714.723081 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.432792 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 697.302816 Actual update 1550 of 5000, Stored update 1550 of 5000 /nogui option ignored -2 * Loglike = 699.689729 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.746267 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 701.993496 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.972229 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.622159 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.735031 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 698.482682 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 698.741760 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 711.309021 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 699.326873 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 696.367157 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.625662 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.580815 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.222715 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.994934 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.690123 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.994873 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.359365 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.041602 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.026499 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... Burning in for 50 iterations out of 500 -2 * Loglike = 704.013218 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 722.912596 Burning in for 100 iterations out of 500 -2 * Loglike = 697.471055 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.205275 Burning in for 150 iterations out of 500 -2 * Loglike = 717.718830 Burning in for 200 iterations out of 500 -2 * Loglike = 702.830241 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 700.415603 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.993389 Burning in for 250 iterations out of 500 -2 * Loglike = 704.481210 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.970680 Burning in for 300 iterations out of 500 -2 * Loglike = 718.202327 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 = 707.633610 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 722.317778 Burning in for 400 iterations out of 500 -2 * Loglike = 717.267629 Burning in for 450 iterations out of 500 -2 * Loglike = 698.953732 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.982365 Burning in for 500 iterations out of 500 -2 * Loglike = 702.778230 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.654737 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.455389 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 721.370830 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 697.981940 Actual update 3050 of 5000, Stored update 3050 of 5000 /nogui option ignored -2 * Loglike = 716.393616 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.916848 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.467552 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.147719 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.351816 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 698.694933 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 727.895986 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 726.428102 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.045516 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.953624 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 730.064180 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 ECHO 0 -2 * Loglike = 697.193657 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 721.401132 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.350016 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 724.238645 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 700.931033 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.259678 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.699934 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.935228 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.904721 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 723.306042 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 695.797329 Actual update 3650 of 5000, Stored update 3650 of 5000 ECHO 0 -2 * Loglike = 715.391690 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.821413 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 714.523834 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.535937 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.115319 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.257903 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 726.122867 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 714.103607 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 704.805760 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.823284 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 727.417224 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.482164 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.162474 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.844135 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.099573 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 697.006991 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 723.932944 Actual update 1050 of 5000, Stored update 1050 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 = 698.684361 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.660072 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 707.651784 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 716.657293 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 716.955288 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.955992 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.719605 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.790211 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.877024 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 724.736809 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 = 697.221352 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 723.467678 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 705.674417 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.738841 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.773633 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 724.569531 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.850340 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.866362 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 724.276217 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.101003 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.358404 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 723.558424 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.342203 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 724.076302 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.110068 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.536700 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 699.718823 Actual update 4800 of 5000, Stored update 4800 of 5000 /nogui option ignored -2 * Loglike = 722.614219 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.181265 Actual update 4850 of 5000, Stored update 4850 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 = 721.915577 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.468179 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.936060 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.482378 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.586843 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 709.247349 Actual update 5000 of 5000, Stored update 5000 of 5000 ECHO 0 -2 * Loglike = 713.081882 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.461742 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 724.258761 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.872042 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.141362 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.882206 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 717.582621 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.462095 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 725.874719 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.500805 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 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.878851 Actual update 2400 of 5000, Stored update 2400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 720.937939 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.596331 Burning in for 100 iterations out of 500 -2 * Loglike = 715.360840 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.263201 Burning in for 150 iterations out of 500 -2 * Loglike = 720.070923 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.169914 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.52 S.D. = 4.2058 S.E.M. = 0.059479 ECHO 0 Execution completed -2 * Loglike = 714.014341 Burning in for 200 iterations out of 500 -2 * Loglike = 729.725685 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.989599 Burning in for 250 iterations out of 500 -2 * Loglike = 722.225390 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 717.563305 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 717.261170 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.718650 Burning in for 350 iterations out of 500 -2 * Loglike = 720.286729 Burning in for 400 iterations out of 500 -2 * Loglike = 719.076020 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.830443 Burning in for 450 iterations out of 500 -2 * Loglike = 722.022286 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.553609 Burning in for 500 iterations out of 500 -2 * Loglike = 725.081418 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.037108 -2 * Loglike = 724.654977 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.592005 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 = 720.976809 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 718.889664 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.686698 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.343671 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 718.640992 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 710.549959 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.080734 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 718.447633 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.810302 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 723.971176 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.187638 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.434082 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 728.056306 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.866458 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.177430 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 709.309574 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.685392 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 725.841158 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.389330 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.920970 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 710.673350 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.318099 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.689595 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.635947 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.400562 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.170629 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 722.141525 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.783821 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.346212 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.929379 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 723.130010 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.788373 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.821014 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.347539 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.611577 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.260286 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 729.439235 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 726.014760 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 722.348785 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 715.516844 Actual update 4000 of 5000, Stored update 4000 of 5000 /nogui option ignored -2 * Loglike = 716.059585 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.282585 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.329644 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 714.622699 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.438658 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 718.657563 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 715.687676 Actual update 1200 of 5000, Stored update 1200 of 5000 ECHO 0 -2 * Loglike = 724.688013 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.860090 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 714.231739 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.941428 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.648489 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.433826 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.205464 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 723.791076 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.089094 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 721.868319 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.828266 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 727.911094 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.065790 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.924469 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.397692 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 720.247427 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 719.314169 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.535702 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.267330 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 727.548286 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 710.490018 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.685523 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... -2 * Loglike = 710.342598 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 726.142726 Actual update 4700 of 5000, Stored update 4700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.675793 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.705742 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.462090 Burning in for 100 iterations out of 500 -2 * Loglike = 713.605242 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.390907 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.937425 Burning in for 150 iterations out of 500 /nogui option ignored -2 * Loglike = 724.164198 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.588697 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.297740 Burning in for 200 iterations out of 500 -2 * Loglike = 719.244415 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.329832 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.114306 Burning in for 250 iterations out of 500 -2 * Loglike = 715.129945 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.583503 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.778801 Burning in for 300 iterations out of 500 -2 * Loglike = 717.179701 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 731.584173 Burning in for 350 iterations out of 500 -2 * Loglike = 722.940804 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.767439 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.316960 Burning in for 400 iterations out of 500 -2 * Loglike = 709.624199 Burning in for 450 iterations out of 500 -2 * Loglike = 713.240171 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 713.096015 Burning in for 500 iterations out of 500 -2 * Loglike = 714.952306 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.024600 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.404159 ECHO 0 -2 * Loglike = 726.252461 Actual update 2400 of 5000, Stored update 2400 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 = 711.690426 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.558488 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 713.706736 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.461917 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.274450 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 717.896706 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.050044 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 716.048199 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.268316 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.716629 Actual update 2700 of 5000, Stored update 2700 of 5000 ECHO 0 -2 * Loglike = 707.007635 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.898198 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.716204 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.889044 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.880487 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.366120 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 715.590944 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 713.651402 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.091924 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.332371 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... /nogui option ignored -2 * Loglike = 712.061319 Actual update 3000 of 5000, Stored update 3000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 704.443164 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.267415 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.457025 Burning in for 100 iterations out of 500 -2 * Loglike = 707.043385 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 713.388730 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 715.338158 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 721.11 S.D. = 4.5363 S.E.M. = 0.064153 ECHO 0 Execution completed -2 * Loglike = 684.304799 Burning in for 150 iterations out of 500 -2 * Loglike = 707.171058 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.400884 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.454000 Burning in for 200 iterations out of 500 -2 * Loglike = 706.451801 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 714.062365 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.043062 Burning in for 250 iterations out of 500 -2 * Loglike = 703.880253 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 713.952026 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.652104 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... ECHO 0 -2 * Loglike = 718.492646 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.202542 Burning in for 350 iterations out of 500 -2 * Loglike = 714.967917 Actual update 800 of 5000, Stored update 800 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 726.468964 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.774311 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 706.332965 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 742.289514 Burning in for 100 iterations out of 500 -2 * Loglike = 713.206858 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 689.926566 Burning in for 450 iterations out of 500 -2 * Loglike = 711.119285 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 737.534061 Burning in for 150 iterations out of 500 -2 * Loglike = 718.415442 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.818627 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.907637 Burning in for 500 iterations out of 500 -2 * Loglike = 742.190263 Burning in for 200 iterations out of 500 -2 * Loglike = 716.169303 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.267010 -2 * Loglike = 741.230153 Burning in for 250 iterations out of 500 -2 * Loglike = 717.842975 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 721.075747 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 = 739.354037 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 710.737061 Actual update 3600 of 5000, Stored update 3600 of 5000 ECHO 0 -2 * Loglike = 714.847441 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 685.467951 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 743.574479 Burning in for 350 iterations out of 500 -2 * Loglike = 712.864576 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.128660 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.539386 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 747.366915 Burning in for 400 iterations out of 500 -2 * Loglike = 713.322384 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.402271 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.408655 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 744.971237 Burning in for 450 iterations out of 500 -2 * Loglike = 721.137714 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.149126 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.361008 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 742.612810 Burning in for 500 iterations out of 500 -2 * Loglike = 712.058159 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.835466 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 = 684.329023 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 744.765323 -2 * Loglike = 716.277757 Actual update 3850 of 5000, Stored update 3850 of 5000 ECHO 0 Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 707.099526 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 718.178100 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.195512 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 = 675.002788 Burning in for 100 iterations out of 500 -2 * Loglike = 713.198032 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 724.458511 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 746.042674 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 681.816238 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.070734 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 672.601305 Burning in for 150 iterations out of 500 -2 * Loglike = 727.631385 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 745.165446 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.597266 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.324740 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 673.714551 Burning in for 200 iterations out of 500 -2 * Loglike = 729.544678 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 741.741084 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 684.471924 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 674.261910 Burning in for 250 iterations out of 500 -2 * Loglike = 714.076134 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 723.644504 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 745.481455 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 683.444976 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.408403 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 676.607840 Burning in for 300 iterations out of 500 -2 * Loglike = 714.210586 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 743.536790 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.464468 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 713.627663 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 672.316999 Burning in for 350 iterations out of 500 -2 * Loglike = 685.866035 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 = 753.030258 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.187610 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 681.307349 Burning in for 400 iterations out of 500 -2 * Loglike = 711.359604 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.062672 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 740.024292 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.748471 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 678.433383 Burning in for 450 iterations out of 500 -2 * Loglike = 716.194320 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.894580 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 = 742.455710 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 675.636506 Burning in for 500 iterations out of 500 -2 * Loglike = 711.606328 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 715.806854 Actual update 4350 of 5000, Stored update 4350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 704.790121 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 679.964010 -2 * Loglike = 741.369387 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.489853 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.083869 Burning in for 100 iterations out of 500 -2 * Loglike = 681.128034 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 704.369090 Actual update 1850 of 5000, Stored update 1850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 738.008599 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 = 727.298341 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 711.418783 Burning in for 150 iterations out of 500 -2 * Loglike = 700.673457 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.965049 Burning in for 100 iterations out of 500 -2 * Loglike = 707.102885 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 741.801748 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 676.652947 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.280208 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.375961 Burning in for 200 iterations out of 500 -2 * Loglike = 685.857180 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.625170 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 739.215563 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 679.735829 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.153498 Burning in for 150 iterations out of 500 -2 * Loglike = 718.987603 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.440003 Burning in for 250 iterations out of 500 -2 * Loglike = 716.825868 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 742.957873 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 671.979863 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.472808 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.151034 Burning in for 200 iterations out of 500 -2 * Loglike = 715.385591 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 735.495019 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 680.227746 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 719.018359 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.679603 Burning in for 300 iterations out of 500 -2 * Loglike = 688.151010 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.340807 Burning in for 250 iterations out of 500 -2 * Loglike = 674.706551 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 713.378315 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.154378 Burning in for 350 iterations out of 500 -2 * Loglike = 697.482237 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.304542 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 743.856264 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.462389 Burning in for 300 iterations out of 500 -2 * Loglike = 718.579161 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 685.215301 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.989917 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 708.775808 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 690.027506 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 712.692725 Burning in for 350 iterations out of 500 -2 * Loglike = 741.687065 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.386571 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 688.860629 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 718.619702 Burning in for 450 iterations out of 500 -2 * Loglike = 707.226219 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.391856 Burning in for 400 iterations out of 500 -2 * Loglike = 669.948679 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 745.476962 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.074388 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 687.355011 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 716.677862 Burning in for 500 iterations out of 500 -2 * Loglike = 707.609744 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.114512 Burning in for 450 iterations out of 500 -2 * Loglike = 742.010401 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.642638 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.638636 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.376889 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.806309 -2 * Loglike = 709.854788 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 710.630766 Burning in for 500 iterations out of 500 -2 * Loglike = 673.239576 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 747.329983 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 720.582069 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 688.586339 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 709.285265 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 = 672.245269 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.405875 -2 * Loglike = 741.928105 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 716.689081 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 725.973332 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 682.939651 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.358284 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 672.498069 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 741.884947 Actual update 1100 of 5000, Stored update 1100 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 ECHO 0 -2 * Loglike = 714.774604 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.684935 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.215886 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.835334 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 672.570755 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 741.506436 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.279188 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.775420 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.599794 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.218996 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 683.438667 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 740.284417 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.399342 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 714.476011 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 717.688763 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.725947 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 670.355862 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 739.770166 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 733.741075 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.905878 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.231504 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 716.261731 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.487883 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 676.535542 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.756746 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 738.049263 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.675777 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.198789 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.477857 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 674.490483 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.123991 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 743.271106 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.090713 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 708.531288 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 741.852596 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 723.914243 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 684.935178 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 727.087794 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 675.430330 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.918261 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 742.753882 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.043748 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.544845 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 692.242380 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 676.922786 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 = 708.728752 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 744.289334 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 726.899481 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.212143 Actual update 450 of 5000, Stored update 450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 681.664684 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 686.325847 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.603469 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 741.216215 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.844149 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 711.563299 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 741.958122 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 684.922947 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 677.200361 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.865739 Burning in for 100 iterations out of 500 -2 * Loglike = 711.789275 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.736774 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.448715 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 744.856604 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.625341 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 675.509750 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.118383 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.348308 Burning in for 150 iterations out of 500 -2 * Loglike = 709.068620 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.451579 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 741.774890 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 686.839396 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 707.385898 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 697.330047 Burning in for 200 iterations out of 500 -2 * Loglike = 712.923729 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 676.083752 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 707.233517 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 695.238838 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 713.746105 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 745.318554 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.493476 Burning in for 250 iterations out of 500 -2 * Loglike = 688.994382 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 707.269612 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.820752 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 675.497261 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 706.231046 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 736.238172 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.988044 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.864940 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.643714 Burning in for 300 iterations out of 500 -2 * Loglike = 685.652588 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 675.418343 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.248063 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.872419 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 740.332661 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.476305 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.684904 Burning in for 350 iterations out of 500 -2 * Loglike = 695.798383 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 674.718522 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 713.485745 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.049392 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 742.944628 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.812951 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.939090 Burning in for 400 iterations out of 500 -2 * Loglike = 679.222341 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.398842 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.304968 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.686690 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 739.954436 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 699.770862 Burning in for 450 iterations out of 500 -2 * Loglike = 719.868469 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 677.548658 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.360229 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.03 S.D. = 4.0764 S.E.M. = 0.057649 ECHO 0 Execution completed -2 * Loglike = 687.112237 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.202922 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 726.744938 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 743.131796 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.758766 Burning in for 500 iterations out of 500 -2 * Loglike = 707.486110 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.572725 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 687.434914 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.790833 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 676.164889 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.860164 ECHO 0 -2 * Loglike = 713.840750 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.018932 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 743.131783 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.550689 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.474974 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 677.101995 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.009858 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.361631 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 676.002879 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 739.284137 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.975351 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.252596 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.217028 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 711.059452 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 681.351355 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 = 737.774284 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.513818 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.445365 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.369480 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.667235 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.288391 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 741.396968 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.207914 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.502902 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.317369 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.674557 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 675.973223 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 739.818404 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.174159 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.749294 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.014143 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.549735 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.978899 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 671.043717 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.461440 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 708.970993 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.453840 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 743.958684 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 715.092040 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 708.522533 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 670.442066 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.730244 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.854515 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 699.522340 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.532994 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 739.810293 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.339382 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 673.769190 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.612289 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.556442 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.556259 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 717.788519 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 714.580601 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 740.371286 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 674.618048 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.975488 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.912868 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 713.127091 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 714.555130 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.214245 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 743.273250 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 684.394554 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.425697 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 686.458465 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.567478 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 713.736030 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 = 711.964687 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 675.376509 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 742.693964 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.014627 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 713.069837 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.455896 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.029325 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.002114 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 671.652761 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 741.655874 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.641672 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.597665 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.110917 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.801550 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.050912 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 674.368514 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.829558 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.983521 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.428182 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.435721 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 747.713692 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.063636 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 678.769459 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.452077 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.349046 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.387070 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.722752 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 741.843758 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.546526 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.999430 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.517691 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 688.321311 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.738333 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.115446 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 738.334188 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 676.512944 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.866616 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.213371 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 695.717635 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.200634 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.390456 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 737.070844 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 674.295208 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.125902 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.849837 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.555048 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 683.614039 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 745.343888 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.822901 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 683.306116 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.816791 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.748029 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.804379 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 685.306139 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 740.067651 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.635992 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 674.372586 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.082608 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.828821 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.389889 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.206381 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 743.464479 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 709.950618 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 674.598122 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.071377 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.418352 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.774800 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 685.310881 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 743.347869 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.575812 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 682.846809 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 714.063603 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.254067 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 699.278975 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 684.085005 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 740.192972 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.583685 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 681.681382 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.342705 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 704.432662 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 719.282325 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 741.123669 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.046694 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 689.774166 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 674.577698 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.110020 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.946825 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.913522 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.385919 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 675.412098 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.392345 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 736.558602 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.063575 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.045022 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.253327 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 674.006355 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 740.631776 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.068397 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 685.422335 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.237457 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.774574 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.958300 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 680.592213 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 740.406247 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 713.843887 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.521745 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.899529 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.565930 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.329008 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 679.954614 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.446755 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 744.000168 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 685.779078 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.270170 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.483941 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 674.695897 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.039242 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 713.147107 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 745.497201 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.244707 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.368287 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.288524 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.031222 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 677.554339 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 742.013701 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.150093 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 714.819622 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 682.246419 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.746412 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.859492 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 675.705101 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.349183 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 740.490556 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.815359 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 684.789683 Actual update 3650 of 5000, Stored update 3650 of 5000 ECHO 0 -2 * Loglike = 710.843373 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 712.754035 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.415135 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.325087 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 744.595432 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.698421 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 687.295343 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 699.168443 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 712.263546 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 674.632913 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.817445 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 741.607991 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.987459 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.591198 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.938865 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 673.727563 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 707.202874 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 716.095639 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 743.186076 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.976604 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.093089 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.330084 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 675.581120 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 707.288953 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.775072 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 741.196281 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.059393 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.527531 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.426053 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.676530 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.174201 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 742.902919 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.682374 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.071268 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.595381 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 680.869764 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 742.296171 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.474177 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.289971 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.144625 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.028744 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 749.383358 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 683.591141 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.376457 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 694.152280 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.312455 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 691.915756 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 739.489927 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 673.537879 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.965134 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.752167 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.833246 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.659256 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 740.750329 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.190308 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.428235 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.827015 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.639200 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 684.745425 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 = 747.081718 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.168858 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 675.515773 Actual update 3500 of 5000, Stored update 3500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.654677 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.606911 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 743.439702 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.342195 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.230582 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 677.634758 Burning in for 100 iterations out of 500 -2 * Loglike = 679.674014 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.264195 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 739.568748 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.782883 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 698.837953 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 685.017292 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 678.651804 Burning in for 150 iterations out of 500 -2 * Loglike = 670.616190 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.344570 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.223701 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 741.018239 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.805656 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 682.689491 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 678.818607 Burning in for 200 iterations out of 500 -2 * Loglike = 671.861899 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.984846 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 707.322680 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 740.897222 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.182828 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 703.074974 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 681.190702 Burning in for 250 iterations out of 500 -2 * Loglike = 712.306487 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 672.435851 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.770988 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.256300 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 743.784446 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.623220 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.396083 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.924269 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 717.554557 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 685.652396 Burning in for 300 iterations out of 500 -2 * Loglike = 700.529945 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 743.353760 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 708.527373 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.032075 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 734.892583 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 726.050370 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.397301 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 682.201249 Burning in for 350 iterations out of 500 -2 * Loglike = 681.595717 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.303404 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.918360 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 744.930132 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.782994 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.157944 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 687.706911 Burning in for 400 iterations out of 500 -2 * Loglike = 684.827170 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 714.739539 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.470467 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.21 S.D. = 5.5589 S.E.M. = 0.078615 ECHO 0 Execution completed -2 * Loglike = 741.509374 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 688.222241 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.113587 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.968001 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.660098 Burning in for 450 iterations out of 500 -2 * Loglike = 685.396538 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 711.894588 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 742.305647 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.666963 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.670103 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.421232 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.501456 Burning in for 500 iterations out of 500 -2 * Loglike = 696.605266 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 675.691385 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 745.430845 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 717.403542 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.788450 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.765483 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 683.903000 -2 * Loglike = 691.723266 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 678.159872 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 742.340277 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 709.457057 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 696.951578 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 712.196172 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.954510 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 674.275609 Actual update 4050 of 5000, Stored update 4050 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 = 744.537158 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.475061 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.999234 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.252815 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 687.516272 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 675.052056 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 745.898706 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 679.729813 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.486779 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.680906 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 682.988098 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.136358 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.647441 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 741.276376 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.287728 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.001006 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.963164 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 673.337204 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 709.520673 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.122821 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 744.625940 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 676.822211 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.001219 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 671.626114 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.107482 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.433306 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.090765 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 741.966247 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.522053 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 680.664081 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.764147 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.427617 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.280447 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.908432 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.054603 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 737.512130 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 675.209552 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 704.466295 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.121151 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 679.472294 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.260599 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 737.696132 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 688.619133 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.966399 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.736353 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.705445 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.545347 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.258062 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 676.719808 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 700.779446 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 716.739596 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.766682 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 745.968338 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 675.887725 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.094745 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.034505 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 673.829283 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.710972 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 742.577375 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 690.564013 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.662725 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.965077 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.215744 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.606451 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 741.495235 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 677.790049 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.509641 Actual update 3100 of 5000, Stored update 3100 of 5000 /nogui option ignored -2 * Loglike = 680.286856 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.720782 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.813377 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 677.413465 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.869146 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 674.862464 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.918423 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 676.358791 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.563918 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 681.982675 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.032640 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.858227 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 678.784628 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.452188 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 672.748233 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.748529 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.312349 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 675.263718 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.113996 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.940856 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.391008 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.907410 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 673.332056 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 675.832197 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.785191 Actual update 4350 of 5000, Stored update 4350 of 5000 /nogui option ignored -2 * Loglike = 714.196788 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 710.924434 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.659341 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 683.318983 Actual update 800 of 5000, Stored update 800 of 5000 ECHO 0 -2 * Loglike = 717.984947 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.959061 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.634324 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 676.962100 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.532296 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 725.494958 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.380759 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.844909 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.287806 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 681.327317 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.374820 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.213489 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.758024 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 682.464199 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.082890 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.843954 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.990127 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.416618 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 690.07 S.D. = 5.6486 S.E.M. = 0.079883 ECHO 0 Execution completed -2 * Loglike = 689.775929 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.008181 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.980852 Actual update 4600 of 5000, Stored update 4600 of 5000 ECHO 0 -2 * Loglike = 694.659741 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 680.507720 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.767401 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.993027 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.672755 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.613705 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 682.748575 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.931915 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 696.495120 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 713.635718 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 681.361705 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.944602 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 703.633100 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.442860 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 741.221019 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 742.31 S.D. = 2.7469 S.E.M. = 0.038846 ECHO 0 Execution completed -2 * Loglike = 712.889388 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 681.816138 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.727776 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.175900 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.478657 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 682.687396 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.911984 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.267659 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.836083 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 678.389359 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.791107 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.416562 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.902395 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.534267 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.894961 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.220820 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.279860 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 679.201609 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.952842 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.641865 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 693.079127 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.257611 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 682.347514 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 = 697.531948 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 676.667169 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 706.657168 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 = 678.556445 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.058153 Actual update 4200 of 5000, Stored update 4200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 695.197457 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.255154 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.920933 Burning in for 100 iterations out of 500 -2 * Loglike = 670.315673 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 677.44 S.D. = 5.0106 S.E.M. = 0.070861 ECHO 0 Execution completed -2 * Loglike = 704.623968 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.922154 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.343267 Burning in for 150 iterations out of 500 -2 * Loglike = 700.593536 Burning in for 200 iterations out of 500 -2 * Loglike = 680.992153 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.136055 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 695.034643 Burning in for 250 iterations out of 500 -2 * Loglike = 676.468336 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.733175 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 677.957686 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.767781 Burning in for 300 iterations out of 500 -2 * Loglike = 705.576416 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.545133 Burning in for 350 iterations out of 500 -2 * Loglike = 680.528761 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 698.122524 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.075741 Burning in for 400 iterations out of 500 -2 * Loglike = 680.570961 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.728754 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.389377 Burning in for 450 iterations out of 500 -2 * Loglike = 691.175900 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.404625 Burning in for 500 iterations out of 500 -2 * Loglike = 703.049779 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 681.913093 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.852709 -2 * Loglike = 697.614280 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 677.861251 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.310822 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.463979 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.52 S.D. = 2.8477 S.E.M. = 0.040272 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 = 684.233238 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.994761 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 710.611248 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 715.38 S.D. = 4.5774 S.E.M. = 0.064734 ECHO 0 Execution completed -2 * Loglike = 706.200525 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.801301 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.459552 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.929225 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.399385 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 683.194400 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.512337 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.649002 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 681.789320 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.224968 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.132940 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.589430 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 678.905339 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.594838 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.827081 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.119713 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.403941 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.333783 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.546193 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.047133 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 682.584043 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.221922 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 685.216484 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.612358 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 679.583129 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.046836 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 683.844867 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.323463 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.658772 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.586749 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.366208 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 681.030046 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.744203 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.888902 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.922759 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.408223 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 686.165161 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 695.158801 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.19 S.D. = 4.1263 S.E.M. = 0.058354 ECHO 0 Execution completed -2 * Loglike = 687.620484 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 702.696138 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 680.260731 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.357747 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.177196 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.099142 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 680.021762 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 679.639467 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 699.155415 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 680.591647 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.081407 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 680.993452 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 696.324892 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 680.197123 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 707.290081 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.663457 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 679.015531 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.317440 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.271532 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.795533 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 693.113552 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.025054 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.825010 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 684.486521 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.402370 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 680.282307 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.328570 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.677856 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 676.600587 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 677.622746 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.913048 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 678.797982 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.523910 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.563657 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 701.222614 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.599846 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.732242 Actual update 1900 of 5000, Stored update 1900 of 5000 /nogui option ignored -2 * Loglike = 680.663382 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.698920 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.568029 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.322821 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.586297 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.020034 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 685.746528 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.446795 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.247630 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.521150 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.626725 Actual update 2150 of 5000, Stored update 2150 of 5000 ECHO 0 -2 * Loglike = 679.665455 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.452290 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.806164 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.922045 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 679.105786 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 677.495654 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.853970 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 690.083997 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 699.743537 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 679.003070 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.657057 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.280354 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.777853 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 686.124432 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 700.440818 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 681.027373 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.605109 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.597366 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 686.222617 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.370554 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.352632 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 684.094255 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.390525 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.506784 Actual update 2700 of 5000, Stored update 2700 of 5000 /nogui option ignored -2 * Loglike = 677.827685 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 681.495931 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.782994 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 = 682.589699 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.662110 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.246066 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.408050 Actual update 4950 of 5000, Stored update 4950 of 5000 ECHO 0 -2 * Loglike = 696.424815 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 687.597407 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.864119 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.052909 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.233492 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.519769 Actual update 3050 of 5000, Stored update 3050 of 5000 /nogui option ignored -2 * Loglike = 696.593140 Actual update 3100 of 5000, Stored update 3100 of 5000 /nogui option ignored -2 * Loglike = 702.214207 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.980650 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 700.667986 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 705.673013 Actual update 3300 of 5000, Stored update 3300 of 5000 /nogui option ignored ECHO 0 ECHO 0 -2 * Loglike = 704.730270 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.123900 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.480723 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.151894 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.991886 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 677.345025 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 682.43 S.D. = 4.1505 S.E.M. = 0.058696 ECHO 0 Execution completed -2 * Loglike = 702.349886 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.289992 Actual update 3650 of 5000, Stored update 3650 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 694.366308 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.157383 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 699.148912 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.586424 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 = 707.602045 Actual update 3900 of 5000, Stored update 3900 of 5000 ECHO 0 -2 * Loglike = 704.430098 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.637783 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 692.551333 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.292464 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.503173 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.681484 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.262740 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 704.972250 Actual update 4300 of 5000, Stored update 4300 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 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.409419 Actual update 4350 of 5000, Stored update 4350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 706.581420 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.500168 Burning in for 100 iterations out of 500 -2 * Loglike = 698.195415 Burning in for 150 iterations out of 500 -2 * Loglike = 705.767953 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.019443 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 702.542484 Burning in for 250 iterations out of 500 -2 * Loglike = 702.791992 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.025394 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 700.249587 Burning in for 350 iterations out of 500 -2 * Loglike = 705.633242 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.112095 Burning in for 400 iterations out of 500 -2 * Loglike = 704.068101 Burning in for 450 iterations out of 500 -2 * Loglike = 703.349192 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.995760 Burning in for 500 iterations out of 500 -2 * Loglike = 695.638404 Actual update 4650 of 5000, Stored update 4650 of 5000 /nogui option ignored -2 * Loglike = 706.417468 -2 * Loglike = 702.739479 Actual update 4700 of 5000, Stored update 4700 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.588579 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.615130 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 695.969021 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.127175 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.615267 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.637697 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 702.657351 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.437482 Actual update 250 of 5000, Stored update 250 of 5000 ECHO 0 -2 * Loglike = 700.874316 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.046811 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 701.840753 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 716.200176 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.417807 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.400189 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.442973 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.077214 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 699.864416 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.196316 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 703.536172 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.733075 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.425662 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.350016 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 701.409289 Actual update 900 of 5000, Stored update 900 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 = 703.214030 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 707.772099 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.168052 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.714213 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.421269 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.735531 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.889825 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.035035 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.40 S.D. = 3.6555 S.E.M. = 0.051696 ECHO 0 Execution completed -2 * Loglike = 701.694614 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.432641 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.917353 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.945847 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 713.896700 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.078972 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.980244 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 713.155671 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 712.512827 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.865486 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.375658 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.773441 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 699.058517 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.350057 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.245309 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.861071 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.135179 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.720781 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.893492 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.095230 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 713.647617 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.674665 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.404265 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.726653 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.349305 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.495705 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.788010 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.601458 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.235905 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.039618 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.548712 Actual update 2800 of 5000, Stored update 2800 of 5000 /nogui option ignored -2 * Loglike = 709.070380 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 702.685488 Actual update 2900 of 5000, Stored update 2900 of 5000 /nogui option ignored -2 * Loglike = 699.965014 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.778812 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 700.715928 Actual update 3050 of 5000, Stored update 3050 of 5000 ECHO 0 -2 * Loglike = 702.107194 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.451476 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.420798 Actual update 3200 of 5000, Stored update 3200 of 5000 ECHO 0 -2 * Loglike = 713.015318 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.850381 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.652099 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.448819 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 705.263014 Actual update 3450 of 5000, Stored update 3450 of 5000 /nogui option ignored -2 * Loglike = 704.194546 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.754292 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 695.782370 Actual update 3600 of 5000, Stored update 3600 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 = 699.146617 Actual update 3650 of 5000, Stored update 3650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 698.555529 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.994383 Burning in for 100 iterations out of 500 -2 * Loglike = 705.334758 Burning in for 150 iterations out of 500 -2 * Loglike = 705.073638 Actual update 3750 of 5000, Stored update 3750 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... -2 * Loglike = 712.056583 Burning in for 200 iterations out of 500 -2 * Loglike = 710.051488 Actual update 3800 of 5000, Stored update 3800 of 5000 Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 705.045373 Burning in for 250 iterations out of 500 -2 * Loglike = 703.591971 Burning in for 100 iterations out of 500 -2 * Loglike = 710.481313 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 712.494034 Burning in for 300 iterations out of 500 -2 * Loglike = 702.829238 Burning in for 150 iterations out of 500 -2 * Loglike = 717.372523 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.843064 Burning in for 350 iterations out of 500 -2 * Loglike = 702.544819 Burning in for 200 iterations out of 500 -2 * Loglike = 713.193918 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 713.309005 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 706.004340 Burning in for 250 iterations out of 500 -2 * Loglike = 708.256762 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 710.124609 Burning in for 450 iterations out of 500 -2 * Loglike = 708.528494 Burning in for 300 iterations out of 500 -2 * Loglike = 701.112171 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.897986 Burning in for 500 iterations out of 500 -2 * Loglike = 698.284874 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.616926 Burning in for 350 iterations out of 500 -2 * Loglike = 709.537059 -2 * Loglike = 702.903520 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.544426 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 698.637950 Actual update 4200 of 5000, Stored update 4200 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.756114 Burning in for 450 iterations out of 500 -2 * Loglike = 696.839777 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.001488 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.070985 Burning in for 500 iterations out of 500 -2 * Loglike = 715.212868 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.430015 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 704.142709 ECHO 0 -2 * Loglike = 709.865722 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.823770 Actual update 200 of 5000, Stored update 200 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 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.390271 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.617626 Actual update 250 of 5000, Stored update 250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 704.653577 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.509876 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.120009 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.124371 Burning in for 100 iterations out of 500 -2 * Loglike = 711.178152 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.819061 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.655150 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 694.499059 Burning in for 150 iterations out of 500 -2 * Loglike = 711.351138 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 693.865308 Burning in for 200 iterations out of 500 -2 * Loglike = 701.177711 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.138257 Actual update 400 of 5000, Stored update 400 of 5000 ECHO 0 -2 * Loglike = 694.685715 Burning in for 250 iterations out of 500 -2 * Loglike = 716.844682 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.409373 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.755591 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.721835 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.798261 Burning in for 300 iterations out of 500 -2 * Loglike = 704.042418 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.041625 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.236005 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.759211 Burning in for 350 iterations out of 500 -2 * Loglike = 697.649374 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.249403 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 704.117416 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.775625 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.684297 Burning in for 400 iterations out of 500 -2 * Loglike = 697.976036 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 714.542459 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 698.705995 Burning in for 450 iterations out of 500 -2 * Loglike = 699.996094 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.252471 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.363121 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.929047 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 = 701.212691 Burning in for 500 iterations out of 500 -2 * Loglike = 705.524844 Actual update 650 of 5000, Stored update 650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 702.112785 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.260854 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored -2 * Loglike = 701.082799 -2 * Loglike = 715.672697 Actual update 700 of 5000, Stored update 700 of 5000 /nogui option ignored -2 * Loglike = 734.123020 Burning in for 100 iterations out of 500 -2 * Loglike = 700.758606 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 = 702.768764 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.728697 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 735.531446 Burning in for 150 iterations out of 500 -2 * Loglike = 716.264699 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.130813 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 733.890588 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 = 702.803223 Actual update 650 of 5000, Stored update 650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 734.624700 Burning in for 250 iterations out of 500 -2 * Loglike = 708.393548 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.515465 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 703.224219 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 735.143521 Burning in for 300 iterations out of 500 -2 * Loglike = 683.971127 Burning in for 100 iterations out of 500 -2 * Loglike = 707.351402 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.303746 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored -2 * Loglike = 700.721204 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 736.101128 Burning in for 350 iterations out of 500 -2 * Loglike = 681.230284 Burning in for 150 iterations out of 500 ECHO 0 ECHO 0 -2 * Loglike = 709.424160 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.338518 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.952015 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 740.789298 Burning in for 400 iterations out of 500 -2 * Loglike = 682.041631 Burning in for 200 iterations out of 500 -2 * Loglike = 695.257265 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 717.218232 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 701.382101 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 737.095498 Burning in for 450 iterations out of 500 -2 * Loglike = 686.338746 Burning in for 250 iterations out of 500 -2 * Loglike = 710.754118 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 708.606666 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.815702 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 734.962237 Burning in for 500 iterations out of 500 -2 * Loglike = 688.871133 Burning in for 300 iterations out of 500 -2 * Loglike = 692.266257 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.136148 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.685261 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 734.613229 -2 * Loglike = 685.933233 Burning in for 350 iterations out of 500 -2 * Loglike = 703.861743 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.788783 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.282109 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 690.595925 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 = 697.017707 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.832352 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.863927 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.538070 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.89 S.D. = 5.6856 S.E.M. = 0.080407 ECHO 0 Execution completed -2 * Loglike = 684.996171 Burning in for 450 iterations out of 500 -2 * Loglike = 737.481439 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.719338 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.447748 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.730156 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.625619 Burning in for 500 iterations out of 500 -2 * Loglike = 693.562477 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 737.597303 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 704.899091 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 707.366908 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.939231 -2 * Loglike = 694.791006 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.935294 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 733.798016 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 709.358369 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 = 698.247641 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 737.554480 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 707.686750 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 714.293896 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 684.452822 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.876457 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 707.220156 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.484206 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 = 715.438900 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 686.998025 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 701.389536 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.371032 Actual update 1350 of 5000, Stored update 1350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 747.626604 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.504747 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 679.216243 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 = 707.910820 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.457647 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.596646 Burning in for 100 iterations out of 500 -2 * Loglike = 733.606342 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.877321 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 713.672746 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.322012 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.967630 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.419553 Burning in for 150 iterations out of 500 -2 * Loglike = 734.439337 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 682.096321 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 713.783197 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.737835 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 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.327650 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.262268 Burning in for 200 iterations out of 500 -2 * Loglike = 733.141844 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 697.689814 Actual update 350 of 5000, Stored update 350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 716.105678 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 705.716007 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.481008 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.735505 Burning in for 250 iterations out of 500 -2 * Loglike = 733.000595 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.273534 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.574335 Burning in for 100 iterations out of 500 -2 * Loglike = 715.124925 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 678.462032 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 700.635344 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.175415 Burning in for 300 iterations out of 500 -2 * Loglike = 734.242330 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.663010 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.294034 Burning in for 150 iterations out of 500 -2 * Loglike = 718.021206 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 690.317890 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 700.265879 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.996994 Burning in for 350 iterations out of 500 -2 * Loglike = 732.830929 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 706.946916 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.055287 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.155406 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.138493 Burning in for 200 iterations out of 500 -2 * Loglike = 734.825434 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 682.478203 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.174877 Burning in for 400 iterations out of 500 -2 * Loglike = 706.698720 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.620968 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 723.592779 Burning in for 250 iterations out of 500 -2 * Loglike = 704.438009 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 680.182128 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.418853 Burning in for 450 iterations out of 500 -2 * Loglike = 730.358628 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.920367 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.694684 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 722.287564 Burning in for 300 iterations out of 500 -2 * Loglike = 716.275654 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.170783 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 736.013615 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 693.514930 Burning in for 500 iterations out of 500 -2 * Loglike = 705.119731 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.759903 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 721.684696 Burning in for 350 iterations out of 500 -2 * Loglike = 708.702188 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 681.028029 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.068659 -2 * Loglike = 734.056913 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.437451 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.860902 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.251274 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 725.753190 Burning in for 400 iterations out of 500 -2 * Loglike = 680.397553 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.976619 Actual update 1400 of 5000, Stored update 1400 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 = 737.319640 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 702.147916 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.199933 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.472644 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 678.256686 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 709.513529 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 735.153036 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 724.907605 Burning in for 450 iterations out of 500 -2 * Loglike = 712.696950 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.353129 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.644177 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.358020 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.809913 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 739.959882 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.173052 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 724.022031 Burning in for 500 iterations out of 500 -2 * Loglike = 733.923767 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.368271 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 688.857312 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.367213 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 701.298284 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 723.781490 -2 * Loglike = 733.951430 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 681.336284 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.777162 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.280297 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.919111 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.011246 Actual update 2200 of 5000, Stored update 2200 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 = 735.357102 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.503276 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.651259 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.686607 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.287774 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 726.164963 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.321527 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 731.974615 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.191421 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 696.892574 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.329385 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.539081 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.402824 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.738446 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 735.241975 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.483619 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.146560 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.792557 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.818819 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.679105 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.252169 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 733.488861 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.513911 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 681.182823 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 702.673233 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.282057 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 707.054399 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 735.054528 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.358117 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 687.270799 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 733.305153 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.879219 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.290099 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.749824 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.113733 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.984963 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.188840 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 689.206339 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 734.627253 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 733.730627 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.270531 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.347523 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.515179 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.704598 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 738.288446 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 689.460153 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.502997 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.124414 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.458591 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.949374 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 733.322018 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 685.417627 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 733.744689 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.095672 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.921432 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.474793 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.888934 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 733.694470 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 680.994147 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.524996 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.308816 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.826318 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.650845 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.113196 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 735.296427 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 696.110843 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 685.427585 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 716.616476 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.272850 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.717472 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 733.754441 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 688.103816 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.443538 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 680.200962 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 715.260179 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.552527 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.466215 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 737.472697 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.687641 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.718261 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 698.505587 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.280478 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.897321 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 731.353812 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.073785 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.470443 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 684.103799 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.344034 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 721.691162 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.758250 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 733.620273 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.354236 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.716309 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 679.700060 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 714.552291 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.608233 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 717.303973 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 735.466639 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.955044 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.923982 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 681.236317 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.327774 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.776983 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.152090 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 734.507126 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.743734 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 686.416156 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.951421 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.373562 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.560010 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 710.876916 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 735.351920 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.837446 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.716925 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.124050 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 716.198073 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 719.497434 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.253195 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 735.084054 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.121938 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 682.550550 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.422909 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 721.438512 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 695.389039 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.003082 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 731.133997 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.230201 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 728.628894 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.435797 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 678.904832 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.030699 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 697.679961 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 717.731173 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.844714 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 704.470040 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 713.882787 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 682.056523 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.812898 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.834513 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 721.798836 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 738.564997 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.872419 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.243168 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 682.086849 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.538554 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.057325 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.483927 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 734.873603 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.024228 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 707.933378 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 683.147369 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 708.724989 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 691.709988 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 720.418862 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 736.027145 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.420746 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 717.595543 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.825792 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.951216 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.046715 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 721.367651 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 732.716193 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.761820 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.294458 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.776255 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 684.664292 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 707.254430 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 733.325260 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 716.980989 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.644619 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.454071 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 706.547367 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 698.128784 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 682.020622 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 735.714288 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.420700 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.625482 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.888334 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.497540 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.983921 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.688436 Actual update 2900 of 5000, Stored update 2900 of 5000 ECHO 0 -2 * Loglike = 736.016626 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.468847 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.910377 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 708.448258 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.318799 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.950758 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.230677 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 733.238030 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.970522 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 728.415655 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.209314 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 684.537147 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.249655 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.622548 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 739.995546 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.838257 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.556868 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.023251 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.881429 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.095848 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.923330 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 735.691126 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 732.175146 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.435022 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.401426 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.412178 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 683.104838 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.029962 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 736.015433 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.454574 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 705.590637 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 710.488959 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.063841 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.452550 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.094306 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 733.576367 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 721.685846 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 724.298042 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.659511 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.924008 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 681.004236 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.614565 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 737.619875 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.834096 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.823289 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 721.089081 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.304735 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.880046 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 737.950162 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.429084 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 716.027185 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 726.602972 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 720.542102 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.276933 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 680.616297 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.819642 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 734.347488 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 722.969999 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.440486 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.961676 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.850560 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.302604 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.848554 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.876963 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.379013 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.159928 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 735.712889 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.902504 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.862428 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 682.636446 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 704.713691 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.244001 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.707317 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 733.447420 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.035606 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.270607 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.519435 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.732654 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 = 719.202157 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.104518 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.987039 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 731.622604 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.150415 Actual update 3500 of 5000, Stored update 3500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.435916 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 729.787974 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.750891 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 732.602444 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.217196 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.047989 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.824314 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 689.746981 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 733.825429 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.489529 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.557915 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.010868 Burning in for 100 iterations out of 500 -2 * Loglike = 717.376519 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.357766 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.782623 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.140212 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 683.581380 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 732.414694 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.276622 Burning in for 150 iterations out of 500 -2 * Loglike = 702.953874 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.312006 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.669002 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.662921 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.840741 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 685.343074 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 691.343894 Burning in for 200 iterations out of 500 -2 * Loglike = 711.798162 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.946388 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 733.217497 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.673343 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.422659 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 723.460387 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.974653 Burning in for 250 iterations out of 500 -2 * Loglike = 718.863964 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 737.544875 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 680.049958 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 719.070459 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.236929 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.501473 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.010103 Burning in for 300 iterations out of 500 -2 * Loglike = 736.737003 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.272792 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 680.001878 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.059634 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.762366 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.725071 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 692.966011 Burning in for 350 iterations out of 500 -2 * Loglike = 733.077604 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.999763 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.507737 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 683.153938 Actual update 3100 of 5000, Stored update 3100 of 5000 ECHO 0 -2 * Loglike = 684.085506 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.161170 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.765182 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 698.535417 Burning in for 400 iterations out of 500 -2 * Loglike = 734.216648 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.323731 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 719.174841 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.432802 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.764151 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.050300 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 682.453565 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.781745 Burning in for 450 iterations out of 500 -2 * Loglike = 734.440605 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.848287 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.732286 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 724.542888 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 714.593242 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 692.002351 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 681.076641 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 693.797303 Burning in for 500 iterations out of 500 -2 * Loglike = 737.585968 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.750000 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 726.280015 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.962875 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.011885 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 699.401812 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 686.670741 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.093224 -2 * Loglike = 712.218017 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 733.426627 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.786503 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 705.509593 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.918403 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.854494 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.520466 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.465818 Actual update 4650 of 5000, Stored update 4650 of 5000 ECHO 0 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.232472 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.443938 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.481595 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.107580 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.717563 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.618468 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 717.381798 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 692.617222 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 732.927401 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.208733 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 694.110491 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.012690 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.685498 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 741.389128 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.036403 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.956909 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.234431 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.268656 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.624541 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 734.425216 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.861014 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 684.204051 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.003721 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 722.944820 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 688.778530 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 709.230550 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.176305 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 733.854271 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.644601 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 687.025514 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.640023 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.573401 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.388886 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.071869 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.479721 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 739.462137 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 679.519089 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.467137 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 719.317245 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 721.712383 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.538425 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.255532 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 735.834474 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.237708 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 = 680.916990 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 714.867657 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.636977 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 719.645055 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 718.216644 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.971071 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 734.283689 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.100798 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.808649 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 681.613382 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.083098 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 724.056557 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.388142 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 688.591597 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.037858 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 695.458997 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 734.071600 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 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.558930 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 706.447250 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 683.123227 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.635708 Actual update 3050 of 5000, Stored update 3050 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 701.879190 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 732.102359 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.334324 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.858813 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.460125 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 687.597211 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.406572 Burning in for 100 iterations out of 500 -2 * Loglike = 736.318590 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.772135 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 718.661904 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.372277 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 688.752920 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 691.863744 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 687.830876 Burning in for 150 iterations out of 500 -2 * Loglike = 698.753361 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 735.198246 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.802434 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.800575 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 688.045751 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.015995 Burning in for 200 iterations out of 500 -2 * Loglike = 692.868036 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.805095 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 732.307474 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 717.972804 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.335677 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 689.433115 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 691.538674 Burning in for 250 iterations out of 500 -2 * Loglike = 737.201675 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.353930 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.649529 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.152493 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.065451 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.128679 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 691.080961 Burning in for 300 iterations out of 500 -2 * Loglike = 732.797809 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.191217 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.531049 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 718.911625 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.718684 Burning in for 350 iterations out of 500 -2 * Loglike = 681.973313 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.776096 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.864415 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 736.129534 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.768045 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 696.652387 Burning in for 400 iterations out of 500 -2 * Loglike = 718.662586 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.476608 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.441246 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.653693 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 737.462993 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.180874 Burning in for 450 iterations out of 500 -2 * Loglike = 694.528818 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.544517 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 681.922832 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.338332 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 691.642028 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.666907 Burning in for 500 iterations out of 500 -2 * Loglike = 734.644207 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.983173 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 708.14 S.D. = 5.4680 S.E.M. = 0.077330 ECHO 0 Execution completed -2 * Loglike = 723.552769 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.500534 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.94 S.D. = 4.4861 S.E.M. = 0.063444 ECHO 0 Execution completed -2 * Loglike = 696.557277 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 680.070247 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.718675 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 692.152016 -2 * Loglike = 692.496144 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 735.838933 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 731.462961 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.218915 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 688.965102 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.605846 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.489132 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 738.456883 Actual update 4600 of 5000, Stored update 4600 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.711681 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.144798 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 680.989757 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.049867 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.748541 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 735.368217 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 691.720737 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 723.673574 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.627623 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.336402 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 720.692669 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.791470 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 736.568190 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 692.134070 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.116442 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.237011 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.842025 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.787689 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 732.874407 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.258604 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 683.522409 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.416908 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 686.422278 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.014333 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 734.229530 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.235817 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.958408 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.261545 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.919152 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 719.524651 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 688.041405 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 733.456232 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.602814 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.179963 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.921172 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.041426 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 682.888355 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 739.737908 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.536822 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.560161 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.673478 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.054613 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.094241 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 734.563616 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 690.799966 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 680.546667 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.056337 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 719.407530 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.821910 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 682.013797 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 693.526482 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 734.711063 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.370809 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 720.197751 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 685.195327 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.442491 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.028152 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.845758 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.724037 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 725.034700 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.992454 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.731059 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.999400 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.179105 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 724.583004 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 693.927207 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.837490 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 686.215713 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 723.410871 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.166613 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.570590 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.978207 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 723.235426 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.274377 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.246344 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.983662 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 687.036925 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.124970 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.712035 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.085339 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.242763 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.549740 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 726.251472 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.539671 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.614711 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.238940 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 718.232431 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.194958 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.908187 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.742740 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.065166 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.474230 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 686.858203 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 727.442796 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.996477 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 688.394371 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.423984 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.967585 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.918525 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 691.073601 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 689.088917 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.148655 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 691.513128 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.152737 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 723.509255 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.412846 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.840768 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.335451 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.345629 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 730.393674 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 690.664972 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.901084 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.433318 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.709548 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 690.234552 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.467422 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.443609 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.073896 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 725.987858 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.056110 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.243504 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 690.865572 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 725.235459 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.312672 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.042832 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.559530 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.734070 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.879777 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 692.455795 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 692.900105 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.688196 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 721.972322 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.653090 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.178445 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.870762 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.493583 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.600591 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 693.471523 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.55 S.D. = 4.1127 S.E.M. = 0.058162 ECHO 0 Execution completed -2 * Loglike = 717.652620 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.958878 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 720.893784 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.959254 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.448673 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 730.244667 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.017231 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.427334 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.273783 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 723.820640 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.247108 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.855286 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.821702 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.872753 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.023087 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.220745 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.374736 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.632270 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.152825 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.716361 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 733.169296 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 735.03 S.D. = 2.3873 S.E.M. = 0.033761 ECHO 0 Execution completed -2 * Loglike = 687.182543 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 692.572488 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 680.204176 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 685.12 S.D. = 4.2108 S.E.M. = 0.059550 ECHO 0 Execution completed -2 * Loglike = 688.064804 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 697.467326 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.355208 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 700.061206 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.260689 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.854857 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.961705 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.029188 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.285602 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.646030 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.997718 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.234374 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.293749 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.832192 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.085661 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.370138 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.837304 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.990406 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.179505 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.872119 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.33 S.D. = 4.0958 S.E.M. = 0.057924 ECHO 0 Execution completed -2 * Loglike = 716.030365 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 721.51 S.D. = 4.7033 S.E.M. = 0.066515 ECHO 0 Execution completed -2 * Loglike = 692.064148 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.688848 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.377122 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 688.981518 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 703.840802 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 688.103313 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.960981 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.948442 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.630973 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.090774 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.291613 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 690.612102 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.101308 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.796718 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 688.185965 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 690.816336 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.302518 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 693.913133 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.054797 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.018916 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.099010 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.561621 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.652295 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.410552 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.604411 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.843807 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.593115 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.729033 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.629924 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.517750 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.428219 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.740708 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.154935 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 690.435887 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.770885 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.791017 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.051939 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 691.123699 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.879157 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.184193 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.617618 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.671942 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 687.272684 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.433630 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.146743 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.930707 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.034464 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 692.578879 Actual update 3500 of 5000, Stored update 3500 of 5000 /nogui option ignored -2 * Loglike = 692.660377 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.936799 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.337326 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 686.024630 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 698.115790 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 692.926518 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.115507 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.011321 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.952803 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.920314 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 692.330304 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.397187 Actual update 3750 of 5000, Stored update 3750 of 5000 ECHO 0 -2 * Loglike = 695.033501 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.680532 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 701.828649 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.261226 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.080959 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.048477 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.472854 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.133869 Actual update 3950 of 5000, Stored update 3950 of 5000 /nogui option ignored -2 * Loglike = 693.500525 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.024313 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.680716 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 696.843357 Actual update 4150 of 5000, Stored update 4150 of 5000 /nogui option ignored -2 * Loglike = 688.410513 Actual update 4200 of 5000, Stored update 4200 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 = 687.389620 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.408441 Burning in for 100 iterations out of 500 -2 * Loglike = 708.065746 Burning in for 150 iterations out of 500 -2 * Loglike = 698.452290 Actual update 4300 of 5000, Stored update 4300 of 5000 ECHO 0 -2 * Loglike = 709.788851 Burning in for 200 iterations out of 500 -2 * Loglike = 690.630709 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.888949 Burning in for 250 iterations out of 500 -2 * Loglike = 696.396384 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.272234 Burning in for 300 iterations out of 500 -2 * Loglike = 694.038838 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 712.574867 Burning in for 350 iterations out of 500 -2 * Loglike = 686.643138 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.597256 Burning in for 400 iterations out of 500 -2 * Loglike = 711.894112 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 700.061992 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 714.246450 Burning in for 500 iterations out of 500 -2 * Loglike = 696.266847 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.851023 -2 * Loglike = 687.513500 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.250222 Actual update 4700 of 5000, Stored update 4700 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.481786 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.197526 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 690.620004 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.972800 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.89 S.D. = 4.0496 S.E.M. = 0.057269 ECHO 0 Execution completed -2 * Loglike = 711.106833 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 690.512540 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.368244 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.417705 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.128188 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.690325 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.088113 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 706.375626 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 = 722.498731 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.045378 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 716.060931 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.516314 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.151344 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.026339 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 709.952483 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.401918 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.887696 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.785427 Actual update 800 of 5000, Stored update 800 of 5000 /nogui option ignored -2 * Loglike = 707.617664 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.375590 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.431036 Actual update 950 of 5000, Stored update 950 of 5000 /nogui option ignored -2 * Loglike = 720.026138 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 686.349458 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.88 S.D. = 4.2924 S.E.M. = 0.060704 ECHO 0 Execution completed -2 * Loglike = 710.829822 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.212155 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.221860 Actual update 1150 of 5000, Stored update 1150 of 5000 ECHO 0 -2 * Loglike = 711.030974 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 713.229665 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.032430 Actual update 1300 of 5000, Stored update 1300 of 5000 ECHO 0 -2 * Loglike = 714.480153 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 723.625519 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 725.314220 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 723.933821 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.298638 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 = 724.467857 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 725.406381 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 707.367496 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.983777 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.584500 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 708.621359 Actual update 1850 of 5000, Stored update 1850 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 707.881524 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.244812 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 717.729902 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.204162 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 710.987107 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 716.026069 Actual update 2150 of 5000, Stored update 2150 of 5000 ECHO 0 -2 * Loglike = 709.547246 Actual update 2200 of 5000, Stored update 2200 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 = 708.315157 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.806727 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.897057 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 719.537232 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.293689 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.290064 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 711.605019 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 731.328101 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 718.372022 Actual update 2650 of 5000, Stored update 2650 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.080239 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.538770 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.507051 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 718.441116 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.053791 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.090275 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.520716 Actual update 3000 of 5000, Stored update 3000 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 = 708.905775 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.281472 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.049690 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 709.603036 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.671547 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.416098 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 721.640418 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.300966 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.441980 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.810595 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.150915 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.715390 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.296506 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.290835 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.281705 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 706.973705 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.816158 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.445426 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 729.971299 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 713.238408 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.204692 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.806737 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.647748 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.709310 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.931439 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.204161 Actual update 4300 of 5000, Stored update 4300 of 5000 /nogui option ignored -2 * Loglike = 712.209380 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.798884 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.262158 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 710.893907 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.458915 Actual update 4550 of 5000, Stored update 4550 of 5000 ECHO 0 -2 * Loglike = 713.406512 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.955718 Actual update 4650 of 5000, Stored update 4650 of 5000 ECHO 0 -2 * Loglike = 721.212430 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.995178 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.718443 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.150968 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.049040 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.697176 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.549568 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 = 682.546223 Burning in for 100 iterations out of 500 -2 * Loglike = 673.559849 Burning in for 150 iterations out of 500 -2 * Loglike = 675.554064 Burning in for 200 iterations out of 500 /nogui option ignored -2 * Loglike = 677.966772 Burning in for 250 iterations out of 500 -2 * Loglike = 678.899708 Burning in for 300 iterations out of 500 -2 * Loglike = 677.719719 Burning in for 350 iterations out of 500 -2 * Loglike = 682.665348 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 675.669877 Burning in for 450 iterations out of 500 -2 * Loglike = 681.263009 Burning in for 500 iterations out of 500 ECHO 0 -2 * Loglike = 679.765648 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 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 = 680.194470 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 676.797761 Actual update 150 of 5000, Stored update 150 of 5000 ECHO 0 -2 * Loglike = 671.893753 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 679.145750 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 675.266227 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 689.753547 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.430029 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.76 S.D. = 5.5541 S.E.M. = 0.078547 ECHO 0 Execution completed -2 * Loglike = 670.689112 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 679.984300 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 677.355953 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 673.197555 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 674.580389 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 673.004604 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 673.454828 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 671.310652 Actual update 750 of 5000, Stored update 750 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 = 680.120548 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 673.113096 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 678.801227 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 674.726668 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... Burning in for 50 iterations out of 500 -2 * Loglike = 681.014415 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.832783 Burning in for 100 iterations out of 500 -2 * Loglike = 682.644275 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.175612 Burning in for 150 iterations out of 500 ECHO 0 -2 * Loglike = 703.862716 Burning in for 200 iterations out of 500 -2 * Loglike = 706.238022 Burning in for 250 iterations out of 500 -2 * Loglike = 680.536592 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 675.142696 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.908721 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 677.443474 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.225984 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... Burning in for 50 iterations out of 500 -2 * Loglike = 709.198163 Burning in for 400 iterations out of 500 -2 * Loglike = 677.233102 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.195736 Burning in for 450 iterations out of 500 -2 * Loglike = 685.524108 Burning in for 100 iterations out of 500 -2 * Loglike = 675.382887 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.337839 Burning in for 500 iterations out of 500 -2 * Loglike = 681.625746 Burning in for 150 iterations out of 500 -2 * Loglike = 706.037630 -2 * Loglike = 680.678478 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 681.551503 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 = 680.201612 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 682.353600 Burning in for 250 iterations out of 500 -2 * Loglike = 709.413905 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.365930 Burning in for 300 iterations out of 500 -2 * Loglike = 687.253378 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.362301 Actual update 150 of 5000, Stored update 150 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 = 675.020292 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.003256 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.300242 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 697.041825 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 683.464558 Burning in for 350 iterations out of 500 -2 * Loglike = 707.381646 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.302177 Burning in for 150 iterations out of 500 -2 * Loglike = 676.300251 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.260073 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.300615 Burning in for 200 iterations out of 500 -2 * Loglike = 690.400757 Burning in for 400 iterations out of 500 -2 * Loglike = 683.910895 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.221877 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.374957 Burning in for 250 iterations out of 500 -2 * Loglike = 684.903775 Burning in for 450 iterations out of 500 -2 * Loglike = 698.087606 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 675.204113 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 695.441815 Burning in for 300 iterations out of 500 -2 * Loglike = 684.830559 Burning in for 500 iterations out of 500 -2 * Loglike = 694.890791 Burning in for 350 iterations out of 500 -2 * Loglike = 675.974836 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.752911 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.173538 Burning in for 400 iterations out of 500 -2 * Loglike = 672.114339 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.720090 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.153110 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 686.429521 -2 * Loglike = 672.519913 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.140243 Burning in for 500 iterations out of 500 -2 * Loglike = 699.723144 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 674.085248 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 = 674.584907 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 685.137191 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.918426 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.811034 -2 * Loglike = 686.742385 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.322927 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.242737 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 678.260102 Actual update 2050 of 5000, Stored update 2050 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 = 680.039738 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 703.582288 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 675.304085 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.823690 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.122463 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.050360 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 676.975143 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.316260 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 683.373732 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.201979 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 676.200074 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 688.557489 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.204040 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.693380 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 676.535848 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 704.254167 Actual update 900 of 5000, Stored update 900 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.936492 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 678.869865 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 676.862047 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.540762 Actual update 950 of 5000, Stored update 950 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 691.673544 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.925129 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 678.462448 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 719.586530 Burning in for 100 iterations out of 500 -2 * Loglike = 706.208462 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.028367 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 682.620879 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... /nogui option ignored -2 * Loglike = 688.993520 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 714.780779 Burning in for 150 iterations out of 500 -2 * Loglike = 687.353185 Actual update 400 of 5000, Stored update 400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 704.553505 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 679.797276 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 673.618137 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.528269 Burning in for 200 iterations out of 500 -2 * Loglike = 697.887561 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.146445 Burning in for 100 iterations out of 500 -2 * Loglike = 703.410406 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 672.244767 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 682.219434 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.246334 Burning in for 250 iterations out of 500 -2 * Loglike = 692.255298 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 705.875284 Burning in for 150 iterations out of 500 -2 * Loglike = 705.685534 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 676.034423 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.697699 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.224916 Burning in for 300 iterations out of 500 -2 * Loglike = 689.094533 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 707.340480 Burning in for 200 iterations out of 500 -2 * Loglike = 703.392635 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.168719 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 683.662251 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.405792 Burning in for 350 iterations out of 500 -2 * Loglike = 704.625374 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 689.613671 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.040570 Burning in for 250 iterations out of 500 -2 * Loglike = 677.116868 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 679.640560 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 724.190801 Burning in for 400 iterations out of 500 -2 * Loglike = 703.984130 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.351546 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.135308 Burning in for 300 iterations out of 500 -2 * Loglike = 677.572764 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 688.461394 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.262008 Burning in for 450 iterations out of 500 -2 * Loglike = 706.231600 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 689.112691 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.651642 Burning in for 350 iterations out of 500 -2 * Loglike = 676.666736 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 719.999297 Burning in for 500 iterations out of 500 -2 * Loglike = 714.328051 Burning in for 400 iterations out of 500 -2 * Loglike = 680.972909 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.756282 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.959188 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 679.644099 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 722.263701 -2 * Loglike = 685.808576 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.284752 Burning in for 450 iterations out of 500 -2 * Loglike = 696.263936 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 680.284814 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.456742 Burning in for 500 iterations out of 500 -2 * Loglike = 681.515387 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.448401 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 = 689.840398 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 676.628307 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 711.466143 -2 * Loglike = 704.232032 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 678.216076 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.945829 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 694.715065 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.422057 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.787214 Actual update 1550 of 5000, Stored update 1550 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 = 674.284784 Actual update 3000 of 5000, Stored update 3000 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 = 691.722695 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.086555 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.561256 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.206248 Actual update 1600 of 5000, Stored update 1600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.877803 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 674.486021 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.908072 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.156916 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 685.440004 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.727535 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.099735 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.527233 Burning in for 100 iterations out of 500 -2 * Loglike = 676.264525 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.901506 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.050020 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.493122 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 683.375050 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.090801 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.158555 Burning in for 150 iterations out of 500 -2 * Loglike = 697.348241 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 675.007585 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.315935 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.391417 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 685.098852 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.318298 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 694.493239 Burning in for 200 iterations out of 500 -2 * Loglike = 692.194040 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 675.719388 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 700.395788 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.642755 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 684.689805 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 731.791831 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.673696 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.165057 Burning in for 250 iterations out of 500 -2 * Loglike = 678.180077 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.036824 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 721.791250 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 685.178821 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.480172 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.381285 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 679.784098 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.633884 Burning in for 300 iterations out of 500 -2 * Loglike = 700.951476 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.126672 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 688.443880 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.633785 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.476833 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 726.547367 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.782136 Burning in for 350 iterations out of 500 -2 * Loglike = 701.103560 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.729737 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 686.700865 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.958955 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 673.522032 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.598803 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.561449 Burning in for 400 iterations out of 500 -2 * Loglike = 698.770783 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 693.310378 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 706.575389 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.979286 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.463069 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 684.138699 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 697.281835 Burning in for 450 iterations out of 500 -2 * Loglike = 717.791771 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.911560 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.812248 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.902003 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.813909 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.439721 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 714.817606 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.362805 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 678.357487 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.012186 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 692.214100 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.931375 -2 * Loglike = 715.471191 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 673.310980 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.625184 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.781047 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.728737 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 684.679717 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 673.471577 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.008315 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.328528 Actual update 650 of 5000, Stored update 650 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 = 704.880833 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 706.131979 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 719.104300 Actual update 700 of 5000, Stored update 700 of 5000 ECHO 0 -2 * Loglike = 673.231981 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.708403 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 689.653218 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 695.891310 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.724505 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.147092 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.156922 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.550247 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 681.887396 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.585264 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 703.833100 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.655339 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.111923 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.766857 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.853941 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.410167 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 672.375102 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 685.247963 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.993498 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.715071 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.459254 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 709.984858 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.038200 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 677.651643 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 680.868340 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.736381 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.259074 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.605307 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.762341 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 718.769483 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.515705 Actual update 3900 of 5000, Stored update 3900 of 5000 ECHO 0 -2 * Loglike = 679.647014 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.367638 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 694.829464 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.486006 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.643245 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.287593 Actual update 950 of 5000, Stored update 950 of 5000 ECHO 0 -2 * Loglike = 684.305771 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 682.391059 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.716764 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.931649 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.200181 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.765600 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.008902 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 680.951976 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 681.862260 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 707.441780 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.141411 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.537529 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.884462 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 723.077057 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.327692 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 672.764071 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 693.435232 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.441957 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.443098 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.964180 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.821047 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 675.877704 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 686.496239 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 716.383884 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 691.937914 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.170024 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.485730 Actual update 2700 of 5000, Stored update 2700 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.435512 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 682.919012 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 681.329996 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.301641 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.102896 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 709.325407 Actual update 1200 of 5000, Stored update 1200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 703.817105 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 692.064881 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 674.907827 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 692.334727 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.491303 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 717.863894 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 710.237997 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 736.461330 Burning in for 100 iterations out of 500 -2 * Loglike = 706.925815 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 673.069355 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.034603 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 692.281718 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.913249 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 716.412166 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.703949 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 734.028474 Burning in for 150 iterations out of 500 -2 * Loglike = 713.887427 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.734569 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 679.432639 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 692.176738 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.766411 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.427064 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 721.340382 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 735.211921 Burning in for 200 iterations out of 500 -2 * Loglike = 704.032190 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 676.285206 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.615782 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.391322 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 685.562295 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.579470 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 737.406860 Burning in for 250 iterations out of 500 -2 * Loglike = 684.729086 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.495235 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 681.468587 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 691.528061 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.246598 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 719.919995 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.988408 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 736.164410 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 696.769050 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 = 682.466214 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.197850 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.787713 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.647162 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.708284 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 735.927941 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 734.729111 Burning in for 350 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 674.591762 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 683.146420 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 705.884940 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.639552 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.570825 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.606735 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.681944 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 742.498482 Burning in for 400 iterations out of 500 -2 * Loglike = 717.577748 Burning in for 100 iterations out of 500 -2 * Loglike = 682.176129 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 737.700677 Burning in for 450 iterations out of 500 -2 * Loglike = 704.268330 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.752514 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.245097 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 689.627524 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.218376 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.160643 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.010618 Burning in for 150 iterations out of 500 -2 * Loglike = 735.285210 Burning in for 500 iterations out of 500 -2 * Loglike = 677.475013 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.010646 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.572468 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.404649 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.364376 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.030019 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 705.350708 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 710.422828 Burning in for 200 iterations out of 500 -2 * Loglike = 737.942423 -2 * Loglike = 703.797853 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 673.680245 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.417623 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.643921 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 725.558013 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.429644 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.429860 Burning in for 250 iterations out of 500 -2 * Loglike = 695.943268 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.546261 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.447944 Burning in for 300 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.945128 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 708.546269 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 721.843282 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 684.900199 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 686.585211 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 699.200297 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.952943 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 726.105245 Burning in for 350 iterations out of 500 -2 * Loglike = 693.780727 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 738.071527 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.903916 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.875620 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.022212 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 674.193746 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.885804 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 708.306208 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.870252 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 720.524975 Burning in for 400 iterations out of 500 -2 * Loglike = 738.913631 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 684.356615 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.391676 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 713.295020 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 673.255708 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.381725 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.688995 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.447594 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 732.693076 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.523085 Burning in for 450 iterations out of 500 -2 * Loglike = 688.501008 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.592356 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 676.898956 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.691553 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 699.161100 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.693802 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.195968 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 738.648272 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 717.727520 Burning in for 500 iterations out of 500 -2 * Loglike = 690.024556 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 680.694544 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.990707 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 695.247376 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.185020 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 706.414120 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.341076 -2 * Loglike = 736.068143 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.232636 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 675.305363 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 683.705338 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.150963 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.119933 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 707.752064 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.821394 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.020214 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 751.731034 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.532166 Actual update 5000 of 5000, Stored update 5000 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.251011 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.213114 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 692.214627 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 718.371049 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.035957 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 731.033053 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 727.353423 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 725.707500 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.140480 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.890920 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.730678 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.842284 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 693.101089 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.336264 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 726.168190 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 742.276831 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.933450 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.136320 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 696.611365 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 708.426921 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.991507 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.841428 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 714.660681 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 733.749201 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.817464 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 695.489271 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.393899 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 711.343006 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.461030 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.684732 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 732.209571 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.162697 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 682.579193 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.898249 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.589690 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.607283 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.546263 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.967768 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 733.826715 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 685.674969 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.366055 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.697533 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 699.001518 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 722.411885 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 707.487643 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.109530 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 734.129356 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 725.581090 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.112836 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.323634 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.486818 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.450055 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.326092 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 736.077121 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.732054 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.709414 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 689.228023 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.473252 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.429916 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.340594 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.593690 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 731.997442 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 709.887740 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 729.880735 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.978993 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 716.693768 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 696.707963 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.355419 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.659559 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 739.233808 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 703.036905 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 680.698936 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.262416 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.793486 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 733.085531 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.817091 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.174968 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.266141 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 695.548752 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 687.213384 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.577427 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.682353 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 737.631967 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.687534 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.756263 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.268876 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 703.002063 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.691136 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 721.923394 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 714.043317 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 672.315509 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 677.95 S.D. = 4.3581 S.E.M. = 0.061632 ECHO 0 Execution completed -2 * Loglike = 694.904051 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 734.348454 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.000928 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.181405 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.534852 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 686.277986 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 688.874278 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.436817 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 706.099076 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.557824 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.238576 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.043098 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 680.579819 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 743.915421 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 691.220507 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.593644 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.330264 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.164440 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.512589 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 718.389762 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 737.767226 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 679.949236 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 690.611454 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.353610 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.011311 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.849754 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.128278 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.591479 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 735.939337 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 680.648176 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.447462 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.608865 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.923652 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 725.257233 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 722.669355 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.605627 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 708.374323 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.264111 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.962336 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.219162 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.864412 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 720.208330 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 735.713612 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.369491 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.732534 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 690.984693 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 679.366856 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.989550 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.501571 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.180167 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 737.076657 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.538510 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.417094 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.113793 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.995229 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.777604 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 701.057130 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.079524 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 738.209741 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 722.347088 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.058869 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.437276 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 691.081059 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.631670 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.025803 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.557370 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 739.676878 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.217764 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.852655 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.986466 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 697.169954 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.694506 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.508974 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.323552 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 738.423919 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 723.653640 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.245898 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 688.710459 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.116406 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.861189 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 724.227406 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.995687 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 749.016035 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.089824 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.988927 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 680.988455 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.793416 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.097185 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.188725 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 737.120156 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.933985 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.725805 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.822422 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 684.511884 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.605706 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.376068 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.095417 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 738.233121 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 717.995302 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.457697 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.926057 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.172167 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.903539 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.355188 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 736.457519 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 728.550998 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 714.013940 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.469547 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.805532 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.731028 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.307269 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 704.457361 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 739.669228 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 722.836847 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.706999 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.565097 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.726240 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.265770 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 681.540432 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.494957 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 740.708349 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.572187 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.362717 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.669891 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.704791 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.054673 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.475420 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.669522 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 737.433989 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.812315 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 720.129348 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.320693 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.611112 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.629567 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.876618 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 733.424858 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 685.636077 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.165984 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.907373 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.153978 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 723.398350 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.797851 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 732.842529 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.446497 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.223726 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 712.312322 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.263698 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.521782 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 722.510444 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 734.195478 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 684.886743 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.805809 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 733.246061 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.636948 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 698.378390 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 721.934878 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 697.128637 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 745.660966 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.156479 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.896595 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 722.547929 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.496751 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.175926 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.569121 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 738.064211 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.627775 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.436295 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 723.939992 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.892259 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.398286 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.701159 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.216393 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 699.388938 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.920071 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 732.817318 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.531756 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.188455 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 737.752617 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 722.274268 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.092022 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.764095 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.846250 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.719745 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 706.803106 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 739.167186 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 717.806730 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 681.958732 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.572823 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.651446 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 707.598924 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.275245 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 737.970524 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.454466 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 723.427182 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 737.151225 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.184199 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 714.051613 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.840668 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.425559 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.017342 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 692.254162 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 738.934528 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.655392 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.865114 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.341429 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.469738 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.37 S.D. = 4.5260 S.E.M. = 0.064007 ECHO 0 Execution completed -2 * Loglike = 720.647215 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 682.125313 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.353965 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 745.001348 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.900440 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.611499 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.437477 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 684.260791 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 723.056300 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.325188 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 724.874408 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 735.354530 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.522877 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 686.370973 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.264659 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.262326 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 711.702555 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 735.103259 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.819183 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.845472 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.613472 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.788545 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.218905 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 742.372951 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.341401 Actual update 3450 of 5000, Stored update 3450 of 5000 /nogui option ignored -2 * Loglike = 683.343927 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.140940 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 726.269950 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.447296 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.955973 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 741.962799 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.172056 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 708.121368 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.724759 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.320151 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.626762 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 738.406369 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 707.243229 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.222754 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.356850 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.672410 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.098156 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 737.326657 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 726.842583 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.020649 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 693.234053 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.034946 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.671215 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 736.924513 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 726.557003 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.819324 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 722.862431 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.654351 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 740.046866 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 723.406754 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 716.866196 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.465668 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 711.708934 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 748.600538 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.233496 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.305443 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.857439 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.893520 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 726.846445 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 735.983363 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.058794 Actual update 2550 of 5000, Stored update 2550 of 5000 ECHO 0 -2 * Loglike = 698.926392 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.915375 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.577728 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 728.573075 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 737.527985 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.017940 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.457508 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.082888 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.806933 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.160176 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 737.393840 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.040157 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.789910 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 708.909831 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.965357 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.770246 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 739.397556 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.335653 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 692.529129 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.202503 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.261896 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 738.454462 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.151657 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.949261 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.563522 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.884163 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 734.315555 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.363269 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 716.646162 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 689.340751 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.59 S.D. = 4.4227 S.E.M. = 0.062546 ECHO 0 Execution completed -2 * Loglike = 712.319572 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.529454 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 737.868317 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.033801 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.483703 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 720.103530 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 741.464883 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 710.621015 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 693.768112 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.821792 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 741.366478 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 720.283042 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.696789 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.602210 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 723.691231 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 745.175532 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.726193 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 680.317868 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 685.78 S.D. = 4.1170 S.E.M. = 0.058224 ECHO 0 Execution completed -2 * Loglike = 705.593775 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.637039 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 733.391437 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.878886 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 710.472139 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 702.185885 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 738.271026 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.585559 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 739.033978 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.306214 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.652192 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.671714 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.968131 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 739.887018 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.790997 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.887420 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 710.456856 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 732.335517 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.800716 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 732.464452 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.709321 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.523739 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 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.146639 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.578351 Actual update 4650 of 5000, Stored update 4650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 742.013992 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 725.722637 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 735.691207 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.139313 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.561044 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.980391 Burning in for 100 iterations out of 500 -2 * Loglike = 748.348476 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 693.482439 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.890972 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.304185 Burning in for 150 iterations out of 500 -2 * Loglike = 695.575777 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 746.226958 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.034547 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.823623 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.584674 Burning in for 200 iterations out of 500 -2 * Loglike = 744.033282 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 697.822327 Burning in for 250 iterations out of 500 -2 * Loglike = 714.517450 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.090803 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 738.865414 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 706.982842 Burning in for 300 iterations out of 500 -2 * Loglike = 710.818295 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.365893 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.091589 Burning in for 350 iterations out of 500 -2 * Loglike = 734.329827 Actual update 4050 of 5000, Stored update 4050 of 5000 /nogui option ignored -2 * Loglike = 710.245139 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.614705 Burning in for 400 iterations out of 500 -2 * Loglike = 699.534976 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 735.535174 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.152732 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.498009 Burning in for 450 iterations out of 500 -2 * Loglike = 743.253753 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 717.787786 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.874436 Burning in for 500 iterations out of 500 -2 * Loglike = 734.837938 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 712.614735 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 733.760204 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.034717 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 719.40 S.D. = 4.6668 S.E.M. = 0.065999 ECHO 0 Execution completed -2 * Loglike = 715.220036 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.393258 -2 * Loglike = 744.512154 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 727.897307 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 724.582653 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 738.023979 Actual update 4350 of 5000, Stored update 4350 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.529967 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 742.714766 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 740.157615 Actual update 4450 of 5000, Stored update 4450 of 5000 ECHO 0 -2 * Loglike = 700.774631 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.189047 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.928299 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 709.83 S.D. = 4.3556 S.E.M. = 0.061598 ECHO 0 Execution completed -2 * Loglike = 733.387670 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.444332 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.521956 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 744.162698 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.259480 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 724.882571 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 741.885027 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.689658 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 733.488244 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.090317 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 723.770832 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 742.916362 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.421861 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 717.408180 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 733.924721 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.966125 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 723.573346 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 736.880384 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.797324 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.410857 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.87 S.D. = 4.0902 S.E.M. = 0.057844 ECHO 0 Execution completed -2 * Loglike = 707.085887 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 737.871791 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 719.841975 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 743.952586 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.354309 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 726.085017 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 723.289346 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.756279 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 737.032329 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 725.306927 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 753.240096 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.361392 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.977448 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.153531 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.709421 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.324988 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.868549 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.100489 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.938420 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.067885 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.151427 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 699.993106 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.480377 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 722.951468 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.905082 Actual update 900 of 5000, Stored update 900 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.740881 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.867291 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 717.293488 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.430195 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.900571 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.342118 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.302097 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.224273 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.889198 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 732.563687 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 738.23 S.D. = 4.4451 S.E.M. = 0.062864 ECHO 0 Execution completed -2 * Loglike = 700.638940 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.285844 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.734631 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.065751 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.368735 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 710.584710 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 717.47 S.D. = 5.4634 S.E.M. = 0.077264 ECHO 0 Execution completed -2 * Loglike = 699.327084 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.823264 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.154497 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.443690 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.122315 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 697.993850 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.102981 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.219284 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 700.975942 Actual update 1950 of 5000, Stored update 1950 of 5000 /nogui option ignored -2 * Loglike = 710.036080 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.452505 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.645027 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.680103 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 703.967720 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.931610 Actual update 2250 of 5000, Stored update 2250 of 5000 ECHO 0 -2 * Loglike = 703.522457 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.576406 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 715.660221 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 702.053351 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.036879 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.390673 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.064287 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 705.027865 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.712834 Actual update 2700 of 5000, Stored update 2700 of 5000 /nogui option ignored -2 * Loglike = 701.712000 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.343840 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.133532 Actual update 2850 of 5000, Stored update 2850 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 = 700.890203 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.450109 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.240062 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 705.130118 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.272716 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.020395 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 702.565682 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 701.039111 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.714731 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.958029 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.615258 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.217375 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.215763 Actual update 3500 of 5000, Stored update 3500 of 5000 /nogui option ignored -2 * Loglike = 703.406840 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 698.377773 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.845058 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.890028 Actual update 3700 of 5000, Stored update 3700 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.426949 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 699.201534 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 708.357824 Actual update 3850 of 5000, Stored update 3850 of 5000 /nogui option ignored -2 * Loglike = 706.400267 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.611919 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.571568 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.292802 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.035864 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 711.403241 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.366213 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.120215 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.382196 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.399494 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.622049 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.222126 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 706.887589 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.942315 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 705.159565 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 710.915952 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.197578 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 699.439564 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.624818 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 706.960431 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.501983 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.791633 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.226483 Actual update 5000 of 5000, Stored update 5000 of 5000 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 -2 * Loglike = 698.380297 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.67 S.D. = 4.2362 S.E.M. = 0.059909 ECHO 0 Execution completed ECHO 0 /nogui option ignored /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 /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 = 717.815452 Burning in for 100 iterations out of 500 -2 * Loglike = 714.358599 Burning in for 150 iterations out of 500 -2 * Loglike = 714.405781 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 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.649414 Burning in for 250 iterations out of 500 -2 * Loglike = 720.822308 Burning in for 300 iterations out of 500 -2 * Loglike = 717.900489 Burning in for 350 iterations out of 500 -2 * Loglike = 723.902377 Burning in for 400 iterations out of 500 -2 * Loglike = 716.569315 Burning in for 450 iterations out of 500 -2 * Loglike = 719.365420 Burning in for 500 iterations out of 500 -2 * Loglike = 717.292774 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.908266 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.943791 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.494386 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 717.606748 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.972067 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 731.700759 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.504942 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.051170 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.434461 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.513983 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.826891 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 713.049458 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.827770 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.044301 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.469052 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.991847 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.811950 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 714.851005 Actual update 950 of 5000, Stored update 950 of 5000 /nogui option ignored -2 * Loglike = 722.261375 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.322039 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 719.800986 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 715.817831 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.412616 Actual update 1200 of 5000, Stored update 1200 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 718.203739 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.759561 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 721.050430 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 716.855845 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 = 725.955086 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 Burning in for 50 iterations out of 500 -2 * Loglike = 711.333068 Burning in for 100 iterations out of 500 -2 * Loglike = 716.949789 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 710.356792 Burning in for 150 iterations out of 500 -2 * Loglike = 716.809265 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.906060 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 716.137637 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 711.211845 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... /nogui option ignored Burning in for 50 iterations out of 500 -2 * Loglike = 712.008946 Burning in for 300 iterations out of 500 -2 * Loglike = 717.570070 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 715.225685 Burning in for 100 iterations out of 500 -2 * Loglike = 712.860306 Burning in for 350 iterations out of 500 -2 * Loglike = 717.610419 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.635250 Burning in for 400 iterations out of 500 -2 * Loglike = 708.320103 Burning in for 150 iterations out of 500 -2 * Loglike = 716.922032 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.115567 Burning in for 450 iterations out of 500 -2 * Loglike = 718.719145 Burning in for 200 iterations out of 500 -2 * Loglike = 713.046441 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 713.298547 Burning in for 500 iterations out of 500 -2 * Loglike = 707.883969 Burning in for 250 iterations out of 500 -2 * Loglike = 712.519480 -2 * Loglike = 717.734580 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 717.267469 Burning in for 300 iterations out of 500 -2 * Loglike = 715.015847 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.647685 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... 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 Burning in for 50 iterations out of 500 -2 * Loglike = 714.104125 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.279281 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 703.708478 Burning in for 100 iterations out of 500 -2 * Loglike = 715.095018 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 727.267609 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.479464 Burning in for 450 iterations out of 500 -2 * Loglike = 714.647057 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.696464 Burning in for 150 iterations out of 500 -2 * Loglike = 717.598166 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.276338 Burning in for 500 iterations out of 500 -2 * Loglike = 710.867050 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.884069 Burning in for 200 iterations out of 500 -2 * Loglike = 713.053123 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.776737 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 = 703.690625 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 = 714.708887 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 720.093775 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.255213 Burning in for 300 iterations out of 500 -2 * Loglike = 719.514020 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.979026 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 713.701170 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 725.548928 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.247224 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 704.486261 Burning in for 350 iterations out of 500 -2 * Loglike = 720.678615 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 726.074384 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 717.493048 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 709.492911 Burning in for 400 iterations out of 500 -2 * Loglike = 710.447871 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.426275 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 719.379978 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.346403 Burning in for 450 iterations out of 500 -2 * Loglike = 711.258356 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 713.700568 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 728.006258 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.257799 Burning in for 500 iterations out of 500 -2 * Loglike = 724.847420 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.315712 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 715.455545 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.044083 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.766369 -2 * Loglike = 713.564944 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.919787 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 716.650024 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 = 716.497416 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 = 711.565389 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored Burning in for 50 iterations out of 500 -2 * Loglike = 725.048505 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.937757 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.005785 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 718.535534 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.958225 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.626681 Burning in for 100 iterations out of 500 -2 * Loglike = 706.187928 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.596905 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 720.635893 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 712.049861 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.948573 Burning in for 150 iterations out of 500 -2 * Loglike = 711.476909 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.487947 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored -2 * Loglike = 717.700977 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.165425 Burning in for 200 iterations out of 500 -2 * Loglike = 710.139379 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.280630 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 703.432601 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 720.465079 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.914484 Burning in for 250 iterations out of 500 -2 * Loglike = 713.647181 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.576654 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 713.350817 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 728.236067 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.279427 Burning in for 300 iterations out of 500 -2 * Loglike = 706.179665 Actual update 750 of 5000, Stored update 750 of 5000 ECHO 0 -2 * Loglike = 709.742652 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.959499 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.577606 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 718.130345 Burning in for 350 iterations out of 500 -2 * Loglike = 716.162389 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.641536 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.694266 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.144458 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.599812 Burning in for 400 iterations out of 500 -2 * Loglike = 726.846441 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 711.008761 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 711.637702 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.190318 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.950721 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 713.499611 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 716.723923 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.234073 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.501463 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 719.508946 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.709319 Burning in for 450 iterations out of 500 -2 * Loglike = 711.191987 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 716.333705 Burning in for 500 iterations out of 500 -2 * Loglike = 723.266141 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 698.788631 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 716.873272 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.241666 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.309865 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 717.884444 -2 * Loglike = 716.477062 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.684826 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.204819 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.305802 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.544692 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.282624 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.436382 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.886061 Actual update 1100 of 5000, Stored update 1100 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 = 713.189742 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.281453 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.728723 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.655072 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 696.738390 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 720.023605 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 713.202433 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 727.230369 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.044296 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.421311 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.109452 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.377523 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.396929 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.403098 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.810602 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 716.247837 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.966645 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 699.587248 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 716.968897 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 719.734674 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.085300 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 713.750309 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.585445 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.763706 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 718.050665 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 717.835527 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.549935 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.285359 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 719.597497 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 722.752310 Actual update 1450 of 5000, Stored update 1450 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 = 730.770912 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 710.299391 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.418562 Actual update 1600 of 5000, Stored update 1600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 713.066985 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.114723 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 = 701.317860 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.857953 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.084939 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 666.386231 Burning in for 100 iterations out of 500 Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 712.556133 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.744159 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.995757 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.829560 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 711.463523 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 664.221589 Burning in for 150 iterations out of 500 -2 * Loglike = 718.639237 Burning in for 100 iterations out of 500 -2 * Loglike = 701.100336 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.982792 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.448320 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 714.608908 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.944151 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 663.276146 Burning in for 200 iterations out of 500 -2 * Loglike = 713.417361 Burning in for 150 iterations out of 500 -2 * Loglike = 703.488252 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 721.894512 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 715.663751 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.125943 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.634573 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 664.783065 Burning in for 250 iterations out of 500 -2 * Loglike = 713.407226 Burning in for 200 iterations out of 500 -2 * Loglike = 703.899907 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.816554 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.823049 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.476881 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 710.830429 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.314558 Burning in for 250 iterations out of 500 -2 * Loglike = 671.129470 Burning in for 300 iterations out of 500 -2 * Loglike = 716.429192 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.540824 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 721.581721 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.998666 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 667.214018 Burning in for 350 iterations out of 500 -2 * Loglike = 712.393255 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 719.634478 Burning in for 300 iterations out of 500 -2 * Loglike = 718.024118 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.819368 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.833464 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 726.316645 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 711.748263 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 673.226287 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 715.594785 Burning in for 350 iterations out of 500 -2 * Loglike = 714.916326 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.563961 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 727.501452 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.671409 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.034724 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 666.972822 Burning in for 450 iterations out of 500 -2 * Loglike = 722.503486 Burning in for 400 iterations out of 500 -2 * Loglike = 718.554431 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 722.264538 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.113767 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.092439 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 712.311105 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 716.698725 Burning in for 450 iterations out of 500 -2 * Loglike = 667.876115 Burning in for 500 iterations out of 500 -2 * Loglike = 717.216616 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.029825 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.129541 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 712.177546 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 709.863096 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 667.447187 -2 * Loglike = 717.851021 Burning in for 500 iterations out of 500 -2 * Loglike = 720.697832 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.683507 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.977696 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 721.392086 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.260540 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.562898 -2 * Loglike = 717.120577 Actual update 950 of 5000, Stored update 950 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.652115 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.377916 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.894749 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 712.989407 Actual update 2050 of 5000, Stored update 2050 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.505590 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.104735 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 666.378857 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 714.867758 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 712.498840 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.690665 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.799565 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 672.011975 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.811718 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.278445 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.869205 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.379546 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.312584 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.619194 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 662.257041 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 722.809890 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.601044 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... -2 * Loglike = 711.808275 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.194948 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 711.270582 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 716.230577 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 668.367134 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.681682 Actual update 4350 of 5000, Stored update 4350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 697.473824 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.031347 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.527812 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.211589 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 723.812297 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.635482 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 665.573051 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.515261 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 = 701.959727 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.062644 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.123982 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.909752 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.000077 Actual update 4450 of 5000, Stored update 4450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 716.157977 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.288131 Burning in for 150 iterations out of 500 -2 * Loglike = 680.934187 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.866752 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 719.017361 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.504026 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.310571 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 714.510629 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.273191 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.929638 Burning in for 200 iterations out of 500 -2 * Loglike = 687.390235 Burning in for 100 iterations out of 500 -2 * Loglike = 701.844222 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.387256 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 661.490483 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 726.226523 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.561315 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.820883 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 711.053745 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.149525 Burning in for 250 iterations out of 500 -2 * Loglike = 679.645495 Burning in for 150 iterations out of 500 -2 * Loglike = 713.575904 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.604564 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 665.301825 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 723.157701 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.085689 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.935907 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 725.223615 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.376921 Burning in for 300 iterations out of 500 -2 * Loglike = 682.560082 Burning in for 200 iterations out of 500 -2 * Loglike = 704.102606 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 716.432916 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 664.669832 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 719.570323 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.886067 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.236243 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.105208 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 700.910630 Burning in for 350 iterations out of 500 -2 * Loglike = 719.963140 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.618922 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.250998 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 662.121410 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.002165 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.922117 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 684.286322 Burning in for 250 iterations out of 500 -2 * Loglike = 712.730536 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.642492 Burning in for 400 iterations out of 500 -2 * Loglike = 713.533023 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 720.708555 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.223934 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 663.803619 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 726.770837 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.464838 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 684.676489 Burning in for 300 iterations out of 500 -2 * Loglike = 664.249701 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.146531 Burning in for 450 iterations out of 500 -2 * Loglike = 717.947120 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.837770 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 714.837576 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.492749 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.026610 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.464602 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 664.643935 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.394981 Burning in for 500 iterations out of 500 -2 * Loglike = 719.070963 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 693.759582 -2 * Loglike = 713.396016 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.390288 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.345892 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.465005 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 662.114895 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.095322 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 726.129853 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 693.749355 Burning in for 350 iterations out of 500 -2 * Loglike = 703.582861 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 = 718.837330 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.445062 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 672.270365 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.340310 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.562573 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.608123 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 687.658231 Burning in for 400 iterations out of 500 -2 * Loglike = 701.963870 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.922127 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.856966 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 721.253793 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 713.621707 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 663.224707 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 717.438648 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.947355 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 687.592485 Burning in for 450 iterations out of 500 -2 * Loglike = 701.614261 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.089140 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 720.113114 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.534503 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.325898 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 668.554111 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.472871 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.933089 Burning in for 500 iterations out of 500 -2 * Loglike = 697.658357 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.872848 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 715.591517 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 663.590866 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 717.833959 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.048973 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.245699 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.938363 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 688.424602 -2 * Loglike = 720.447662 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.073275 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 715.790180 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 714.779645 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 719.754524 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.150887 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.675445 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 673.848783 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 710.720005 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 727.367774 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.023235 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 = 712.751842 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 707.991261 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.071566 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.816314 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 722.834356 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.192753 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.654358 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 695.498933 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 685.876999 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.368976 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.091824 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.599847 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 712.193747 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 718.358674 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.884484 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.208569 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.091937 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 669.615997 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.824229 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.701322 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.273037 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.296190 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.192745 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.739508 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.522632 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 717.871398 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 668.433256 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 715.846036 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.725208 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.771812 Actual update 2650 of 5000, Stored update 2650 of 5000 /nogui option ignored -2 * Loglike = 694.961684 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.667267 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.614033 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 716.459639 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.888797 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 665.458848 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 720.310925 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.145456 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.383074 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.496948 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 683.234901 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.999099 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 717.345112 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 721.691418 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 667.626524 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.534102 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.466454 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.525110 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.821627 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.987226 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.716588 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 709.407067 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 719.176467 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.629168 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.895412 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.161519 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 680.527050 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 668.463490 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.244351 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 715.770284 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 667.500722 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.813188 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 733.152928 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 690.499828 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 706.523217 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 693.112124 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 713.490603 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.68 S.D. = 4.3646 S.E.M. = 0.061724 ECHO 0 Execution completed -2 * Loglike = 716.294678 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.681969 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 671.008471 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 710.778507 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.948535 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.639507 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 685.663890 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.763623 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 718.792592 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.027989 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 667.059576 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.935643 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.614078 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.271206 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 680.328478 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.167969 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.229481 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.150522 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 676.159063 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.403323 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.300014 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.529244 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 682.088029 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 700.671454 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.936032 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 716.662585 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 666.638075 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.608328 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 724.266021 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.576276 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 680.916942 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.309143 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.623468 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 666.493080 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 722.471704 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.376198 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 720.429639 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 702.953081 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 = 716.752456 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 683.741272 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.861596 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 666.000619 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.304244 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 711.120783 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 717.314066 Actual update 1750 of 5000, Stored update 1750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 698.206785 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.609681 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 677.280984 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 669.701485 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.195272 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.607993 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.387786 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 717.714839 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.728083 Burning in for 100 iterations out of 500 -2 * Loglike = 716.681925 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.825586 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.283422 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.940725 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 668.724534 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.036317 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.427928 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 716.153738 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.537489 Burning in for 150 iterations out of 500 -2 * Loglike = 726.850739 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 693.826049 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 686.209872 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 667.741409 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 699.583384 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 714.752500 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.384392 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 720.365726 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.845651 Burning in for 200 iterations out of 500 -2 * Loglike = 695.679785 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.998617 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.880886 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 663.210398 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.578601 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.879414 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.606291 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.322432 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.652653 Burning in for 250 iterations out of 500 -2 * Loglike = 697.000133 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 719.451726 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 682.771502 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 664.438709 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.398227 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 725.275233 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 710.688711 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 717.117411 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.400961 Burning in for 300 iterations out of 500 -2 * Loglike = 698.268632 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 707.571107 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.736421 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 665.208182 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.844391 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.037631 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 690.520695 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.791484 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.396004 Burning in for 350 iterations out of 500 -2 * Loglike = 711.406420 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.566333 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.997288 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 706.274395 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 664.317246 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 713.687594 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 685.979240 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.469847 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 721.059068 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.838899 Burning in for 400 iterations out of 500 -2 * Loglike = 697.362287 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.390902 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.495080 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 676.090741 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 715.079442 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 682.153876 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.045468 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.353018 Burning in for 450 iterations out of 500 -2 * Loglike = 722.174138 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.663937 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.061214 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 669.520566 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 704.757377 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 718.010111 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.415822 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 683.412359 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 709.690024 Burning in for 500 iterations out of 500 -2 * Loglike = 714.424831 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.491915 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 714.265600 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 663.484386 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.670987 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.915708 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.007794 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 706.065878 -2 * Loglike = 683.440338 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 721.401594 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.713955 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.411881 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.016154 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 668.362665 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.213334 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.436057 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 679.351745 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.568728 Actual update 3700 of 5000, Stored update 3700 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 = 708.566071 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 718.501154 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 668.657003 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.820898 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.182287 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.934880 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 685.548093 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 707.074416 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.155173 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.287736 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.465662 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 668.487664 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 729.483834 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.668915 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 721.570951 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.429496 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.679930 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.766420 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.346955 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.906084 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 667.880385 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 715.215465 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.990320 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.860466 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.489270 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 691.950159 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 707.490944 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.497687 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 667.768397 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.549050 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.295645 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.400503 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.134913 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 717.460349 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 687.369022 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.730527 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 714.713050 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 680.416703 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 721.553738 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 723.492079 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.111704 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.329710 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 690.545425 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 716.416629 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.533962 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.623379 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 665.738567 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 724.440189 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.494754 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.080965 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.236805 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.115488 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 716.580633 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.864070 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 663.791901 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 698.936354 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.682193 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 712.108763 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 719.471566 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.396191 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.740612 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.701442 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 719.320248 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 669.024581 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.820864 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.191115 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 716.855981 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.524156 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.457267 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.020549 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.026767 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 675.354766 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 716.062701 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.353609 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.794558 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.863400 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.421501 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.173589 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.285123 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.613658 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 668.288056 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.801996 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.421659 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 712.554979 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.430826 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.970325 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.858409 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 677.519606 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.019777 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 669.546825 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.231929 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.803042 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.241750 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.206803 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.592512 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 715.384513 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 686.222625 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 711.255169 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 667.262854 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 724.195983 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 707.337960 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 719.153316 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.611991 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.027626 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 680.154543 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.076263 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.012127 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 671.049939 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.936026 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.212308 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.575887 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.720105 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.747609 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 682.101326 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 719.220957 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.093095 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.754477 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.264172 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.282407 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 674.699746 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.785338 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.736826 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.315139 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 725.327083 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 721.833652 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.848411 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 665.550707 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.315340 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.252250 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.024696 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 715.934730 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.319322 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.302958 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 670.242662 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.315635 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.289435 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.749528 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 714.978652 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.101477 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 716.440951 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 670.166648 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 682.020733 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.326320 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 699.104045 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 717.709912 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.452194 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.454274 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 667.024213 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 681.394801 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.040074 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.354225 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 731.339969 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.491875 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.581617 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 667.912432 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.898871 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.067448 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.411568 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.792487 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 719.396198 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.460777 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 665.855133 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.666984 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 682.699726 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 693.912717 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 723.848576 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.818579 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.073733 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 667.772953 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.244114 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.122072 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 715.516450 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.325219 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.907584 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 665.788973 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.009657 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.067095 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 690.744125 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.581062 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 719.726627 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 670.830513 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.160179 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.923657 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.969774 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.855837 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 716.184983 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.703056 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 676.747382 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.280055 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.615366 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.138893 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 720.703674 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 663.006930 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.152277 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 712.869559 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 712.70 S.D. = 2.1885 S.E.M. = 0.030950 ECHO 0 Execution completed -2 * Loglike = 686.027034 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 696.766242 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.070676 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.956306 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.877606 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.379649 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 715.53 S.D. = 5.2857 S.E.M. = 0.074751 ECHO 0 Execution completed -2 * Loglike = 709.294548 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.246842 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 669.090919 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.042057 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.071754 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.628632 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 717.110214 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.040017 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 706.029690 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 666.852942 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.478400 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.639656 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 686.512030 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.287619 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.380589 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 668.886726 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.537008 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 721.767152 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 682.572357 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 720.533542 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 663.227656 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.890206 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.579916 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.343479 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 662.253563 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.664432 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 681.018117 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.878577 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.476195 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.410119 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.327175 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.495310 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 662.924204 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.387856 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 721.663941 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 690.989764 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 682.681752 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 715.173568 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 672.292468 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 716.051482 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.342994 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.912953 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.815369 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 662.848117 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.002384 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.493540 Actual update 4800 of 5000, Stored update 4800 of 5000 /nogui option ignored -2 * Loglike = 721.583498 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 683.675558 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 698.033736 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 672.499796 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 715.137525 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.470201 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.537728 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 681.575455 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 703.671164 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.783659 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 674.074540 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.833585 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.293329 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 680.780390 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 694.230562 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.165455 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 677.843582 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 724.847127 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 717.040119 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.609537 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.816604 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.935512 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 672.331247 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.586334 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.829893 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.82 S.D. = 4.3039 S.E.M. = 0.060866 ECHO 0 Execution completed -2 * Loglike = 680.906915 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.475518 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.933734 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 662.542078 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.295344 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.241912 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 681.503287 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.019787 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.366794 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 682.292672 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 666.084643 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 725.230195 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.049248 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.543048 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.399118 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.542913 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.807654 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 674.921712 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.233629 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.886925 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 721.914331 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.151144 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 665.022966 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.804614 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 682.556368 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.640623 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 664.347100 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.062087 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 707.446342 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.821242 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 672.873243 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.643748 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 716.116887 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.013884 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 683.751074 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 667.247027 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.057258 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.638131 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 724.598902 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 684.570535 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.281885 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.977184 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.002146 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.584385 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 673.756831 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.506332 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.909586 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.552776 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.114663 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 669.163318 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.350671 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 697.792040 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.515130 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.040965 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.897881 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 666.964206 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.698709 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 689.192245 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.351386 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.390847 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 673.718025 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.412145 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.094117 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.317497 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.106737 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 669.188873 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 699.501666 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.437259 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.014376 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 665.301406 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.368667 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.595980 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.821714 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.520607 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 717.81 S.D. = 2.2204 S.E.M. = 0.031401 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 = 696.191212 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 671.774510 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.077300 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.916180 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.805471 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 664.019325 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 692.730717 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 714.876130 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.023519 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.114722 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 667.501240 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 724.668357 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.898819 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.377341 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.528247 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 671.575822 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.899262 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 682.297523 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.627342 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 672.952369 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.037887 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 713.635229 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.228864 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 664.684805 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.719757 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.477597 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.930639 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 681.241252 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 673.271712 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.811893 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 677.930819 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.849893 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.327136 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.775602 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.899997 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.766605 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.607439 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 686.025282 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.436890 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.396704 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 684.830989 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.268458 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.290469 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 692.180474 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 705.376454 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.793068 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.449535 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.937807 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.953677 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 687.490897 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.275192 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.558304 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 685.280055 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.759743 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.441353 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 681.001950 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.673189 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.563746 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.334894 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.554385 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.482289 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 681.247009 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.871183 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.432412 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 678.735752 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.888616 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.475701 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.165893 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 714.815751 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.378902 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.337098 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.37 S.D. = 4.8267 S.E.M. = 0.068259 ECHO 0 Execution completed -2 * Loglike = 663.408617 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 668.35 S.D. = 4.0874 S.E.M. = 0.057804 ECHO 0 Execution completed -2 * Loglike = 707.998652 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.835471 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.927120 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 682.062090 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.149717 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.340857 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 713.276667 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.061790 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.828985 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.874694 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.125486 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.189460 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.167621 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.652043 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.40 S.D. = 2.9973 S.E.M. = 0.042388 ECHO 0 Execution completed -2 * Loglike = 705.823007 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.587552 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 718.714860 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.081021 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.744730 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.22 S.D. = 5.0527 S.E.M. = 0.071456 ECHO 0 Execution completed -2 * Loglike = 710.737169 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.498931 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 716.678851 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 709.442245 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.089777 Actual update 4600 of 5000, Stored update 4600 of 5000 ECHO 0 -2 * Loglike = 706.301987 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 712.599485 Actual update 4700 of 5000, Stored update 4700 of 5000 /nogui option ignored -2 * Loglike = 703.269262 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.622781 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 709.917964 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 715.474404 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.756222 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.579929 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 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 = 703.800958 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.47 S.D. = 5.1128 S.E.M. = 0.072306 ECHO 0 Execution completed ECHO 0 /nogui option ignored /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 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 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 = 724.776466 Burning in for 100 iterations out of 500 -2 * Loglike = 719.992707 Burning in for 150 iterations out of 500 -2 * Loglike = 721.641748 Burning in for 200 iterations out of 500 -2 * Loglike = 724.907468 Burning in for 250 iterations out of 500 -2 * Loglike = 720.803163 Burning in for 300 iterations out of 500 -2 * Loglike = 721.394367 Burning in for 350 iterations out of 500 -2 * Loglike = 728.124553 Burning in for 400 iterations out of 500 -2 * Loglike = 722.973917 Burning in for 450 iterations out of 500 -2 * Loglike = 722.565902 Burning in for 500 iterations out of 500 -2 * Loglike = 722.055882 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.748749 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 723.999486 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 718.986403 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 726.823422 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 = 737.005477 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 737.476976 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 720.613033 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 734.400623 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.002762 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.803316 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 722.590167 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 720.750978 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.000575 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.182555 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 725.947071 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.389650 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 724.571271 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.332314 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 729.558713 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 723.044675 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 722.932102 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.430730 Actual update 1150 of 5000, Stored update 1150 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 = 721.455024 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 724.455032 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 733.722066 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 729.755593 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 730.589262 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 728.472354 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.518003 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 728.429164 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 734.550264 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 735.395367 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 734.512344 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 738.095066 Actual update 1750 of 5000, Stored update 1750 of 5000 /nogui option ignored -2 * Loglike = 721.931934 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 720.420756 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 719.692303 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 719.042868 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 = 729.776066 Actual update 2000 of 5000, Stored update 2000 of 5000 ECHO 0 -2 * Loglike = 724.519820 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.388819 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 725.037594 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 725.956360 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.722354 Actual update 2250 of 5000, Stored update 2250 of 5000 /nogui option ignored -2 * Loglike = 736.619396 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 726.761787 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 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 = 728.919694 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.740524 Burning in for 100 iterations out of 500 -2 * Loglike = 721.133406 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.057289 Burning in for 150 iterations out of 500 ECHO 0 -2 * Loglike = 721.433709 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.904971 Burning in for 200 iterations out of 500 -2 * Loglike = 730.237515 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.768861 Burning in for 250 iterations out of 500 -2 * Loglike = 734.840125 Actual update 2600 of 5000, Stored update 2600 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 = 705.597384 Burning in for 300 iterations out of 500 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 728.193385 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.346507 Burning in for 350 iterations out of 500 -2 * Loglike = 735.191058 Burning in for 100 iterations out of 500 -2 * Loglike = 712.145044 Burning in for 400 iterations out of 500 -2 * Loglike = 723.701424 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 728.686580 Burning in for 150 iterations out of 500 -2 * Loglike = 730.998838 Burning in for 200 iterations out of 500 -2 * Loglike = 710.319380 Burning in for 450 iterations out of 500 -2 * Loglike = 723.486970 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 733.909771 Burning in for 250 iterations out of 500 -2 * Loglike = 701.690461 Burning in for 500 iterations out of 500 -2 * Loglike = 732.573975 Burning in for 300 iterations out of 500 -2 * Loglike = 723.683024 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.063181 -2 * Loglike = 732.614675 Burning in for 350 iterations out of 500 -2 * Loglike = 735.890915 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 736.651768 Burning in for 400 iterations out of 500 -2 * Loglike = 721.984633 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 = 733.089332 Burning in for 450 iterations out of 500 -2 * Loglike = 722.532177 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 706.727991 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 735.788972 Burning in for 500 iterations out of 500 -2 * Loglike = 730.145588 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.989275 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.313882 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 733.753051 -2 * Loglike = 726.290478 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.094458 Actual update 200 of 5000, Stored update 200 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.363652 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.849329 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 737.262380 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 727.226519 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.165451 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.785881 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 734.714738 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.932617 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 727.150479 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 726.326050 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 704.702913 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 735.924756 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 729.507856 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 730.076777 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.943893 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 719.157918 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 744.314157 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.960926 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 723.177398 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 725.677806 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.607400 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.451637 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 740.424992 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 725.476261 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.669434 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 730.147309 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.128742 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.404625 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.406779 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 727.043762 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 = 719.855458 Actual update 3650 of 5000, Stored update 3650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 700.751573 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 728.798888 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 701.507839 Burning in for 100 iterations out of 500 -2 * Loglike = 719.139799 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 709.177613 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 729.860791 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 698.347241 Burning in for 150 iterations out of 500 -2 * Loglike = 728.391980 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.203384 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 729.251061 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.569032 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.855969 Burning in for 200 iterations out of 500 -2 * Loglike = 711.119712 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 726.536642 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 734.194535 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.447766 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.490844 Burning in for 250 iterations out of 500 -2 * Loglike = 734.854521 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 740.283336 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.908338 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 700.673672 Burning in for 300 iterations out of 500 -2 * Loglike = 728.881691 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 736.702579 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.499384 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 702.537061 Burning in for 350 iterations out of 500 -2 * Loglike = 733.021472 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 728.546436 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 706.524817 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.722656 Burning in for 400 iterations out of 500 -2 * Loglike = 729.002154 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.812323 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.595367 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.556958 Burning in for 450 iterations out of 500 -2 * Loglike = 737.879030 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.496687 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.875873 Burning in for 500 iterations out of 500 -2 * Loglike = 720.421282 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 735.661680 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.002977 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 702.770573 -2 * Loglike = 726.203413 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 733.779489 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 707.042989 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.571785 Actual update 4200 of 5000, Stored update 4200 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.755412 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 707.887952 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.104372 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.749292 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 732.266784 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 707.918918 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 735.680868 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.955818 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 733.007798 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.451469 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 734.705604 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.112041 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.540727 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 730.293113 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 728.926293 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.925615 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.704025 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 735.015876 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 728.657926 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.958874 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.391783 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 732.539837 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 720.348134 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 714.436752 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.580816 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 739.552356 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 726.825115 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.522013 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.689050 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 730.738382 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 729.201248 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.937851 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.981224 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 734.934269 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.632125 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.067884 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.203168 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 730.196058 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 730.041219 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.502772 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.549221 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 739.266989 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 719.636349 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.731628 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.774749 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 729.943300 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 -2 * Loglike = 701.015161 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.598351 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.181024 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 731.769464 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 703.388905 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.700498 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.565063 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 727.524654 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.443765 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 729.867071 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.215487 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 726.202551 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.352617 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 722.873719 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.899740 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.169915 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 729.060429 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 705.455355 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 734.586055 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.078294 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 729.655318 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.676046 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 740.250255 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.021039 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 707.091190 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 735.726488 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.568144 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 731.959265 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.271905 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.862504 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 732.265641 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 709.611648 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.283876 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 729.788358 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.387582 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.716013 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 729.745198 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.625831 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.217329 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 = 731.726326 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.676363 Actual update 2450 of 5000, Stored update 2450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 731.835030 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.053834 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.084437 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 721.849448 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 = 743.499399 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.329283 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 709.471780 Actual update 2550 of 5000, Stored update 2550 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 720.965261 Burning in for 150 iterations out of 500 -2 * Loglike = 728.405598 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.868770 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.259865 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.433424 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.613663 Burning in for 100 iterations out of 500 -2 * Loglike = 719.224282 Burning in for 200 iterations out of 500 -2 * Loglike = 729.511861 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.993366 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.268535 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.600374 Burning in for 150 iterations out of 500 -2 * Loglike = 719.823581 Burning in for 250 iterations out of 500 -2 * Loglike = 735.479255 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.921112 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.970499 Burning in for 200 iterations out of 500 -2 * Loglike = 700.717774 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 728.568908 Burning in for 300 iterations out of 500 -2 * Loglike = 734.204236 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.563816 Burning in for 250 iterations out of 500 -2 * Loglike = 703.087020 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.479610 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 723.755603 Burning in for 350 iterations out of 500 -2 * Loglike = 704.126638 Burning in for 300 iterations out of 500 -2 * Loglike = 734.149391 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 704.087078 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.318115 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.984401 Burning in for 400 iterations out of 500 -2 * Loglike = 703.645863 Burning in for 350 iterations out of 500 -2 * Loglike = 731.845084 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.410823 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.747246 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 725.308927 Burning in for 450 iterations out of 500 -2 * Loglike = 709.783219 Burning in for 400 iterations out of 500 -2 * Loglike = 707.094923 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.006088 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 731.360767 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 718.982001 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 726.54 S.D. = 5.7195 S.E.M. = 0.080886 ECHO 0 Execution completed -2 * Loglike = 708.168136 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 724.247625 Burning in for 500 iterations out of 500 -2 * Loglike = 699.300914 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 702.563238 Burning in for 450 iterations out of 500 -2 * Loglike = 734.824866 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.207592 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.700507 -2 * Loglike = 699.311388 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.390267 Burning in for 500 iterations out of 500 -2 * Loglike = 734.890471 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.257726 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.827015 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.372599 Actual update 3100 of 5000, Stored update 3100 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 = 704.717770 -2 * Loglike = 732.287170 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.304587 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.300809 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 722.524451 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 731.985816 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.939462 Actual update 2000 of 5000, Stored update 2000 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 = 706.504300 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 732.851390 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.820559 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 728.829685 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.859201 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 705.944379 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.037277 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.392343 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 731.036952 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 728.606153 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.881160 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.795671 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.569538 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 729.995637 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 721.681103 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.962555 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.624562 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 729.291969 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 707.315100 Actual update 3350 of 5000, Stored update 3350 of 5000 /nogui option ignored -2 * Loglike = 736.837168 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 702.249054 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.631734 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 731.189797 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 703.911765 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.739458 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.673786 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.815105 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.895364 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.459005 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.012703 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 729.083144 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.260848 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 735.337496 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.981582 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.650860 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.967621 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.982249 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.005961 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 741.705802 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.251739 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.088529 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 719.462992 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.620560 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.435200 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.365762 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.026562 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 722.401286 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.004994 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 735.198283 Actual update 3450 of 5000, Stored update 3450 of 5000 ECHO 0 -2 * Loglike = 700.373283 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.183249 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.005678 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.278540 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 735.027745 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.237724 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.686892 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 728.964930 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.350654 Actual update 2650 of 5000, Stored update 2650 of 5000 ECHO 0 -2 * Loglike = 733.731993 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.714294 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 714.753637 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.860564 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.889409 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 727.637289 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.093447 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.085592 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 741.790828 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.564339 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 729.183569 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.156707 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.692881 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.842835 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.358540 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.802159 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 729.064575 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.790568 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 724.575567 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.947020 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.626362 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 737.922695 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 699.235935 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 721.338024 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.309263 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.774731 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.513618 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 726.991577 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 736.485595 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.657748 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.568459 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.342512 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.041802 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.241376 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 732.459298 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 727.569810 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.680282 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.708803 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.049333 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 733.975272 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.629368 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.679146 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.481217 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.931549 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 740.853754 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.047104 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.428769 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.513964 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.191174 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 734.807604 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.239026 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.820364 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.254486 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 728.308570 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.702627 Actual update 4300 of 5000, Stored update 4300 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 = 703.815863 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 725.806987 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 731.401713 Actual update 4100 of 5000, Stored update 4100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 703.439306 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.102330 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.722286 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 726.676744 Burning in for 100 iterations out of 500 -2 * Loglike = 722.359177 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 738.472612 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 = 707.084628 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.722208 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 727.235934 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 724.434071 Burning in for 150 iterations out of 500 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 707.037461 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 730.359324 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.510972 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.928683 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.233291 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.260302 Burning in for 100 iterations out of 500 -2 * Loglike = 724.463996 Burning in for 200 iterations out of 500 -2 * Loglike = 707.528547 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 728.185650 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.136506 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 737.588531 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 727.981181 Burning in for 250 iterations out of 500 -2 * Loglike = 709.983679 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.761632 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.278665 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.212359 Burning in for 150 iterations out of 500 -2 * Loglike = 701.483856 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 732.175167 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 729.108409 Burning in for 300 iterations out of 500 -2 * Loglike = 712.000016 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.262022 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 692.880708 Burning in for 200 iterations out of 500 -2 * Loglike = 733.270924 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.150616 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 727.591892 Burning in for 350 iterations out of 500 -2 * Loglike = 724.076594 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 708.520015 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.826777 Burning in for 250 iterations out of 500 -2 * Loglike = 715.404758 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 736.341203 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 732.189427 Burning in for 400 iterations out of 500 -2 * Loglike = 702.834492 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 721.869042 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.100228 Burning in for 300 iterations out of 500 -2 * Loglike = 711.108584 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 710.472330 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 727.683516 Burning in for 450 iterations out of 500 -2 * Loglike = 741.231949 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 697.104791 Burning in for 350 iterations out of 500 -2 * Loglike = 722.416895 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.761162 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.767114 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 727.293052 Burning in for 500 iterations out of 500 -2 * Loglike = 731.177039 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.820482 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 728.935797 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.101495 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 716.684121 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 726.100941 -2 * Loglike = 699.649172 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 735.556004 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 727.667819 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.468784 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.603072 Burning in for 450 iterations out of 500 -2 * Loglike = 714.619302 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.086941 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 734.230278 Actual update 4600 of 5000, Stored update 4600 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.019943 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.935095 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.356324 Burning in for 500 iterations out of 500 -2 * Loglike = 718.376212 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 708.970544 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.000607 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.103505 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 711.940639 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 719.786883 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.800227 -2 * Loglike = 700.546527 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 743.159469 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 699.521158 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 731.614463 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.972963 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 719.949699 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 = 701.782309 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.980793 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 729.437746 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 722.605540 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.698619 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.969056 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.918430 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.118671 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.554804 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 729.317866 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 731.386866 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.959346 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 703.325317 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.013837 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 722.706464 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 725.534388 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.948705 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 692.372580 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 733.784273 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.006034 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 740.003171 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 730.254822 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.118677 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.077752 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.555647 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.569166 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 735.028085 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 727.445920 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.463202 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 700.674506 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 728.285729 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.191015 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 732.105740 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 723.343085 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.834426 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.151408 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 723.631528 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.337233 Actual update 4150 of 5000, Stored update 4150 of 5000 /nogui option ignored -2 * Loglike = 730.188165 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 723.044870 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.973902 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.471292 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.840791 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.428799 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 725.729310 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.396837 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 697.387688 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.106417 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.582998 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 695.478515 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.273771 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 = 704.634132 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.491929 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.261022 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 725.627583 Actual update 650 of 5000, Stored update 650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 725.769855 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 701.329408 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.215376 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.023701 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 728.035211 Burning in for 100 iterations out of 500 -2 * Loglike = 722.393364 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 724.816684 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.655733 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 695.353802 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.783035 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 725.112006 Burning in for 150 iterations out of 500 -2 * Loglike = 737.177993 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.594329 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 704.634047 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.612490 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.854573 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 727.835771 Burning in for 200 iterations out of 500 -2 * Loglike = 724.464953 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 733.434589 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 701.773512 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.455802 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.526727 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.39 S.D. = 3.0046 S.E.M. = 0.042492 ECHO 0 Execution completed -2 * Loglike = 699.602393 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.452455 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 731.639276 Burning in for 250 iterations out of 500 -2 * Loglike = 723.438803 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.173432 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 705.539401 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 704.546837 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.781732 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.890005 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.418271 Burning in for 300 iterations out of 500 -2 * Loglike = 705.447430 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.045493 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 721.034375 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 733.857225 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.280796 Burning in for 350 iterations out of 500 -2 * Loglike = 722.431788 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.844911 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.484376 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.192290 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 728.936228 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 732.496001 Burning in for 400 iterations out of 500 -2 * Loglike = 737.252885 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.465949 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.478345 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.238839 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 731.240282 Burning in for 450 iterations out of 500 -2 * Loglike = 725.258880 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 728.994838 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.437823 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.240709 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.074685 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 728.046336 Burning in for 500 iterations out of 500 -2 * Loglike = 726.986115 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.311430 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.720897 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.907828 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 728.819305 -2 * Loglike = 701.453197 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 726.304563 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 711.520845 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 729.126303 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.631787 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 727.134133 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.860992 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 = 700.660283 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 725.368659 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.517323 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 727.659325 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 732.77 S.D. = 4.1587 S.E.M. = 0.058812 ECHO 0 Execution completed -2 * Loglike = 705.206104 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 731.043620 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 = 732.509789 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.707269 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.044320 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.407963 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 712.486692 Actual update 3000 of 5000, Stored update 3000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 727.737485 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 728.289669 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 728.294138 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.994450 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.398087 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 702.940856 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.291944 Burning in for 100 iterations out of 500 -2 * Loglike = 731.858251 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.484184 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.351965 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 730.546575 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.820190 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 706.528291 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.002459 Burning in for 150 iterations out of 500 -2 * Loglike = 739.093209 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 726.385703 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 727.127308 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.319437 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.508739 Burning in for 200 iterations out of 500 -2 * Loglike = 701.415207 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 728.444467 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 738.689934 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 722.773892 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.076337 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.175354 Burning in for 250 iterations out of 500 -2 * Loglike = 704.457428 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 742.036592 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 726.662214 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 722.529099 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.108805 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 715.500304 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 730.989671 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.210880 Burning in for 300 iterations out of 500 -2 * Loglike = 729.504788 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 724.592829 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.602714 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.258126 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 737.031285 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.936841 Burning in for 350 iterations out of 500 -2 * Loglike = 725.018694 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 727.372877 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.228268 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 722.783827 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.282907 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.960675 Burning in for 400 iterations out of 500 -2 * Loglike = 696.812075 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 728.715829 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 729.503689 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 723.935774 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 699.878749 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.005555 Burning in for 450 iterations out of 500 -2 * Loglike = 703.047716 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 733.132951 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 726.249786 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored -2 * Loglike = 726.914443 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.630707 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.640253 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 702.692594 Burning in for 500 iterations out of 500 -2 * Loglike = 721.954910 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 729.792873 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 727.868884 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.738035 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.853938 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 703.557359 -2 * Loglike = 724.137668 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 725.447727 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.293329 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 730.253621 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.686259 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 724.698197 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 = 721.777609 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.763253 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 722.938236 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.221561 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 724.904979 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 725.132750 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.027720 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 726.384213 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 720.167629 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.657411 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.24 S.D. = 2.4583 S.E.M. = 0.034766 ECHO 0 Execution completed -2 * Loglike = 723.958331 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 700.937996 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.631345 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.318160 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 719.709521 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 734.327845 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.320764 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.636947 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.258937 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 720.798582 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 727.325640 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.320089 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 731.839080 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.062959 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.397837 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 729.445101 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.360610 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.172241 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 725.695407 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.777993 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.000364 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 720.940412 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 735.766836 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.099684 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.178348 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.270279 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.100292 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 730.378330 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 735.945011 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.931314 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 727.632944 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 720.936480 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 730.452812 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 727.753963 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.347575 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 725.860023 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.408520 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.420954 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 734.593444 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 735.082552 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 697.490252 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 727.491632 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.629212 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.092962 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 729.055961 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 726.731651 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.932737 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.980926 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 728.321863 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.342937 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 720.855552 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 728.841003 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.647353 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.197819 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.272023 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 739.398607 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 723.819096 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 734.412813 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 696.978195 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.749836 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.904246 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 727.033456 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 733.099060 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 730.034727 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.744364 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.547554 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 702.329669 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 726.228290 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.182342 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.050805 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 735.849288 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.117999 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 695.488498 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.934692 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 730.109095 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.783919 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 736.833146 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.599710 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.391530 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 730.777330 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 735.398488 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.967452 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 739.560395 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 = 703.730949 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.612733 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 734.132714 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 724.309302 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 735.698631 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 703.745126 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.171360 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.155417 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 729.244457 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 729.300280 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 734.743478 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 709.496271 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.440824 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 726.945283 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 727.498210 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 737.437066 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.897493 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.916817 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 697.003819 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 729.729735 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.295486 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.318768 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.227669 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.119668 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.618387 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.306940 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 735.973428 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 739.657840 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 709.385181 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 729.981793 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.774842 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.588184 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.906334 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 726.725052 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.971148 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 696.847970 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 726.699571 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.020180 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 724.183605 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.786302 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 729.008528 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 735.870139 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.226178 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.457643 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.307965 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.949711 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 733.999430 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 729.022212 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.812891 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 727.141900 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.324804 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.395442 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 725.337196 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 721.317353 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.047693 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.180196 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 727.695207 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.365569 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 724.367179 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 733.187217 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.564379 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.724932 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.155918 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 724.723065 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 728.966434 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.436518 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 736.272824 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.075828 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.417182 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 730.192417 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.691935 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.496347 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 726.281661 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.612657 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.214570 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 725.170747 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 722.395826 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.019563 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 730.698592 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.148826 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.604423 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.567904 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 728.720474 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 731.293628 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 736.640944 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.090019 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.321599 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 735.676664 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 723.501266 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.941833 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.102759 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 727.504749 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 725.792201 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 701.607417 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.887697 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 727.536237 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 703.253144 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 738.012528 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.379165 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 729.381155 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.406046 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.445127 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 733.299107 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 723.300385 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.013231 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.141037 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 723.384830 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 727.408341 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.947256 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.265393 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 723.744036 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 725.214327 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.709812 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 733.566862 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.720173 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 730.053910 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.531017 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 703.848473 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 735.896697 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.243393 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 733.061561 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.302239 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 734.577565 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.630885 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 733.932397 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.418057 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 732.190579 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.229245 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 744.659795 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.777471 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 727.432483 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.519782 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 731.068950 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 710.948004 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 727.974088 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 696.738309 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 723.000215 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.353513 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 737.914457 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.199813 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.039351 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 738.026946 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.174913 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.037161 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 734.333305 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 720.133967 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 726.13 S.D. = 4.9807 S.E.M. = 0.070437 ECHO 0 Execution completed -2 * Loglike = 700.385695 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.22 S.D. = 5.6536 S.E.M. = 0.079954 ECHO 0 Execution completed -2 * Loglike = 697.542597 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 736.967486 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.372296 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.709622 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 725.781985 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.965754 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.772830 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.199633 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 724.857036 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 728.006436 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.449051 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.685878 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 729.597058 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 727.968972 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.104687 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.827944 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 746.775628 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.998963 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 728.008544 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 733.647524 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.268129 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 698.496076 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.979723 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 733.828242 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.252640 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 724.343979 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.350604 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 728.979118 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.617684 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.496082 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 729.031174 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.253372 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.393812 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 727.030724 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 729.301164 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.717776 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.175610 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 736.418960 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 725.471226 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.766878 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.590712 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 731.696167 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 733.028123 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.439849 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.700031 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 735.060828 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 724.279213 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.766060 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.464207 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.764723 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 727.247529 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.498422 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.162623 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 729.043243 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 732.576948 Actual update 4850 of 5000, Stored update 4850 of 5000 /nogui option ignored -2 * Loglike = 703.864367 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.713614 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 730.748866 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.412499 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.998442 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 732.058428 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.949544 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.764914 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 725.016603 Actual update 4950 of 5000, Stored update 4950 of 5000 /nogui option ignored -2 * Loglike = 722.654820 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.088518 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 734.123195 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.035631 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 732.768430 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.509805 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 728.940964 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 702.185951 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 733.069918 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.213351 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 729.857519 Actual update 3800 of 5000, Stored update 3800 of 5000 ECHO 0 -2 * Loglike = 700.127796 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 734.961524 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.906559 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 741.770644 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.666496 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 738.020105 Actual update 3950 of 5000, Stored update 3950 of 5000 ECHO 0 -2 * Loglike = 698.399699 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 727.681805 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.680404 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.570742 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 734.092102 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.635126 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 730.485341 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.765303 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 726.000182 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.749681 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 723.956740 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.697963 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 739.261140 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.086470 Actual update 3700 of 5000, Stored update 3700 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 = 723.825058 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 729.08 S.D. = 4.6567 S.E.M. = 0.065855 ECHO 0 Execution completed -2 * Loglike = 736.132566 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.482133 Actual update 3750 of 5000, Stored update 3750 of 5000 /nogui option ignored -2 * Loglike = 701.716707 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 731.695413 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.580199 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 737.633327 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 725.948154 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.152592 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 = 693.623824 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.25 S.D. = 4.5632 S.E.M. = 0.064534 ECHO 0 Execution completed -2 * Loglike = 731.423452 Actual update 4550 of 5000, Stored update 4550 of 5000 ECHO 0 -2 * Loglike = 703.287091 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 739.779961 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 703.387525 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 728.910751 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.146340 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 737.456625 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.808623 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 724.489154 Actual update 4750 of 5000, Stored update 4750 of 5000 /nogui option ignored -2 * Loglike = 704.047106 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.681233 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 726.780526 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.622256 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 728.282318 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 741.141261 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.982028 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 736.257895 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 736.057724 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.798041 Actual update 4350 of 5000, Stored update 4350 of 5000 ECHO 0 -2 * Loglike = 701.948115 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.085739 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 702.251446 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.671607 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 705.955934 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.573382 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.058888 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.639420 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.277598 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.919372 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.378006 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.210356 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 = 703.618600 Actual update 5000 of 5000, Stored update 5000 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 673.975736 Burning in for 100 iterations out of 500 -2 * Loglike = 723.602929 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 731.75 S.D. = 5.0446 S.E.M. = 0.071342 ECHO 0 Execution completed -2 * Loglike = 673.571547 Burning in for 150 iterations out of 500 -2 * Loglike = 674.126357 Burning in for 200 iterations out of 500 -2 * Loglike = 678.951997 Burning in for 250 iterations out of 500 -2 * Loglike = 679.429098 Burning in for 300 iterations out of 500 -2 * Loglike = 678.291393 Burning in for 350 iterations out of 500 -2 * Loglike = 680.778488 Burning in for 400 iterations out of 500 -2 * Loglike = 680.105868 Burning in for 450 iterations out of 500 -2 * Loglike = 678.875110 Burning in for 500 iterations out of 500 -2 * Loglike = 676.740272 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 = 675.877371 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 680.316928 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 671.640279 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.391659 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 673.877692 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.843167 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 670.827885 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.308830 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.914494 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.15 S.D. = 2.7994 S.E.M. = 0.039590 ECHO 0 Execution completed -2 * Loglike = 671.562106 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 671.761212 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 671.789705 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 675.088415 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 675.540259 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 671.082473 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 679.710693 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 674.843957 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 675.991845 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 673.935911 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.130628 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 677.339067 Actual update 1050 of 5000, Stored update 1050 of 5000 ECHO 0 -2 * Loglike = 677.431879 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 676.053774 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 676.740029 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 678.729859 Actual update 1250 of 5000, Stored update 1250 of 5000 ECHO 0 -2 * Loglike = 673.882280 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 678.182610 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 672.244602 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 678.574815 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 676.419744 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 675.801901 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 672.771789 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 680.729717 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 673.436046 Actual update 1700 of 5000, Stored update 1700 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 = 678.369302 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 671.869224 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 672.240095 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 674.153102 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 674.913100 Actual update 1950 of 5000, Stored update 1950 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 = 683.546584 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 681.770292 Actual update 2050 of 5000, Stored update 2050 of 5000 ECHO 0 -2 * Loglike = 677.785482 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 679.616238 Actual update 2150 of 5000, Stored update 2150 of 5000 /nogui option ignored -2 * Loglike = 677.454984 Actual update 2200 of 5000, Stored update 2200 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 = 674.190539 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 722.468137 Burning in for 100 iterations out of 500 -2 * Loglike = 719.212934 Burning in for 150 iterations out of 500 -2 * Loglike = 676.306516 Actual update 2300 of 5000, Stored update 2300 of 5000 /nogui option ignored -2 * Loglike = 721.698892 Burning in for 200 iterations out of 500 -2 * Loglike = 680.186286 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 717.796186 Burning in for 250 iterations out of 500 -2 * Loglike = 687.641618 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 724.799821 Burning in for 300 iterations out of 500 -2 * Loglike = 676.117848 Actual update 2450 of 5000, Stored update 2450 of 5000 ECHO 0 -2 * Loglike = 676.787872 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.892785 Burning in for 350 iterations out of 500 ECHO 0 -2 * Loglike = 679.185530 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.894089 Burning in for 400 iterations out of 500 -2 * Loglike = 680.095896 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 724.436003 Burning in for 450 iterations out of 500 -2 * Loglike = 681.565646 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 678.126841 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.107794 Burning in for 500 iterations out of 500 -2 * Loglike = 675.925080 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 = 725.131182 -2 * Loglike = 680.432678 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 = 679.878110 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 676.633972 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 725.805318 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 677.088824 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 725.943490 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 675.901829 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 721.768640 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 674.938962 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 725.839102 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 674.414463 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 674.446721 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 723.540115 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 734.926634 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 675.463052 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 674.675066 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.958521 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 = 722.536852 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 = 679.616488 Actual update 3300 of 5000, Stored update 3300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 722.152503 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.313798 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 718.701210 Burning in for 100 iterations out of 500 -2 * Loglike = 719.841359 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 675.073870 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 722.724992 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.782069 Burning in for 150 iterations out of 500 -2 * Loglike = 678.114496 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 718.844586 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.945207 Burning in for 200 iterations out of 500 -2 * Loglike = 675.584488 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.372096 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.212588 Burning in for 250 iterations out of 500 -2 * Loglike = 679.013877 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 717.378906 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.306611 Burning in for 300 iterations out of 500 -2 * Loglike = 671.969097 Actual update 3600 of 5000, Stored update 3600 of 5000 ECHO 0 -2 * Loglike = 724.549003 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.452174 Burning in for 350 iterations out of 500 -2 * Loglike = 673.939243 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.167249 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 717.619677 Burning in for 400 iterations out of 500 -2 * Loglike = 675.493591 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 726.590028 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 682.588186 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 722.592071 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.194333 Burning in for 450 iterations out of 500 -2 * Loglike = 673.549960 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.535031 Burning in for 500 iterations out of 500 -2 * Loglike = 727.962874 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.175823 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 714.603074 -2 * Loglike = 679.191876 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.498155 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.992812 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 722.503202 Actual update 1100 of 5000, Stored update 1100 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 = 680.379527 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 721.347459 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.799174 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 677.455360 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.189220 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.447426 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 675.300547 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.596454 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 684.301009 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.429105 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.473971 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 674.907937 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 715.229102 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 725.906348 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 672.866713 Actual update 4250 of 5000, Stored update 4250 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 = 710.764109 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 722.834547 Actual update 1400 of 5000, Stored update 1400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 679.318972 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 723.400043 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.943921 Burning in for 100 iterations out of 500 -2 * Loglike = 725.271324 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 677.294626 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 724.719456 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.452910 Burning in for 150 iterations out of 500 -2 * Loglike = 705.900684 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.567856 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 703.937055 Burning in for 200 iterations out of 500 -2 * Loglike = 721.595239 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.054195 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 687.065107 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.666557 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 705.621492 Burning in for 250 iterations out of 500 -2 * Loglike = 712.421309 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 725.127269 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 678.447467 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.576999 Burning in for 300 iterations out of 500 -2 * Loglike = 708.965676 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.701060 Burning in for 350 iterations out of 500 -2 * Loglike = 722.672367 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 679.060693 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 711.464902 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 711.530485 Burning in for 400 iterations out of 500 -2 * Loglike = 725.827199 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 680.603783 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.287582 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.692898 Burning in for 450 iterations out of 500 -2 * Loglike = 704.142098 Burning in for 500 iterations out of 500 -2 * Loglike = 717.826537 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 709.411698 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 677.772049 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.172428 -2 * Loglike = 721.316097 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.688275 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 679.846468 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.897336 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.161548 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 673.392425 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 = 723.357407 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 708.042452 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 706.655174 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 723.001061 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 675.136767 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.449473 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.610552 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.332564 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.710363 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.913581 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.367557 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 719.367275 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 716.919676 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.234948 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 681.396188 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.583551 Actual update 2150 of 5000, Stored update 2150 of 5000 /nogui option ignored -2 * Loglike = 720.713262 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.930382 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 677.688318 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 724.864880 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.416688 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.064636 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 674.159023 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.527620 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 723.855082 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.557969 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.318839 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 724.693602 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.386158 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.903441 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.947145 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.667943 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.390755 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.206800 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 718.240119 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.376100 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.345425 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.889857 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.148634 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 722.413268 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.295343 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.548210 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.236376 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.287940 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.648367 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 728.202550 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 723.743885 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.508814 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 723.086646 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.510927 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 709.747412 Actual update 800 of 5000, Stored update 800 of 5000 ECHO 0 -2 * Loglike = 721.992386 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 719.672086 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.033744 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.272078 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.137110 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.001001 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 726.307526 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.246286 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.383632 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 719.691466 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.915076 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.933359 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.810216 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.794715 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 725.844040 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.500596 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 709.029025 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 722.023387 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.959033 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 709.133014 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 721.842126 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.781243 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.308105 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.961652 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.106987 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.139058 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 722.251818 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 707.623321 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 709.974698 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 723.121734 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.816825 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 723.654873 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.785622 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.982268 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.465492 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.498992 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 724.645934 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.034127 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.796177 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 721.464761 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.275797 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.918715 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 724.383724 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.374857 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 715.451481 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.314511 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 721.427806 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 721.415629 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.016870 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 721.665830 Actual update 3550 of 5000, Stored update 3550 of 5000 /nogui option ignored -2 * Loglike = 710.554063 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 709.240416 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.934297 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.334409 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.001895 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.975227 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.883361 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.880051 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 719.921009 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 702.921516 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.972677 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 729.754676 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.590693 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 714.600009 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 721.005677 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 703.938583 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.674131 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.568392 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.358342 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.130499 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 727.577929 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.679058 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.226696 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 723.918612 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.701953 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.332565 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 724.631903 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.718382 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.625786 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.630237 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 712.695090 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.904098 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 723.524754 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.650619 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 725.455237 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.163729 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 711.091176 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.419263 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 705.515963 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.343682 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.758711 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.873070 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 709.431071 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 725.589068 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.960983 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.551155 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 721.029437 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 717.208452 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 725.715439 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 725.763547 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.312571 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.301688 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 725.536636 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 705.045754 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.256618 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 722.717164 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.330026 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.589145 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 726.784276 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.894206 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.014114 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 725.287613 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.488492 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.278963 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.443919 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 723.658503 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.981303 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.628042 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 725.180202 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 706.179489 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 709.519370 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.114772 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 710.056244 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.441671 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 722.162264 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.286502 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.323927 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.944374 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.948947 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.669508 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 726.547115 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.690761 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 722.493675 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.792847 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 731.650529 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.802463 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.833776 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 728.230983 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.610587 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 714.131060 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 706.236171 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.397078 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.790171 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.089129 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 = 717.017434 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... Burning in for 50 iterations out of 500 -2 * Loglike = 707.438662 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... Burning in for 50 iterations out of 500 -2 * Loglike = 710.153517 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 683.850593 Burning in for 100 iterations out of 500 -2 * Loglike = 707.991826 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 679.916140 Burning in for 100 iterations out of 500 -2 * Loglike = 681.041152 Burning in for 150 iterations out of 500 -2 * Loglike = 708.382670 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.913950 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 680.267310 Burning in for 150 iterations out of 500 -2 * Loglike = 721.691286 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 680.744636 Burning in for 200 iterations out of 500 -2 * Loglike = 715.167218 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.055252 Burning in for 200 iterations out of 500 -2 * Loglike = 712.181877 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 681.459836 Burning in for 250 iterations out of 500 -2 * Loglike = 716.727794 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.961038 Burning in for 300 iterations out of 500 -2 * Loglike = 682.302808 Burning in for 250 iterations out of 500 -2 * Loglike = 702.794868 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 717.365363 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 706.924132 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.714553 Burning in for 300 iterations out of 500 -2 * Loglike = 684.740007 Burning in for 350 iterations out of 500 -2 * Loglike = 709.330214 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.691394 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.321478 Burning in for 350 iterations out of 500 -2 * Loglike = 688.984626 Burning in for 400 iterations out of 500 -2 * Loglike = 717.035525 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.796246 Burning in for 400 iterations out of 500 -2 * Loglike = 708.752731 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.741618 Burning in for 450 iterations out of 500 -2 * Loglike = 715.859772 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 685.168556 Burning in for 450 iterations out of 500 -2 * Loglike = 686.949258 Burning in for 500 iterations out of 500 -2 * Loglike = 708.233952 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 684.363929 Burning in for 500 iterations out of 500 -2 * Loglike = 685.979557 -2 * Loglike = 683.231529 -2 * Loglike = 725.037210 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.063636 Actual update 3600 of 5000, Stored update 3600 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 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.811568 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.949167 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.507755 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 680.511807 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.101240 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.878727 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 672.941062 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 677.62 S.D. = 4.5014 S.E.M. = 0.063659 ECHO 0 Execution completed -2 * Loglike = 723.643290 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.25 S.D. = 2.4353 S.E.M. = 0.034441 ECHO 0 Execution completed -2 * Loglike = 686.208323 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.529648 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.598000 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.294376 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 679.059564 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 716.657672 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.266017 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.057360 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored -2 * Loglike = 710.860669 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 686.452571 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 688.840814 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.824281 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.919110 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 682.121862 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 679.567128 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.602974 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.096126 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.276654 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.521183 Actual update 3950 of 5000, Stored update 3950 of 5000 ECHO 0 -2 * Loglike = 678.101949 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 678.337470 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 709.329520 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.609675 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 689.404478 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.017993 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 680.293295 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 681.252018 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 705.976017 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 678.955461 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 679.347418 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.789475 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 680.459926 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.076308 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 704.668289 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 681.973870 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 703.393010 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 680.959719 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 682.081755 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.599784 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.483310 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 678.841256 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 677.159509 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.323452 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 688.187964 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.208156 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.128538 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 681.313426 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 709.918895 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 682.087908 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 684.776693 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 682.924054 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.859953 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 681.195915 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 682.388887 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.226747 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 693.812031 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.175094 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.713039 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 688.067150 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 683.146602 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.995743 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.687851 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.370513 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.080652 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.168346 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.743265 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.761462 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 683.149716 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 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 = 706.163290 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.931830 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.498571 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 710.136753 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 729.302487 Burning in for 100 iterations out of 500 -2 * Loglike = 685.642010 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.147435 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.20 S.D. = 5.2228 S.E.M. = 0.073861 ECHO 0 Execution completed -2 * Loglike = 678.989791 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.896248 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 724.272672 Burning in for 150 iterations out of 500 -2 * Loglike = 682.295379 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.988616 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 683.704514 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 723.596357 Burning in for 200 iterations out of 500 -2 * Loglike = 687.387688 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 710.059207 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.274047 Burning in for 250 iterations out of 500 -2 * Loglike = 689.559750 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 732.586475 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 = 683.075227 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.520439 Actual update 1450 of 5000, Stored update 1450 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 728.471004 Burning in for 350 iterations out of 500 -2 * Loglike = 694.383649 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.088564 Burning in for 100 iterations out of 500 -2 * Loglike = 694.088492 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 734.000849 Burning in for 400 iterations out of 500 -2 * Loglike = 683.504948 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.768216 Burning in for 150 iterations out of 500 -2 * Loglike = 691.312945 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.580499 Burning in for 450 iterations out of 500 -2 * Loglike = 681.909268 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 689.593953 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 705.426284 Burning in for 200 iterations out of 500 -2 * Loglike = 731.435362 Burning in for 500 iterations out of 500 -2 * Loglike = 686.001176 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.422809 Burning in for 250 iterations out of 500 -2 * Loglike = 730.498041 -2 * Loglike = 682.500145 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 711.523714 Burning in for 300 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.748673 Burning in for 350 iterations out of 500 -2 * Loglike = 690.025732 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 681.923301 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 726.829317 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 713.320520 Burning in for 400 iterations out of 500 -2 * Loglike = 693.070035 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 730.867589 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.988631 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 710.458946 Burning in for 450 iterations out of 500 -2 * Loglike = 677.688157 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 722.114737 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 683.755917 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 711.813877 Burning in for 500 iterations out of 500 -2 * Loglike = 679.863583 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 728.179917 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.112627 -2 * Loglike = 690.502370 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.740674 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 725.566616 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 = 682.455105 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 678.611083 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 740.738251 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 708.895401 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 687.113712 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 682.056020 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.852577 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.288138 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 685.714780 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 682.392950 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.975635 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 728.290408 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 683.508840 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.484596 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.937794 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.298912 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 727.499051 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.024673 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.778395 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.534053 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 723.160682 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.324799 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.41 S.D. = 4.0342 S.E.M. = 0.057052 ECHO 0 Execution completed -2 * Loglike = 720.879072 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 682.610519 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 683.176033 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.190898 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 690.907524 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.454802 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 723.941874 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 684.508573 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 688.195052 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 718.306079 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 724.181227 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.771629 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.682082 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.611650 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 721.868309 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 682.201420 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.324805 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 704.272935 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 731.554161 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 683.979812 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.829569 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.398361 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.189888 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.995257 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 682.415045 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.492009 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 698.180853 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 728.641750 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.531111 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.917847 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 725.919881 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.653097 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.153266 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.401832 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 733.339101 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.751818 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 681.397438 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.815356 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 733.804420 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 681.796917 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.054738 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 706.228316 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 730.815591 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 687.867134 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.035679 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.073314 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 725.243762 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.525057 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.110713 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 728.591486 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 707.430961 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.228546 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 681.903974 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 728.315638 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.544360 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 683.665198 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.096842 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 725.073509 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 712.847332 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.267534 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.063485 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 688.414678 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 730.771650 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.803761 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 682.238229 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.856886 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.119880 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 727.081083 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 680.757667 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.857207 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 740.352296 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 683.990597 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.428128 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.495852 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.374130 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.925866 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 681.602310 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.482202 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 723.155958 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 682.809323 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.265982 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 726.571790 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 683.349928 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 680.202937 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.562889 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 732.996542 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 686.987939 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 682.953312 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.503116 Actual update 1500 of 5000, Stored update 1500 of 5000 /nogui option ignored -2 * Loglike = 726.431766 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 695.702449 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 682.492974 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.920486 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.293333 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 681.593455 Actual update 3400 of 5000, Stored update 3400 of 5000 /nogui option ignored -2 * Loglike = 683.691213 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.451536 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.615139 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.307399 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 683.175449 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.740282 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 679.786588 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.243195 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 687.874434 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.115108 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 684.945483 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 725.607436 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.555651 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.985162 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 681.152508 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 726.194834 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.932835 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 679.710974 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 737.575012 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 680.952681 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 702.013661 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 728.747782 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 682.957598 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 687.205092 Actual update 3450 of 5000, Stored update 3450 of 5000 ECHO 0 -2 * Loglike = 725.248683 Actual update 2100 of 5000, Stored update 2100 of 5000 ECHO 0 -2 * Loglike = 687.746132 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.941303 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 683.381340 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 681.835838 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.116938 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 685.994954 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.839434 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 717.021797 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 680.173529 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 727.535546 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 697.262105 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.419742 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 679.958882 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 727.986495 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.992622 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.691602 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.003593 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 687.744510 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 728.837940 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 707.348297 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 690.335695 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 690.068877 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.257456 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.636423 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 728.440738 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.803112 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 679.556976 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.446060 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 680.991902 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.090452 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 726.564965 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 708.729179 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 = 686.901124 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 678.874266 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 742.292015 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.877197 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 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.172475 Actual update 4300 of 5000, Stored update 4300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.139158 Actual update 3950 of 5000, Stored update 3950 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 724.996173 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 720.579626 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 681.346561 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 689.250275 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.422364 Burning in for 100 iterations out of 500 -2 * Loglike = 693.415125 Burning in for 100 iterations out of 500 -2 * Loglike = 705.289141 Actual update 2450 of 5000, Stored update 2450 of 5000 /nogui option ignored -2 * Loglike = 686.238127 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.449904 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 679.800555 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.649550 Burning in for 150 iterations out of 500 -2 * Loglike = 693.736396 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 726.716850 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.913537 Burning in for 150 iterations out of 500 -2 * Loglike = 705.928960 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 683.825220 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 685.830253 Burning in for 200 iterations out of 500 -2 * Loglike = 694.715593 Burning in for 200 iterations out of 500 -2 * Loglike = 686.737035 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.725146 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.751791 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.996247 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.069418 Burning in for 250 iterations out of 500 -2 * Loglike = 688.345901 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.445634 Burning in for 250 iterations out of 500 -2 * Loglike = 724.865401 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.129498 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.406650 Actual update 4200 of 5000, Stored update 4200 of 5000 /nogui option ignored -2 * Loglike = 693.249390 Burning in for 300 iterations out of 500 -2 * Loglike = 686.255980 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.225974 Burning in for 300 iterations out of 500 -2 * Loglike = 729.447808 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.815608 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 680.800249 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 689.917052 Burning in for 350 iterations out of 500 -2 * Loglike = 692.339703 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.031153 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 696.385865 Burning in for 350 iterations out of 500 -2 * Loglike = 708.506544 Actual update 2700 of 5000, Stored update 2700 of 5000 ECHO 0 -2 * Loglike = 687.921976 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.710840 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.068176 Burning in for 400 iterations out of 500 -2 * Loglike = 731.898364 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.655261 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.368507 Burning in for 400 iterations out of 500 -2 * Loglike = 684.943687 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.387562 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.179878 Burning in for 450 iterations out of 500 -2 * Loglike = 689.223449 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 728.986229 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.642358 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.993571 Burning in for 450 iterations out of 500 -2 * Loglike = 682.993287 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.654351 Burning in for 500 iterations out of 500 -2 * Loglike = 687.287010 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 726.311970 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.366253 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 696.411768 Burning in for 500 iterations out of 500 -2 * Loglike = 691.406948 -2 * Loglike = 686.325736 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 684.880743 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 731.053338 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 708.216207 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.569211 -2 * Loglike = 689.785241 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.127103 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 = 710.512233 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 725.347120 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 687.016970 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.117327 Actual update 4950 of 5000, Stored update 4950 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 = 706.058132 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 688.025677 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.118844 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.125231 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 682.869639 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.469852 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.950674 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.322870 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 726.672274 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.448190 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.701810 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.772146 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 683.600927 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 726.821540 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 681.522894 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 706.530865 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.823092 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.584311 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 726.609031 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 682.931845 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.168965 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 725.643929 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.473841 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.962540 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.694061 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.528354 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 730.452895 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 694.148047 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.695564 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 688.271351 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.744226 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 738.506813 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.102756 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.594474 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.131556 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.330148 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 724.038463 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.867291 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 706.677720 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 685.063713 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 = 693.171707 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 731.358751 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 686.549669 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.141201 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.057811 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 684.325478 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 707.288582 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 727.083371 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.037785 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.450279 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 709.639352 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 728.560216 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 686.395336 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.075113 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.986274 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 = 724.120969 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 686.643061 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.737657 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.991713 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.169311 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.161394 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 705.429350 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 723.840828 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.213055 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.069711 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 713.049160 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 732.035149 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.459204 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 704.510705 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.736171 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.981036 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.218250 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.211012 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.483813 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 687.208621 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.945337 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 731.351539 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.899954 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.241591 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 731.405597 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.003841 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.741916 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 692.053798 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 734.523669 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 679.314679 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.36 S.D. = 5.2155 S.E.M. = 0.073759 ECHO 0 Execution completed -2 * Loglike = 712.818757 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 693.849721 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.159997 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 733.501002 Actual update 4000 of 5000, Stored update 4000 of 5000 ECHO 0 -2 * Loglike = 704.827066 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.907510 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.483549 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.638646 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.653926 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.746312 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.539666 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 726.771908 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.362657 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 680.255599 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.88 S.D. = 3.9205 S.E.M. = 0.055444 ECHO 0 Execution completed -2 * Loglike = 702.277599 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.804568 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.095563 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.122490 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.772101 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.823967 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.659848 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.287729 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.081766 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.237264 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 707.392884 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 686.592289 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 699.698175 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 723.843451 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 711.839754 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.223527 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 732.609549 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.876990 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 692.727665 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 725.597515 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 688.326339 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 708.790002 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.971204 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 732.513950 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.044563 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 714.316051 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 728.792201 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.576047 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.669157 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 727.056072 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.908992 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.632479 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.074380 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 734.645747 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.098907 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.987383 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.731873 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 729.128215 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.742359 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.407782 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 687.907691 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 725.855358 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.387711 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.484115 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 683.824673 Actual update 1800 of 5000, Stored update 1800 of 5000 /nogui option ignored -2 * Loglike = 731.130833 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 = 705.425176 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.196351 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.338904 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 724.571991 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.944242 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.441634 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.762473 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 725.584447 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.008802 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.378433 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 687.641380 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 728.549687 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 707.949763 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.930407 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 732.563508 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 695.765007 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.410125 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.950749 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.564438 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.302786 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.168927 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 731.191959 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.905811 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.089892 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.858184 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.468892 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.393094 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.172624 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.632260 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.314744 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.296456 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 686.068510 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.065978 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 702.585981 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.935655 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.123248 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.391944 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.499430 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.261680 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.656245 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 693.787840 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.335086 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 694.410396 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 = 700.890197 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 686.926224 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.950398 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.211745 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.517452 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 688.010691 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.703560 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.267515 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.837109 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 723.341760 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 728.40 S.D. = 4.0918 S.E.M. = 0.057867 ECHO 0 Execution completed -2 * Loglike = 703.605246 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 708.82 S.D. = 4.1188 S.E.M. = 0.058248 ECHO 0 Execution completed -2 * Loglike = 703.648749 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.450031 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 688.651260 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.557967 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.359769 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.041623 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.706206 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.674054 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.374807 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.924269 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.023894 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.889189 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 687.486897 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.367440 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 687.814530 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.800007 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 687.013160 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.704276 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.069133 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.274240 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.290259 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.360286 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.305936 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.482540 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.248350 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.820180 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 690.683103 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 694.433330 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 684.671110 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 685.085938 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.733928 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.579917 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 686.158041 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.260550 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.967443 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.627269 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 685.947428 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.252611 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.124965 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.293061 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.539556 Actual update 3500 of 5000, Stored update 3500 of 5000 /nogui option ignored -2 * Loglike = 695.881154 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.083445 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.166487 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.769296 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.122844 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.150990 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.444160 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 686.890464 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.438161 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.283278 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 684.794667 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 693.170650 Actual update 4300 of 5000, Stored update 4300 of 5000 ECHO 0 -2 * Loglike = 711.107348 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 688.260789 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 695.872591 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.086347 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.065587 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.359654 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.272354 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 689.741755 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.414503 Actual update 3950 of 5000, Stored update 3950 of 5000 /nogui option ignored -2 * Loglike = 694.615164 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.285174 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 692.027191 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 703.853821 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.311469 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 692.748922 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.650009 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.780069 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 685.925134 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 693.776901 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 686.954956 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 690.982868 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.092603 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 707.033116 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.608887 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.077879 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 688.298197 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 = 698.170533 Actual update 4400 of 5000, Stored update 4400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 689.762014 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.830347 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.110078 Burning in for 100 iterations out of 500 -2 * Loglike = 695.636150 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.610145 Burning in for 150 iterations out of 500 -2 * Loglike = 719.352757 Burning in for 200 iterations out of 500 -2 * Loglike = 700.558106 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.283594 Burning in for 250 iterations out of 500 -2 * Loglike = 702.086109 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.704509 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.764826 Burning in for 300 iterations out of 500 -2 * Loglike = 704.273759 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 725.552316 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 691.995618 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 729.102284 Burning in for 400 iterations out of 500 -2 * Loglike = 715.590242 Burning in for 450 iterations out of 500 -2 * Loglike = 694.763253 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.119786 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 718.193998 -2 * Loglike = 696.615412 Actual update 4850 of 5000, Stored update 4850 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.144895 Actual update 4900 of 5000, Stored update 4900 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 = 705.083197 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.168588 Burning in for 100 iterations out of 500 -2 * Loglike = 715.687735 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.553431 Actual update 5000 of 5000, Stored update 5000 of 5000 ECHO 0 -2 * Loglike = 727.320347 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 693.358388 Burning in for 150 iterations out of 500 -2 * Loglike = 684.816833 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.46 S.D. = 3.9963 S.E.M. = 0.056516 ECHO 0 Execution completed -2 * Loglike = 722.588206 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 695.331921 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 727.215760 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.456554 Burning in for 250 iterations out of 500 -2 * Loglike = 721.989622 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.987080 Burning in for 300 iterations out of 500 -2 * Loglike = 728.190603 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.198644 Burning in for 350 iterations out of 500 -2 * Loglike = 712.089958 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.484594 Burning in for 400 iterations out of 500 -2 * Loglike = 719.202776 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 696.814630 Burning in for 450 iterations out of 500 /nogui option ignored -2 * Loglike = 717.977573 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.890392 Burning in for 500 iterations out of 500 -2 * Loglike = 713.009884 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.911424 -2 * Loglike = 720.555331 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 713.372140 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.324079 Actual update 700 of 5000, Stored update 700 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.533441 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.32 S.D. = 4.9649 S.E.M. = 0.070214 ECHO 0 Execution completed -2 * Loglike = 710.992880 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.910961 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.034636 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 726.441116 Actual update 800 of 5000, Stored update 800 of 5000 ECHO 0 -2 * Loglike = 719.543527 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 691.853913 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.584145 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 720.932092 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.168444 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.280355 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.156456 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 726.886213 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.189924 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 723.901078 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.806111 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 = 724.217775 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.931631 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.920839 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 691.231409 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.708126 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.910167 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 717.258879 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.343852 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 714.231151 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 722.490725 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.798021 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.681292 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.327010 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.613816 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 724.426667 Actual update 1450 of 5000, Stored update 1450 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.751739 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.249076 Actual update 850 of 5000, Stored update 850 of 5000 /nogui option ignored -2 * Loglike = 715.845206 Burning in for 100 iterations out of 500 -2 * Loglike = 697.305855 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.909114 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 711.042568 Burning in for 150 iterations out of 500 -2 * Loglike = 692.874814 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 716.498235 Burning in for 200 iterations out of 500 -2 * Loglike = 723.102202 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.925867 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.937493 Burning in for 250 iterations out of 500 ECHO 0 /nogui option ignored -2 * Loglike = 695.077926 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.174467 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 712.541977 Burning in for 300 iterations out of 500 -2 * Loglike = 695.320863 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.044863 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.523281 Burning in for 350 iterations out of 500 -2 * Loglike = 695.824239 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.394915 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 720.785861 Burning in for 400 iterations out of 500 -2 * Loglike = 695.402056 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.852823 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.716215 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 719.219720 Burning in for 450 iterations out of 500 /nogui option ignored -2 * Loglike = 715.050461 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.507809 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 715.590106 Burning in for 500 iterations out of 500 -2 * Loglike = 724.933042 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.318263 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.595510 -2 * Loglike = 715.653420 Actual update 1950 of 5000, Stored update 1950 of 5000 ECHO 0 -2 * Loglike = 696.956367 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.184132 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.746926 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 = 695.913266 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 719.996168 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.219286 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.953243 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.312438 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 715.691362 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 715.944817 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.224957 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.677273 Actual update 2150 of 5000, Stored update 2150 of 5000 ECHO 0 -2 * Loglike = 719.589285 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.562357 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.793480 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 717.769059 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.045602 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 721.407747 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 727.076740 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.989326 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.096707 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.607771 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 = 692.960485 Actual update 1800 of 5000, Stored update 1800 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 717.072888 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 716.710612 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.220912 Burning in for 100 iterations out of 500 -2 * Loglike = 693.333709 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 733.141051 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.268784 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.279849 Burning in for 150 iterations out of 500 -2 * Loglike = 725.400044 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.052093 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.293959 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.883737 Burning in for 200 iterations out of 500 -2 * Loglike = 722.253737 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.190283 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 722.094729 Burning in for 250 iterations out of 500 -2 * Loglike = 715.389390 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.344859 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.686474 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 724.374076 Burning in for 300 iterations out of 500 -2 * Loglike = 712.817244 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 729.515471 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 725.671177 Burning in for 350 iterations out of 500 -2 * Loglike = 698.286687 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.362329 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.099711 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 730.730176 Burning in for 400 iterations out of 500 -2 * Loglike = 693.405011 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.764902 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 708.837052 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.613513 Burning in for 450 iterations out of 500 -2 * Loglike = 715.373910 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.374563 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 717.883935 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.886281 Burning in for 500 iterations out of 500 -2 * Loglike = 723.694742 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.235807 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.426197 -2 * Loglike = 697.115695 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.190761 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.877555 Actual update 900 of 5000, Stored update 900 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 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.953671 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 694.735087 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.207823 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.801784 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 723.927132 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 721.363523 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.477168 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 727.140312 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.900262 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.026275 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.407315 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.844283 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 = 717.217723 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.871763 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.525712 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.009839 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.048758 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.114037 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.678750 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 724.964724 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 723.097729 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 713.041657 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.782231 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.122449 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 716.471547 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.520783 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.589276 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 719.165013 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.526083 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.693366 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.800151 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 723.053664 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 700.548134 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 725.700806 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.278363 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.751469 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 697.488992 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 724.759957 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.981291 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 718.391935 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.976734 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.769494 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 723.819882 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.974176 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 719.275459 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 698.177990 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.714612 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.872077 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 714.880405 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.740212 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.779703 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 715.343786 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 716.413751 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.723900 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.808756 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 716.021478 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.630299 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 725.810403 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.326304 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.910821 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 712.616896 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.385283 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 697.678167 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.194571 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 712.577681 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.988703 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.964676 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 719.444200 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 727.784867 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.836384 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.748281 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 709.328631 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.188873 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 728.798438 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.425729 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.044688 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 720.758256 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 723.417996 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.045154 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.221214 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 728.737864 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.471084 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.435869 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 723.825236 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 725.579593 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.630929 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.803733 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 725.094029 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 716.804055 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.198412 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.968561 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 720.190113 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.381156 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 712.111286 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 716.209935 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.929075 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.962215 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.833548 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 725.342669 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 722.407258 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 724.731924 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.252240 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 716.173764 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 726.300007 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 721.558468 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 722.925459 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.993353 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.322478 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.295058 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 724.080001 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 715.004434 Actual update 4350 of 5000, Stored update 4350 of 5000 /nogui option ignored -2 * Loglike = 718.055885 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.031696 Actual update 3550 of 5000, Stored update 3550 of 5000 /nogui option ignored -2 * Loglike = 725.551236 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 725.957600 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.653691 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 691.627248 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 726.843506 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.866158 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 712.425997 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 -2 * Loglike = 693.735891 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.078810 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.518628 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.372632 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 692.957053 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 725.220803 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 723.689584 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.904505 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.752854 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.305758 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 722.521095 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 715.975053 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.962221 Actual update 3800 of 5000, Stored update 3800 of 5000 ECHO 0 -2 * Loglike = 717.530915 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 726.781083 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.837162 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.482801 Actual update 3850 of 5000, Stored update 3850 of 5000 ECHO 0 -2 * Loglike = 720.822771 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.161572 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.186729 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 722.547372 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 719.013862 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 722.428510 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.988639 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.994185 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.073004 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.212755 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 710.734137 Actual update 2750 of 5000, Stored update 2750 of 5000 ECHO 0 -2 * Loglike = 724.844401 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 719.487286 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 693.901409 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 719.502288 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 720.404789 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.305694 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.016106 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 726.388681 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.359282 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.436474 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 717.413077 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 724.099548 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 722.522745 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.477993 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 717.094366 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.923962 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.414449 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.771888 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.382568 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.637536 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.181465 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 724.396405 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.340575 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.616634 Actual update 4300 of 5000, Stored update 4300 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... 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.569538 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 725.150603 Actual update 2250 of 5000, Stored update 2250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.873019 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.597009 Actual update 3200 of 5000, Stored update 3200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 725.581072 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 = 678.269068 Burning in for 100 iterations out of 500 -2 * Loglike = 701.809384 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.892695 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.304948 Burning in for 100 iterations out of 500 -2 * Loglike = 723.112966 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 672.295881 Burning in for 150 iterations out of 500 -2 * Loglike = 704.137745 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 718.689206 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.015518 Burning in for 150 iterations out of 500 -2 * Loglike = 673.212135 Burning in for 200 iterations out of 500 -2 * Loglike = 723.983101 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.985827 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.185831 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.061126 Burning in for 200 iterations out of 500 -2 * Loglike = 676.503354 Burning in for 250 iterations out of 500 -2 * Loglike = 713.693880 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 724.955933 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 698.894741 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.226878 Burning in for 250 iterations out of 500 -2 * Loglike = 718.499169 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 677.881454 Burning in for 300 iterations out of 500 -2 * Loglike = 701.187597 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 722.905661 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 707.608090 Burning in for 300 iterations out of 500 -2 * Loglike = 714.916451 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 676.379721 Burning in for 350 iterations out of 500 -2 * Loglike = 691.919535 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.985814 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 712.278126 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 = 717.021465 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.627358 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.973378 Burning in for 400 iterations out of 500 -2 * Loglike = 724.221552 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.45 S.D. = 4.5775 S.E.M. = 0.064736 ECHO 0 Execution completed -2 * Loglike = 674.127175 Burning in for 450 iterations out of 500 -2 * Loglike = 729.516062 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.091028 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.377252 Burning in for 400 iterations out of 500 -2 * Loglike = 693.026260 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 678.995649 Burning in for 500 iterations out of 500 -2 * Loglike = 725.012976 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.234667 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.348845 Burning in for 450 iterations out of 500 -2 * Loglike = 695.310454 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 675.986821 -2 * Loglike = 724.633149 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.463813 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.311324 Burning in for 500 iterations out of 500 -2 * Loglike = 698.316201 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.648831 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 723.356385 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.472150 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.188488 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.637758 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.861206 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 676.511757 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 726.507917 Actual update 2850 of 5000, Stored update 2850 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.271408 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.771482 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 675.906502 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.431706 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 721.273826 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.443916 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 670.454718 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.767980 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 726.472793 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.959378 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 717.369069 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 678.239551 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 722.744279 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 711.775121 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.166993 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 716.018264 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 673.800679 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 715.653429 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.741733 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.038139 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.196946 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.991976 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.684452 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 723.442559 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 669.288832 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 716.868536 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 717.814975 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.826125 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.313350 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.521289 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 674.341110 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.212640 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.041695 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 673.878599 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.178694 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.815630 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 670.089215 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.381376 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 672.322596 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 701.800107 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.114262 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 672.468356 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 726.262635 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.501257 Actual update 4350 of 5000, Stored update 4350 of 5000 /nogui option ignored -2 * Loglike = 716.141097 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 671.728349 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.748007 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.957723 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.892714 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 670.173118 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.221690 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.37 S.D. = 5.6906 S.E.M. = 0.080477 ECHO 0 Execution completed -2 * Loglike = 720.002197 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.054042 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.573288 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.435101 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 679.889510 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.974962 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.459515 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.191811 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 671.543255 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.809367 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 718.805171 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 677.226748 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.588332 Actual update 4550 of 5000, Stored update 4550 of 5000 ECHO 0 -2 * Loglike = 714.373918 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 720.679760 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.530784 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 671.748202 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.718971 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.231243 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.810439 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 679.138744 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.366132 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.768331 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.587523 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 678.014280 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.082453 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.979796 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 678.264772 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.305094 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 715.429113 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.426417 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 673.811908 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 729.039270 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.111689 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.634896 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 675.945496 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 725.514146 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 706.570516 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.441779 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 676.809924 Actual update 1250 of 5000, Stored update 1250 of 5000 ECHO 0 -2 * Loglike = 725.723188 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.852096 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 716.885189 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 674.823107 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 718.465206 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.704098 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.288870 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.359114 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 720.298234 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.873911 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 724.600832 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 675.159566 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 699.993479 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 682.093593 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 724.603700 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 673.443732 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 706.668137 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.798818 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 677.054823 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 712.231266 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... Burning in for 50 iterations out of 500 -2 * Loglike = 713.474343 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 726.627887 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 674.021478 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 699.910533 Burning in for 100 iterations out of 500 -2 * Loglike = 712.029120 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 721.618855 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 678.706945 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.671191 Burning in for 150 iterations out of 500 -2 * Loglike = 711.641775 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.802819 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 673.245760 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.877933 Burning in for 200 iterations out of 500 -2 * Loglike = 674.747171 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.817324 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.530056 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.240921 Burning in for 250 iterations out of 500 -2 * Loglike = 671.281563 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.676544 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.607781 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.857763 Burning in for 300 iterations out of 500 -2 * Loglike = 725.303068 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 671.980754 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 = 700.670681 Burning in for 350 iterations out of 500 -2 * Loglike = 703.472385 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 726.748052 Actual update 4600 of 5000, Stored update 4600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 704.903659 Burning in for 400 iterations out of 500 -2 * Loglike = 715.622756 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.008303 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 672.888450 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 673.136804 Burning in for 100 iterations out of 500 -2 * Loglike = 720.608237 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.046810 Burning in for 450 iterations out of 500 -2 * Loglike = 699.043746 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 672.845013 Burning in for 150 iterations out of 500 -2 * Loglike = 672.554875 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 720.619576 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.219097 Burning in for 500 iterations out of 500 -2 * Loglike = 702.781737 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 672.506562 Burning in for 200 iterations out of 500 -2 * Loglike = 721.971313 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.629546 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.841527 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.12 S.D. = 2.9516 S.E.M. = 0.041742 ECHO 0 Execution completed -2 * Loglike = 701.053750 -2 * Loglike = 703.605607 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 673.757393 Burning in for 250 iterations out of 500 -2 * Loglike = 721.333604 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 678.968926 Actual update 2050 of 5000, Stored update 2050 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.793210 Burning in for 300 iterations out of 500 -2 * Loglike = 704.668339 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 728.998265 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 673.793547 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 700.086057 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 675.565821 Burning in for 350 iterations out of 500 -2 * Loglike = 723.083942 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.314680 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 676.763356 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 682.265541 Burning in for 400 iterations out of 500 -2 * Loglike = 707.021225 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 726.232888 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.389130 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 676.780749 Burning in for 450 iterations out of 500 -2 * Loglike = 674.720603 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.836214 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.371044 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 677.091216 Burning in for 500 iterations out of 500 -2 * Loglike = 674.602320 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.894015 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.405459 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 678.503653 -2 * Loglike = 698.570924 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 675.530586 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.839295 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.096847 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 = 676.618913 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.722402 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.264794 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 674.342166 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.152883 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.920725 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.897039 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.970683 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.886026 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 672.563996 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.403006 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 671.110076 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 714.409601 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 671.098887 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 674.298547 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 674.997212 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.664204 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.965440 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 674.146550 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 679.045696 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.559648 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.357384 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 676.906672 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.139963 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.104597 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 708.573244 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.928197 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 677.487218 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 670.176652 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.754600 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.183082 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 675.613327 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 681.810243 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.236213 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.372670 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.152408 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 673.180657 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.162091 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.253963 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.660784 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 671.756114 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 720.112886 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.34 S.D. = 3.2123 S.E.M. = 0.045429 ECHO 0 Execution completed -2 * Loglike = 704.322083 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 675.094093 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.625025 Actual update 950 of 5000, Stored update 950 of 5000 /nogui option ignored -2 * Loglike = 671.472727 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 677.272862 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.355915 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 713.970886 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 672.315692 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 673.378280 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.023211 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.043354 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 677.062052 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 673.314940 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.366850 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.602755 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 670.253194 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 675.824147 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.578068 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.990893 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 678.208337 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 673.503015 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.409928 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.320961 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 703.174449 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 673.054764 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 674.905613 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.172973 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.603758 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 674.593695 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 676.071209 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 706.869809 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 704.640939 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 678.424348 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 676.305961 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 700.216905 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.282979 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.742422 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.573933 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 682.659902 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 671.524949 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.056147 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.214134 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 676.044363 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.153593 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.768174 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 700.984053 Actual update 1550 of 5000, Stored update 1550 of 5000 ECHO 0 -2 * Loglike = 677.017650 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.501551 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 677.526572 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.855141 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 675.152295 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 711.261746 Actual update 3300 of 5000, Stored update 3300 of 5000 /nogui option ignored -2 * Loglike = 677.190313 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 676.205496 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 706.511681 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 714.077033 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 671.627154 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.589207 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 676.417963 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.110957 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 671.532869 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.905488 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 673.997856 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.397943 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.930416 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 671.658379 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 676.788728 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.824620 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.116449 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 681.224568 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.617221 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 675.139459 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 698.859537 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 670.463301 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.560930 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.209915 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 698.740403 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 677.288199 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 676.448108 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.763095 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.340325 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 680.532290 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.198821 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 671.701318 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 687.904259 Actual update 3950 of 5000, Stored update 3950 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 = 705.622779 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.675867 Actual update 3750 of 5000, Stored update 3750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 679.918426 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 674.377423 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 = 701.863099 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.158120 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.274928 Burning in for 100 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 670.860719 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 678.655520 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.641552 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 712.559472 Burning in for 150 iterations out of 500 -2 * Loglike = 700.198159 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 674.272843 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 681.001697 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 687.671935 Burning in for 100 iterations out of 500 -2 * Loglike = 715.052192 Burning in for 200 iterations out of 500 -2 * Loglike = 717.421029 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.551752 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 682.043773 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 675.409052 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 682.366942 Burning in for 150 iterations out of 500 -2 * Loglike = 711.215136 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.415177 Burning in for 250 iterations out of 500 -2 * Loglike = 699.301550 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 670.953858 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 673.667359 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.697496 Burning in for 200 iterations out of 500 -2 * Loglike = 708.712022 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.446141 Burning in for 300 iterations out of 500 -2 * Loglike = 701.626825 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 672.197164 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 672.338797 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.294438 Burning in for 350 iterations out of 500 -2 * Loglike = 688.883745 Burning in for 250 iterations out of 500 -2 * Loglike = 704.985103 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.613122 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 674.677729 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.665805 Burning in for 400 iterations out of 500 -2 * Loglike = 674.664984 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 686.915495 Burning in for 300 iterations out of 500 -2 * Loglike = 704.243701 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.953593 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 674.610769 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 717.272027 Burning in for 450 iterations out of 500 -2 * Loglike = 675.978056 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 712.501231 Burning in for 500 iterations out of 500 -2 * Loglike = 714.599723 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.055882 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.950951 Burning in for 350 iterations out of 500 -2 * Loglike = 685.591246 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.285052 -2 * Loglike = 681.024012 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.544677 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.383146 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.763607 Burning in for 400 iterations out of 500 -2 * Loglike = 675.535778 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.900717 Actual update 4450 of 5000, Stored update 4450 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 = 706.306991 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.422606 Actual update 4250 of 5000, Stored update 4250 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 = 671.167490 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.127540 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.326266 Burning in for 450 iterations out of 500 -2 * Loglike = 708.342329 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 673.454362 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 676.542941 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.509363 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 715.942518 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.044012 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 707.601989 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 679.103479 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.130486 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 688.629388 Burning in for 500 iterations out of 500 -2 * Loglike = 679.089998 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.660140 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 707.623945 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 676.297550 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.550801 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 685.220485 -2 * Loglike = 680.064883 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 717.827209 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.289748 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 672.085337 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.203189 Actual update 2750 of 5000, Stored update 2750 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 = 676.537119 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 729.309427 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.474227 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 706.382846 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.997298 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.586649 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 713.972975 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 674.317257 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 672.597721 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.193560 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 690.987543 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.053334 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 685.815738 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.356093 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.207341 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 673.544771 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 687.370941 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.941440 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 674.045986 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.622164 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.047156 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 678.358945 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 711.267592 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.507360 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 673.753662 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.796977 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 711.552961 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 679.984379 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 687.393725 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 703.314233 Actual update 4750 of 5000, Stored update 4750 of 5000 ECHO 0 -2 * Loglike = 677.724465 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.499648 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 704.394360 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 672.857839 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.274121 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.249992 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.481156 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.115671 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 678.115660 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.723780 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 704.496943 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 685.368089 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 673.303479 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.450223 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.349182 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 677.674552 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 688.060454 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.745463 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.447063 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.920664 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 675.343272 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.273451 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.953970 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.895112 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.138657 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 682.659417 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 680.416147 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.581947 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 687.796316 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.122320 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.299331 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 681.829699 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 684.841244 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.579916 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 673.632181 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.876616 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 683.187647 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 678.513142 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 679.681283 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 709.755470 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.214073 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 675.152104 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.980247 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.538303 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 675.457632 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.512889 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 675.499165 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 = 685.924512 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 701.673413 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 675.289226 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.146792 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 674.844618 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.361838 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.427876 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.739190 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 673.971486 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.259391 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 702.241430 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.184057 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.921543 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 715.096284 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.991383 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 683.997982 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 671.551370 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 676.37 S.D. = 4.0885 S.E.M. = 0.057819 ECHO 0 Execution completed -2 * Loglike = 696.878170 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 717.224453 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.948900 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.202347 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.181329 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.56 S.D. = 4.8889 S.E.M. = 0.069139 ECHO 0 Execution completed -2 * Loglike = 718.177525 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 672.744010 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.792758 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 687.685555 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.473742 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 678.953302 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.196498 Actual update 3750 of 5000, Stored update 3750 of 5000 /nogui option ignored -2 * Loglike = 715.893601 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 688.317443 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 674.571023 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 718.182401 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.917961 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 679.339181 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.448794 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 714.576335 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 705.334216 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 671.075750 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 685.163328 Actual update 1200 of 5000, Stored update 1200 of 5000 ECHO 0 -2 * Loglike = 703.350160 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.264457 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 670.893994 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.362306 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.793559 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.864375 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 672.266837 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 684.986741 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.142938 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 716.020791 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 679.720981 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.212059 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.418732 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.648713 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 675.412036 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.789363 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.963078 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 681.954228 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 686.501154 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.065328 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.620371 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 682.582239 Actual update 3900 of 5000, Stored update 3900 of 5000 /nogui option ignored -2 * Loglike = 699.297953 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.108385 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.453777 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 688.099481 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.821419 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 680.971703 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.519860 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.706897 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.726215 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 673.105046 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.211403 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.243989 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 674.270214 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.174576 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 716.281558 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.048741 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.390947 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 711.103287 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 684.098135 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.587673 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 688.831388 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 714.340541 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 673.240669 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 706.716261 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.422045 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.351229 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 672.042918 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.965707 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 690.754566 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 = 715.901150 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.069816 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 685.205041 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.633150 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.678857 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.187186 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 687.129906 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.575991 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 673.171697 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 714.590228 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.620679 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 688.900224 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 680.569012 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.721815 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.385462 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 683.930504 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 676.937542 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 717.142774 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.076261 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 689.501126 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 674.472289 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.501737 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.769716 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.681805 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 686.784026 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.130687 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.680859 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 679.889707 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 684.734253 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 700.750667 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 721.025533 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 675.594796 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.184318 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.695336 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 686.016527 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 679.086258 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.933809 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 683.221704 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 672.260369 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.293011 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 689.655480 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 676.333745 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.032557 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.045296 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 675.697083 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.975588 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 686.010237 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 675.428874 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 683.817042 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.573135 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.629325 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 687.638878 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.253699 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.116988 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.736951 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.804058 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.625752 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.562722 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.145221 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.21 S.D. = 4.2815 S.E.M. = 0.060549 ECHO 0 Execution completed -2 * Loglike = 716.461543 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.280711 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 685.885421 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.323310 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.696536 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 688.346671 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.058738 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.544640 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.721931 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.481198 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.406276 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 686.638096 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 720.084802 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 680.855900 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.372266 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.186035 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 687.469801 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 671.368321 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 676.85 S.D. = 4.2195 S.E.M. = 0.059672 ECHO 0 Execution completed -2 * Loglike = 712.255715 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 682.089736 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.262082 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 682.830317 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.300767 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 687.399560 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 718.187925 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 -2 * Loglike = 692.351583 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.556229 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 714.288313 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.406527 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.675146 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 686.782501 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.612318 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.918428 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.561201 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.956416 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.128218 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 687.379226 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.624820 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.971704 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 688.870295 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 713.230812 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 684.423262 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.136871 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 695.381096 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.264094 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.757707 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 683.442329 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 716.325236 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.169252 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 686.182557 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.198638 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.028330 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 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 = 689.846535 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.293717 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 728.790746 Burning in for 100 iterations out of 500 -2 * Loglike = 687.570034 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 720.523382 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.400323 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 724.149670 Burning in for 150 iterations out of 500 -2 * Loglike = 715.099479 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 732.115734 Burning in for 200 iterations out of 500 -2 * Loglike = 685.732145 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.691818 Actual update 4550 of 5000, Stored update 4550 of 5000 /nogui option ignored -2 * Loglike = 725.114292 Burning in for 250 iterations out of 500 -2 * Loglike = 683.521698 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 719.325675 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 687.646668 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 730.542784 Burning in for 300 iterations out of 500 -2 * Loglike = 689.156650 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 727.990016 Burning in for 350 iterations out of 500 -2 * Loglike = 715.359808 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 684.149714 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 733.966996 Burning in for 400 iterations out of 500 -2 * Loglike = 718.044716 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.705685 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 733.792149 Burning in for 450 iterations out of 500 -2 * Loglike = 714.678708 Actual update 4750 of 5000, Stored update 4750 of 5000 ECHO 0 -2 * Loglike = 729.040045 Burning in for 500 iterations out of 500 -2 * Loglike = 686.615424 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.106321 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.296202 Actual update 4400 of 5000, Stored update 4400 of 5000 /nogui option ignored -2 * Loglike = 735.061380 -2 * Loglike = 714.267206 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.446711 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 719.760875 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 = 688.543336 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.456942 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 687.973713 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 728.055180 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.453769 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.261369 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 736.475118 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 683.096521 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 688.925881 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 732.276537 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.876164 Actual update 4750 of 5000, Stored update 4750 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 736.123366 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 682.287715 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 734.458656 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 686.570843 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.451865 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 741.693783 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 688.011384 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 722.438037 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 685.546046 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 733.194318 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 728.182604 Actual update 500 of 5000, Stored update 500 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 = 724.868629 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 729.620461 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.071589 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 733.701587 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 721.476540 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 731.267055 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... -2 * Loglike = 715.546541 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.14 S.D. = 2.3846 S.E.M. = 0.033724 ECHO 0 Execution completed -2 * Loglike = 726.554382 Actual update 850 of 5000, Stored update 850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 694.271992 Burning in for 100 iterations out of 500 -2 * Loglike = 727.417098 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.404658 Burning in for 150 iterations out of 500 -2 * Loglike = 693.365269 Burning in for 200 iterations out of 500 -2 * Loglike = 731.044822 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 691.892783 Burning in for 250 iterations out of 500 -2 * Loglike = 694.042131 Burning in for 300 iterations out of 500 -2 * Loglike = 735.759321 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.919175 Burning in for 350 iterations out of 500 -2 * Loglike = 727.663922 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.704745 Burning in for 400 iterations out of 500 -2 * Loglike = 694.727320 Burning in for 450 iterations out of 500 -2 * Loglike = 730.016901 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.817689 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.87 S.D. = 3.0582 S.E.M. = 0.043249 ECHO 0 Execution completed -2 * Loglike = 727.288122 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 696.089624 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 727.770380 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.897147 -2 * Loglike = 727.100068 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 NEXT iteration 2 Convergence achieved 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 = 725.783853 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 697.607503 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 732.571541 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.863613 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 733.099739 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.070126 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 734.017701 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.273736 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 735.801088 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.997805 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 731.976829 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.893698 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 733.026518 Actual update 1600 of 5000, Stored update 1600 of 5000 ECHO 0 -2 * Loglike = 692.005579 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 734.864215 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 693.853130 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 733.454392 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 693.509210 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 736.107691 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.791267 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 721.751026 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.968332 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 731.186357 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.525169 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 734.220519 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 691.775665 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 730.509926 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.443332 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 737.705117 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.850646 Actual update 800 of 5000, Stored update 800 of 5000 /nogui option ignored -2 * Loglike = 731.124257 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.533111 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.230500 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 723.085412 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.294092 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.554120 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 732.326931 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.077956 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 = 734.568219 Actual update 2250 of 5000, Stored update 2250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.706073 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 734.995725 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.339568 Burning in for 100 iterations out of 500 -2 * Loglike = 694.231719 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 728.031781 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 718.464126 Burning in for 150 iterations out of 500 -2 * Loglike = 691.080949 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 730.912393 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 719.207150 Burning in for 200 iterations out of 500 -2 * Loglike = 693.906815 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 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.076219 Actual update 2450 of 5000, Stored update 2450 of 5000 ECHO 0 -2 * Loglike = 718.428458 Burning in for 250 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 692.518486 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 732.012184 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.372563 Burning in for 300 iterations out of 500 -2 * Loglike = 712.809039 Burning in for 100 iterations out of 500 -2 * Loglike = 728.599206 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 724.405606 Burning in for 350 iterations out of 500 -2 * Loglike = 710.291430 Burning in for 150 iterations out of 500 -2 * Loglike = 689.812471 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 738.220336 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.347451 Burning in for 400 iterations out of 500 -2 * Loglike = 712.450139 Burning in for 200 iterations out of 500 -2 * Loglike = 697.649877 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 727.402132 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 718.267710 Burning in for 450 iterations out of 500 -2 * Loglike = 716.945060 Burning in for 250 iterations out of 500 -2 * Loglike = 693.331156 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 727.867805 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 721.684714 Burning in for 500 iterations out of 500 -2 * Loglike = 710.750912 Burning in for 300 iterations out of 500 -2 * Loglike = 694.226948 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 725.124246 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.722076 -2 * Loglike = 713.532361 Burning in for 350 iterations out of 500 -2 * Loglike = 693.366494 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 736.913972 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.725043 Burning in for 400 iterations out of 500 -2 * Loglike = 729.593259 Actual update 2850 of 5000, Stored update 2850 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 = 692.915135 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.940146 Burning in for 450 iterations out of 500 -2 * Loglike = 730.548649 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 725.683671 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.764409 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.119190 Burning in for 500 iterations out of 500 -2 * Loglike = 734.838993 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 725.444740 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.706993 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 731.431469 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.143166 -2 * Loglike = 721.258607 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.830133 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 728.167114 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 725.747324 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.832410 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.112463 Actual update 3100 of 5000, Stored update 3100 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 = 721.090684 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 689.350245 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 728.163226 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.093635 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 728.290743 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.655275 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 726.347386 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.445538 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.131993 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 694.737680 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 732.894881 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.831719 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.924056 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.782276 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 733.778059 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 718.328388 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.729895 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 711.547833 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 734.224138 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.510587 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.207285 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.093670 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.291312 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.671027 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 722.339639 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 735.658671 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.200101 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 692.937852 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 716.938911 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 726.237093 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.614319 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 689.735633 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.445327 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.448360 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 729.683927 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.252555 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.776670 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.304134 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.285206 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 691.089857 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.468889 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.221629 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.687186 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.740194 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.057158 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.526672 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 724.146843 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.617212 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 727.074958 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.371000 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 730.404882 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.502395 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.372261 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.214748 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 731.350881 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.714147 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 726.952331 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.791152 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 733.417412 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 693.039665 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.192800 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.460028 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 738.207573 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 692.012373 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.578919 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.343516 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 733.683781 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.446042 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 716.624754 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.832380 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 733.703392 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.133062 Actual update 2650 of 5000, Stored update 2650 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 = 721.308056 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.463258 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 727.445025 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.601887 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 720.510518 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.053061 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 725.688955 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.123511 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.281581 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 712.329864 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 735.546825 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 696.981566 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 724.991938 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 713.147534 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 733.458256 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.175168 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 721.420103 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.714448 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.944679 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 723.304517 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.417563 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 715.284714 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.970595 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 736.663051 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 722.202492 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.348454 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.540487 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 730.799908 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 721.402340 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.246201 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 690.476785 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 730.750844 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.069851 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 712.187904 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.242341 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 732.628538 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 724.356186 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.394772 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 692.872313 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 726.270802 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 719.810587 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.098971 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.792772 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 736.832375 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.656012 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.311336 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 736.642184 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 693.819873 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 709.917385 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 716.531934 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.893278 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 728.600893 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.725480 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 720.952420 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 695.866486 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 733.380133 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.970622 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.318643 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 692.081157 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 724.190151 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.191600 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 717.185297 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.329930 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 727.729209 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 709.663843 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 720.129103 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.688618 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.702037 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.936764 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 723.233864 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.511055 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 737.922266 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.007474 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 721.408488 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.259292 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 733.146183 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.269331 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 720.221881 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.200483 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 734.869648 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 720.355406 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.342167 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.059064 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.020538 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.753563 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 701.330399 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.445148 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.242087 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 690.186248 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 716.246485 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 721.885437 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.989705 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.891905 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 726.514835 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.193072 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.598745 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.524884 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.381330 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 695.463021 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.565350 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.066648 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.555176 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 717.963013 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 719.519223 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.838878 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.712453 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 728.015486 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.941838 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.068345 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.950937 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.921909 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 720.212002 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.798677 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.052531 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 718.344458 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.850697 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.102062 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 724.493205 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.288386 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.517683 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.248354 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.980633 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.600760 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.855577 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 713.156965 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 724.731909 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.679365 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.252532 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.671542 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.024187 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.809571 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.015052 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.138293 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.009888 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 730.77 S.D. = 4.1055 S.E.M. = 0.058060 ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 716.880201 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.415063 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.804327 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.381495 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.009124 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.924428 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.674377 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 711.849163 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 690.743416 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.930532 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.221037 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 695.856598 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.161990 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 724.153781 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.715650 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.804421 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 727.299946 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 712.662297 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.868785 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.007399 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.011775 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.696198 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.927309 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 719.468889 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.432804 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 722.925874 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.759953 Actual update 4950 of 5000, Stored update 4950 of 5000 ECHO 0 -2 * Loglike = 721.346931 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.770798 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.370375 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 720.929452 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 -2 * Loglike = 713.732059 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.003789 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.189709 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.225752 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.932369 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 716.660862 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 730.021297 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.496064 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.390340 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.736066 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 719.379846 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.513959 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 727.108883 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 724.131772 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.406928 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 723.625251 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.960534 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.156159 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 714.229374 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.839470 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 718.956398 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 724.843153 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 724.095357 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.426220 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.684626 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 721.195008 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 711.666550 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.976444 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.546125 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 = 721.434604 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.344513 Actual update 4150 of 5000, Stored update 4150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 725.073636 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.726258 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.503901 Burning in for 100 iterations out of 500 -2 * Loglike = 725.456773 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.883265 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 688.815747 Burning in for 150 iterations out of 500 -2 * Loglike = 695.150913 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.18 S.D. = 2.6641 S.E.M. = 0.037677 ECHO 0 Execution completed -2 * Loglike = 722.622028 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 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.811013 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 690.387354 Burning in for 200 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 722.862171 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.358934 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.237483 Burning in for 250 iterations out of 500 -2 * Loglike = 695.999495 Burning in for 100 iterations out of 500 -2 * Loglike = 717.855791 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.840296 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.098435 Burning in for 300 iterations out of 500 -2 * Loglike = 691.263670 Burning in for 150 iterations out of 500 -2 * Loglike = 724.176489 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 717.775560 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.912072 Burning in for 350 iterations out of 500 -2 * Loglike = 692.046620 Burning in for 200 iterations out of 500 -2 * Loglike = 712.445558 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 722.184572 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 696.379470 Burning in for 400 iterations out of 500 -2 * Loglike = 694.911669 Burning in for 250 iterations out of 500 -2 * Loglike = 713.079793 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.462677 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.263066 Burning in for 450 iterations out of 500 -2 * Loglike = 717.513085 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 696.575167 Burning in for 300 iterations out of 500 -2 * Loglike = 689.427058 Burning in for 500 iterations out of 500 -2 * Loglike = 716.884809 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.424574 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.314070 Burning in for 350 iterations out of 500 -2 * Loglike = 692.521154 -2 * Loglike = 722.650475 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 722.481090 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.427993 Burning in for 400 iterations out of 500 -2 * Loglike = 723.399209 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 = 710.344752 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.337368 Burning in for 450 iterations out of 500 -2 * Loglike = 721.694831 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.118026 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 711.806232 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.365260 Burning in for 500 iterations out of 500 -2 * Loglike = 719.504562 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.190563 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 716.146293 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.985508 -2 * Loglike = 687.478390 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.513311 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.005519 Actual update 250 of 5000, Stored update 250 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.389865 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 690.068654 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.259506 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 729.100468 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.216861 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.347506 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 685.848134 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 689.494835 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.534010 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 685.855560 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.033423 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.037457 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.323494 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.511775 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.302847 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.692271 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 688.506912 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 692.526498 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.072537 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 686.730755 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 691.851789 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 692.474399 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.112950 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.184770 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 691.058550 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.402234 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.188887 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 703.072700 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.758286 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.734140 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.836012 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.470827 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 689.238089 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.176902 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.255701 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 723.767113 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 721.93 S.D. = 3.1329 S.E.M. = 0.044306 ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 690.864957 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.436539 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.427160 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.685080 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.311225 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.955745 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.993928 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.912854 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.266394 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.57 S.D. = 4.5187 S.E.M. = 0.063905 ECHO 0 Execution completed -2 * Loglike = 690.760293 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.933630 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.487269 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.065959 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.253175 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 693.119356 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 692.942622 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.993052 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.811410 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.428799 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.885111 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.980302 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.796940 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.095279 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.454451 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 693.453621 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.972440 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.126460 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 686.827653 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.188593 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 688.922200 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.498554 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 689.128279 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.349076 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.962529 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.718734 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.617356 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 691.582958 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.882905 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.966308 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.036327 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.612068 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.363041 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.317487 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.594663 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.345925 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.400669 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.917289 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.024464 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.916557 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 692.236513 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.409024 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.604581 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.769642 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.510632 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.482390 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.966935 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.542880 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.852657 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.221044 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.801102 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.292567 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.105548 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.282566 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.772908 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.250107 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.346521 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.698835 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.278385 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 693.588336 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 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.805901 Actual update 3050 of 5000, Stored update 3050 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 709.517174 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.337039 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 720.657703 Burning in for 100 iterations out of 500 -2 * Loglike = 688.662151 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.455720 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.324760 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.181282 Burning in for 150 iterations out of 500 -2 * Loglike = 693.292490 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.631082 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.896095 Burning in for 200 iterations out of 500 -2 * Loglike = 696.229569 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.669173 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.015686 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 722.024525 Burning in for 250 iterations out of 500 -2 * Loglike = 689.479209 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.914982 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.581088 Burning in for 300 iterations out of 500 -2 * Loglike = 691.664869 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.789670 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.588955 Burning in for 350 iterations out of 500 -2 * Loglike = 691.991896 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 695.132479 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.563587 Burning in for 400 iterations out of 500 -2 * Loglike = 695.037323 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.995762 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.798820 Burning in for 450 iterations out of 500 -2 * Loglike = 686.899191 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.782370 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 722.263184 Burning in for 500 iterations out of 500 -2 * Loglike = 689.777749 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.266778 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.245336 -2 * Loglike = 689.607305 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 694.751726 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.611790 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.983923 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 = 687.707168 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.098485 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 720.913105 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.553457 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 693.742341 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.943269 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.371872 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 692.712212 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.392189 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.929948 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.378361 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.576357 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.656978 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 694.388019 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.481134 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.630637 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.248644 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 730.715873 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.755893 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.634817 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 712.063231 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.782830 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 704.655471 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 720.976377 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.032082 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 691.939197 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.972061 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.269588 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 696.386203 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.269583 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.117979 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.997311 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.960266 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 714.335853 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.075157 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.836931 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.181075 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.668533 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 714.197155 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.449863 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.219935 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.888310 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 691.295004 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 691.679385 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 721.896760 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.776828 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.257309 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.528357 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.493099 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 689.248040 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.675696 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.229390 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.250120 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 714.995923 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.542842 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.451710 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 724.013296 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.864060 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 706.566216 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.184461 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.177829 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.383918 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 720.950404 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.618696 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 689.800901 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 717.032336 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 697.364346 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.180411 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 718.427807 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.085263 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.881905 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.892642 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.462865 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.110479 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.190931 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 691.186380 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 721.275676 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.854971 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.602939 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.031757 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.288127 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.971088 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.937365 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.867841 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.574336 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.595368 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 697.500966 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.744350 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.457931 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.462159 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.252275 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 715.274676 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 702.705946 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.941481 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.139273 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.901868 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.735729 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.725008 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.502838 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.408505 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 697.638178 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 715.442710 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.076725 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 727.310556 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.406100 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.258692 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.056286 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 687.567981 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.77 S.D. = 4.2235 S.E.M. = 0.059730 ECHO 0 Execution completed -2 * Loglike = 721.395275 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.684696 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 716.488093 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 717.506381 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.211628 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 729.118636 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 714.575680 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.390717 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.179162 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.626871 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 721.297434 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 720.814795 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.559376 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.650408 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 727.033115 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.106691 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 718.512178 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.160745 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 690.697253 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 695.45 S.D. = 4.1083 S.E.M. = 0.058100 ECHO 0 Execution completed -2 * Loglike = 715.714976 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 718.374527 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.083418 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.851596 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.789553 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.885374 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 729.023946 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.951686 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 720.683341 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.403287 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.395829 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.948768 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.342526 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.210593 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 723.964369 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.064731 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 716.961258 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 723.783063 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 731.483285 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.827086 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.146502 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.006438 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 724.220743 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 716.538130 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.908558 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.225661 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.673974 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 723.318396 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 728.449522 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.773289 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 719.623701 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 720.610818 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.982340 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 722.748053 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.095299 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.672288 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.825024 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 723.925194 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.120983 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 722.011647 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.381807 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 719.26 S.D. = 4.2335 S.E.M. = 0.059870 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 30.06 30 0.20 85 sigma2_u 8.18 10 -18.20 69 sigma2_e 39.50 40 -1.25 93 > cat("Simulation results using MCMC\n") Simulation results using MCMC > MCMC_results Mean_across_simus Actual Percent_bias Percent_interval_coverage beta0 30.02 30 0.07 89 sigma2_u 15.14 10 51.40 78 sigma2_e 40.81 40 2.03 96 > > # 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 78 sigma2_e 40.24 40 0.6 96 > > # Chapter learning outcomes . . . . . . . . . . . . . . . . . . . . . . . 96 > > > > > > ############################################################################ > > proc.time() user system elapsed 3.45 0.31 23.36