R version 3.6.3 (2020-02-29) -- "Holding the Windsock" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 (64-bit) 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. Natural language support but running in an English locale 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-2017 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.05/ To change this use: options(MLwiN_path="") > # MLwiN folder > mlwin <- getOption("MLwiN_path") > while (!file.access(mlwin, mode = 1) == 0) { + cat("Please specify the root MLwiN folder or the full path to the MLwiN executable:\n") + mlwin <- scan(what = character(0), sep = "\n") + mlwin <- gsub("\\", "/", mlwin, fixed = TRUE) + } > options(MLwiN_path = mlwin) > > # User's input if necessary > > # 8.3 Generating simulated datasets based on true values . . . . . . . . 102 > > # 8.4 Fitting the model to the simulated datasets . . . . . . . . . . . .106 > > pupil <- 1:108 > school <- c(rep(1, 18), rep(2, 18), rep(3, 18), rep(4, 18), rep(5, 18), rep(6, 18)) > cons <- rep(1, 108) > > ns <- 100 > IGLS_array <- MCMC_array <- array(, c(3, 2, ns)) > MCMC_median <- data.frame(RP2_var_Intercept = rep(0, ns), RP1_var_Intercept = rep(0, ns)) > CounterMCMC <- rep(0, 3) > Actual <- c(30, 10, 40) > > simu <- function(i) { + u_short <- rnorm(6, 0, sqrt(Actual[2])) + u <- rep(u_short, each = 18, len = 108) + e <- rnorm(108, 0, sqrt(Actual[3])) + resp <- Actual[1] * cons + u + e + indata <- data.frame(cbind(pupil, school, cons, resp)) + simModelIGLS <- runMLwiN(resp ~ 1 + (1 | school) + (1 | pupil), data = indata) + simModelMCMC <- runMLwiN(resp ~ 1 + (1 | school) + (1 | pupil), estoptions = list(EstM = 1), + data = indata) + + quantile25 <- c(quantile(simModelMCMC@chains[, "FP_Intercept"], 0.025), + quantile(simModelMCMC@chains[, "RP2_var_Intercept"], 0.025), + quantile(simModelMCMC@chains[, "RP1_var_Intercept"], 0.025)) + quantile975 <- c(quantile(simModelMCMC@chains[, "FP_Intercept"], 0.975), + quantile(simModelMCMC@chains[, "RP2_var_Intercept"], 0.975), + quantile(simModelMCMC@chains[, "RP1_var_Intercept"], 0.975)) + + list(MCMCarray=cbind(coef(simModelMCMC), diag(vcov(simModelMCMC))), + MCMCmed=c(median(simModelMCMC@chains[, "RP2_var_Intercept"]), + median(simModelMCMC@chains[, "RP1_var_Intercept"])), + IGLSarray=cbind(coef(simModelIGLS), diag(vcov(simModelIGLS))), + quantiles=cbind(quantile25, quantile975)) + } > > RNGkind("L'Ecuyer-CMRG") > set.seed(1) > if (!require(doParallel)) { + warning("doParallel library is not installed, simulations will be run in series") + for (i in 1:ns) { + r[[i]] <- simu(i) + } + } else { + cl <- makeCluster(detectCores(logical = FALSE)) + registerDoParallel(cl) + r <- foreach(i=1:ns, .packages="R2MLwiN") %dopar% { + simu(i) + } + + stopCluster(cl) + unregister <- function() { + env <- foreach:::.foreachGlobals + rm(list=ls(name=env), pos=env) + } + unregister() + } Loading required package: doParallel Loading required package: foreach Loading required package: iterators Loading required package: parallel /nogui option ignored ECHO 0 /nogui option ignored /nogui option ignored ECHO 0 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 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /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 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 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 for 50 iterations out of 500 ECHO 0 -2 * Loglike = 697.341583 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 696.507561 Burning in for 150 iterations out of 500 -2 * Loglike = 698.033354 Burning in for 200 iterations out of 500 -2 * Loglike = 699.945683 Burning in for 250 iterations out of 500 -2 * Loglike = 700.561652 Burning in for 300 iterations out of 500 -2 * Loglike = 698.965673 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 for 50 iterations out of 500 /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 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 for 50 iterations out of 500 -2 * Loglike = 704.511451 Burning in for 400 iterations out of 500 -2 * Loglike = 709.548237 Burning in for 100 iterations out of 500 -2 * Loglike = 721.431282 Burning in for 100 iterations out of 500 -2 * Loglike = 703.824525 Burning in for 150 iterations out of 500 -2 * Loglike = 703.393621 Burning in for 450 iterations out of 500 ECHO 0 ECHO 0 -2 * Loglike = 719.537127 Burning in for 150 iterations out of 500 -2 * Loglike = 705.017757 Burning in for 200 iterations out of 500 -2 * Loglike = 700.636979 Burning in for 500 iterations out of 500 -2 * Loglike = 708.960659 Burning in for 250 iterations out of 500 -2 * Loglike = 701.901278 -2 * Loglike = 718.492906 Burning in for 200 iterations out of 500 -2 * Loglike = 707.700430 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 = 721.465755 Burning in for 250 iterations out of 500 -2 * Loglike = 707.130117 Burning in for 350 iterations out of 500 -2 * Loglike = 700.707182 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 727.461662 Burning in for 300 iterations out of 500 -2 * Loglike = 713.033548 Burning in for 400 iterations out of 500 -2 * Loglike = 700.565935 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 741.757238 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 for 50 iterations out of 500 -2 * Loglike = 706.118139 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 for 50 iterations out of 500 -2 * Loglike = 708.309333 Burning in for 500 iterations out of 500 -2 * Loglike = 718.250006 Burning in for 100 iterations out of 500 -2 * Loglike = 727.022555 Burning in for 400 iterations out of 500 -2 * Loglike = 712.493396 Burning in for 150 iterations out of 500 -2 * Loglike = 695.142235 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.936769 -2 * Loglike = 689.967393 Burning in for 100 iterations out of 500 -2 * Loglike = 724.251046 Burning in for 450 iterations out of 500 -2 * Loglike = 715.243255 Burning in for 200 iterations out of 500 /nogui option ignored -2 * Loglike = 701.822929 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 = 686.107312 Burning in for 150 iterations out of 500 -2 * Loglike = 724.970706 Burning in for 500 iterations out of 500 -2 * Loglike = 718.105150 Burning in for 250 iterations out of 500 -2 * Loglike = 707.676349 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 697.656288 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.575428 Burning in for 200 iterations out of 500 -2 * Loglike = 723.373902 ECHO 0 -2 * Loglike = 715.978322 Burning in for 300 iterations out of 500 -2 * Loglike = 709.052391 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.826561 Burning in for 250 iterations out of 500 -2 * Loglike = 712.955934 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 = 716.181334 Burning in for 350 iterations out of 500 -2 * Loglike = 687.175390 Burning in for 300 iterations out of 500 -2 * Loglike = 703.345356 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 693.681411 Actual update 400 of 5000, Stored update 400 of 5000 /nogui option ignored -2 * Loglike = 721.041778 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.756442 Burning in for 400 iterations out of 500 -2 * Loglike = 689.064883 Burning in for 350 iterations out of 500 -2 * Loglike = 730.129572 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.041592 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 713.380738 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 for 50 iterations out of 500 -2 * Loglike = 717.368514 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.433404 Burning in for 100 iterations out of 500 -2 * Loglike = 718.171136 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.567630 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.015318 Burning in for 400 iterations out of 500 -2 * Loglike = 718.706917 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 726.844149 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.914854 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.069269 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.711320 Burning in for 450 iterations out of 500 -2 * Loglike = 680.892204 Burning in for 150 iterations out of 500 -2 * Loglike = 719.427111 Burning in for 500 iterations out of 500 -2 * Loglike = 719.993791 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.794029 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.181870 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 690.511964 Burning in for 500 iterations out of 500 -2 * Loglike = 680.666606 Burning in for 200 iterations out of 500 -2 * Loglike = 709.892281 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 734.781607 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.839884 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.894857 /nogui option ignored -2 * Loglike = 690.037933 -2 * Loglike = 678.949733 Burning in for 250 iterations out of 500 -2 * Loglike = 717.473082 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 700.129947 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 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 for 50 iterations out of 500 -2 * Loglike = 704.958001 Actual update 500 of 5000, Stored update 500 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 684.235567 Burning in for 300 iterations out of 500 ECHO 0 -2 * Loglike = 694.217531 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 683.469748 Burning in for 350 iterations out of 500 -2 * Loglike = 704.059235 Burning in for 100 iterations out of 500 -2 * Loglike = 725.926391 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.084363 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 693.320897 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 728.664656 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 686.882093 Burning in for 400 iterations out of 500 -2 * Loglike = 701.198722 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.983430 Burning in for 150 iterations out of 500 -2 * Loglike = 714.643646 Actual update 150 of 5000, Stored update 150 of 5000 /nogui option ignored -2 * Loglike = 708.987284 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.669464 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.473492 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 682.167895 Burning in for 450 iterations out of 500 -2 * Loglike = 698.048252 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.408227 Burning in for 200 iterations out of 500 -2 * Loglike = 711.149086 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 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 for 50 iterations out of 500 -2 * Loglike = 703.191231 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 684.679930 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.146847 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 680.308243 Burning in for 500 iterations out of 500 -2 * Loglike = 698.882097 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.472089 Burning in for 250 iterations out of 500 -2 * Loglike = 718.829601 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 727.055023 Burning in for 100 iterations out of 500 -2 * Loglike = 703.952235 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.155837 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 720.389863 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 679.764913 -2 * Loglike = 697.976103 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.416144 Burning in for 300 iterations out of 500 -2 * Loglike = 714.009577 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.385320 Burning in for 150 iterations out of 500 -2 * Loglike = 701.954086 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 687.690906 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.707922 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 -2 * Loglike = 704.500415 Burning in for 350 iterations out of 500 -2 * Loglike = 706.702158 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 for 50 iterations out of 500 -2 * Loglike = 728.757409 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.341267 Burning in for 200 iterations out of 500 -2 * Loglike = 710.752647 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.357906 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.303296 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 684.472884 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.820893 Burning in for 400 iterations out of 500 -2 * Loglike = 701.478757 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 728.268707 Burning in for 100 iterations out of 500 -2 * Loglike = 709.553449 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 721.389790 Burning in for 250 iterations out of 500 -2 * Loglike = 702.103556 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.950616 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.187660 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 685.303886 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 704.699400 Burning in for 450 iterations out of 500 -2 * Loglike = 699.926843 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 728.286262 Burning in for 150 iterations out of 500 -2 * Loglike = 728.219240 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 728.731707 Burning in for 300 iterations out of 500 -2 * Loglike = 708.989412 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 697.928759 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 742.432945 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 680.831259 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.956376 Burning in for 500 iterations out of 500 -2 * Loglike = 699.270876 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 728.062822 Burning in for 200 iterations out of 500 -2 * Loglike = 713.731022 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.774320 Burning in for 350 iterations out of 500 -2 * Loglike = 705.003296 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.417304 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.231682 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 685.096501 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.634347 -2 * Loglike = 699.701137 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 732.532505 Burning in for 250 iterations out of 500 -2 * Loglike = 731.480722 Burning in for 400 iterations out of 500 -2 * Loglike = 712.259179 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.131587 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 723.119400 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.376909 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 = 711.730252 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.711347 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 736.005382 Burning in for 300 iterations out of 500 -2 * Loglike = 723.558369 Burning in for 450 iterations out of 500 -2 * Loglike = 705.856591 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 685.568477 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 720.074346 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.518443 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.914832 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.068198 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.371934 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 733.177923 Burning in for 350 iterations out of 500 -2 * Loglike = 726.852201 Burning in for 500 iterations out of 500 -2 * Loglike = 713.220488 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 687.534641 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 736.047456 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 680.936875 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.756958 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.490395 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.154900 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 736.315410 Burning in for 400 iterations out of 500 -2 * Loglike = 726.583873 -2 * Loglike = 705.776195 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 687.111549 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.269074 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.308949 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.894416 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.450264 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 734.110399 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 = 725.739934 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 684.035243 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 707.633160 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.485792 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.177729 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 733.976705 Burning in for 500 iterations out of 500 -2 * Loglike = 724.263319 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.379687 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.499719 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.179150 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 681.806137 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 713.104937 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.265633 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 728.953386 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 721.372287 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.820374 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 732.385731 -2 * Loglike = 717.172292 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 685.884634 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 680.059835 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 715.576429 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 689.657173 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 723.466316 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.798607 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 = 713.222536 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 716.919814 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 719.585272 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 678.550403 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.454169 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.689791 Actual update 950 of 5000, Stored update 950 of 5000 /nogui option ignored -2 * Loglike = 724.574750 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.208522 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 729.263189 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.779488 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 697.900152 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 724.919936 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 718.263941 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 681.798463 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.256272 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 719.681439 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.277917 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 737.496896 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 714.647565 Actual update 950 of 5000, Stored update 950 of 5000 ECHO 0 -2 * Loglike = 709.618618 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 723.149726 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.221248 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 678.168840 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.168536 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 725.523241 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.187949 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 726.130663 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.557533 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 700.256945 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 738.702704 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 717.160092 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 682.204689 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 689.180908 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 737.994156 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 699.742631 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 733.557946 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.493418 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.899640 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 718.968385 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 716.062295 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 676.564954 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.481160 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 for 50 iterations out of 500 -2 * Loglike = 740.239223 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.025391 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 728.357306 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 717.134156 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 700.201188 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 739.049890 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 716.367032 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 683.718984 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 688.927953 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.191727 Burning in for 100 iterations out of 500 -2 * Loglike = 739.266288 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 693.847815 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 743.884921 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 702.174750 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 724.305553 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 714.998688 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 706.925509 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 679.933343 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.500063 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 680.498956 Burning in for 150 iterations out of 500 -2 * Loglike = 688.562555 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.060516 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 725.807747 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.334997 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 720.298224 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 715.843611 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 708.050569 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 681.770128 Burning in for 200 iterations out of 500 -2 * Loglike = 691.786025 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 697.763957 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 740.220314 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.881447 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 722.414689 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.367329 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 705.102616 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.833211 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 685.113223 Burning in for 250 iterations out of 500 -2 * Loglike = 689.114634 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.643023 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 728.082863 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.901834 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 722.208519 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.227432 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.536107 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 707.240668 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 679.995873 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 684.236024 Burning in for 300 iterations out of 500 -2 * Loglike = 696.573798 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 707.585915 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 727.006117 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.983932 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 722.285963 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 719.960921 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.853307 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 703.890506 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.590951 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 682.787450 Burning in for 350 iterations out of 500 -2 * Loglike = 688.673167 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.694971 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 726.689525 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.874854 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.265824 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 728.426230 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.229035 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.840994 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 681.664415 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.881227 Burning in for 400 iterations out of 500 -2 * Loglike = 691.938956 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.738473 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 729.204387 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.978702 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 729.509257 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 720.656259 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 725.815839 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 715.933199 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 681.522875 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 686.183537 Burning in for 450 iterations out of 500 -2 * Loglike = 687.139315 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.290862 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 737.753797 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.930847 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 720.450115 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 728.528664 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.341671 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.146780 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 681.025167 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 683.286335 Burning in for 500 iterations out of 500 -2 * Loglike = 693.326149 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.880834 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.731428 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.723178 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 726.346971 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 717.981777 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 702.870337 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 725.325037 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 680.920461 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.992290 -2 * Loglike = 725.410599 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.658808 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 689.325061 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.146604 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.455967 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.477777 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.802330 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.959821 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 681.483220 Actual update 1250 of 5000, Stored update 1250 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 = 750.951657 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 705.001845 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 685.409115 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.731864 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 730.800260 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 721.654344 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.365875 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 723.695419 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 678.797151 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 683.722590 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 729.895227 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.046487 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.125168 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.659921 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 728.628850 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.620191 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 711.359424 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.767528 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 682.136223 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.970305 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 730.728604 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.269340 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.092454 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.009356 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 727.658891 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 729.326868 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.608417 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 715.045804 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 680.776899 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 679.156086 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 730.575024 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.943894 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.121127 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.861565 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.190430 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 727.526139 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 710.388381 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.851532 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 682.177458 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.190717 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 743.766186 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.193974 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.153703 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 731.448704 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 725.637081 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 724.707654 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.889829 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.928819 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 684.828484 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 682.092538 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.960203 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.115779 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.264901 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 732.839107 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 724.627877 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 722.581843 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.397753 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.630518 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 680.808336 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 697.730510 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 713.750869 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.223985 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.686716 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 730.759105 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.444501 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 731.678435 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.804419 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.528526 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.284383 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 677.531500 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 724.623966 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.361342 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 690.422523 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 729.542620 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.897484 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 732.923920 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 726.311539 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.191299 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 683.308977 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.904469 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.585595 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.656568 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.945731 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.135120 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.531264 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 727.290503 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.719828 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.272466 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 681.138561 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 678.483704 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 714.811372 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 685.132577 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 738.343862 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 723.481591 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 723.557569 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 732.248588 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 688.773094 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.395789 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 679.170806 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.702962 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.005925 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 676.339605 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.431178 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.425977 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 722.561143 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 727.377632 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 690.270427 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.915800 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 678.325310 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.572875 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.431096 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 679.781064 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 723.072221 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.397281 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 736.958641 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 735.844905 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.485325 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 731.346061 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.693055 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 713.830380 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 683.330927 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 697.349244 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 725.810640 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.756727 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 681.210293 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.087520 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 721.905896 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.541997 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.502558 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.147451 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 680.548951 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.313880 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 727.965814 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.161885 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.174122 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.659784 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 724.870275 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.456517 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.020722 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 718.747781 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 680.968210 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.813988 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 726.395443 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 677.991088 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.525955 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.383540 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 728.492295 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 735.137501 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 730.988953 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 723.459624 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.116807 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.263743 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 683.410428 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 724.393394 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 703.682040 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.926218 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.712223 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 728.930252 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 724.197240 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 712.159034 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.344895 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.059769 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 681.581362 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.216246 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.078396 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.513095 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.716330 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 733.288731 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.831667 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.203601 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 681.076497 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.485624 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.759444 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.352704 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 699.158644 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.339570 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 697.286803 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 726.066310 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 727.405318 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 727.361652 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 684.958322 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.035117 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 684.374651 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 722.707406 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 701.360445 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.786061 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.671487 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.602322 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 722.713106 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.519270 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.610445 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 689.021246 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 691.067661 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 722.388900 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.281950 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.034397 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.504206 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 731.188323 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 722.344291 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 716.275667 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 683.830935 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.842343 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 681.605071 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 734.327310 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.838704 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 707.085134 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.975968 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 730.535263 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 726.153491 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.328467 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.533962 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 680.021595 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 682.877388 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 725.080058 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.272052 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.798051 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 709.569428 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 738.726206 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 727.113461 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.784064 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 689.268884 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 682.745655 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 684.281355 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 720.679786 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.847584 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 714.167115 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.534177 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 734.780128 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.569777 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 718.802715 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 688.086698 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 720.746944 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.763771 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.513745 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 721.303290 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 724.283323 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.348114 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 731.202120 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.515818 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.752429 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 684.410486 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 714.561484 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.866302 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.193507 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 726.507361 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 701.976700 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 683.832010 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 734.513668 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.001110 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 730.564898 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 682.025462 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.016700 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.210163 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.820138 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.001366 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.581600 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 682.794845 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.139012 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 714.427991 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 682.365435 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.936172 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.628482 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.476438 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 726.050336 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 725.251577 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.499888 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.846119 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 730.190957 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.076401 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.484838 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.398595 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.140238 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.679289 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 734.417797 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 737.854168 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 686.098280 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 687.572163 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 731.446745 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.927429 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 694.103005 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 716.338555 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.264558 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.599344 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.536549 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 722.891012 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 688.687427 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 683.038150 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 733.066523 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.387897 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 684.426505 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.389730 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.541358 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.245672 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.668740 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.856007 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.579953 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 681.699746 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 742.437545 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.165347 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 681.989731 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 714.578052 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.153029 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 705.077534 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.774645 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 725.180888 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 693.035629 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 678.910005 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 729.401216 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 680.046644 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.601477 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.927485 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.629806 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.886940 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.037871 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 735.736655 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.638958 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 685.894211 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 731.086816 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.450527 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 719.412644 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.773440 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.741535 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.390257 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.072254 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.891527 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 686.164168 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 680.822039 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 731.665487 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 686.586059 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 725.450478 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.140570 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.672249 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 718.960562 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.285531 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 716.673726 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.839604 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 680.017347 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 735.204849 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 683.266631 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.320166 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.361624 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.097654 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 720.280627 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 726.352354 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.335904 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.693939 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 685.053565 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 734.898497 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 678.661414 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.556645 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.964928 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.236189 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 728.325076 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 724.447376 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 719.679280 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.756747 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 681.288672 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.402493 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 679.592188 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 684.508160 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.930495 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.390410 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 728.559044 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.687072 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.378361 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 718.328627 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 679.897040 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 730.423428 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 681.297210 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.283759 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.313813 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.890608 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.926789 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 726.384583 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.413887 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 718.035673 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 678.160022 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 735.905257 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 681.356307 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.197291 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.469442 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.336282 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 722.189747 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 724.590330 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.562443 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.684330 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.453331 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 733.275198 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.182776 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.140982 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.064814 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.724489 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.905327 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 735.506664 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.000312 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.668475 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 679.396886 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 683.805496 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 684.256534 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.589369 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.571500 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 690.339817 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 731.623682 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 727.782592 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 717.938412 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.212886 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 678.568351 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 679.442321 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 730.752279 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.925477 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.295113 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.777708 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 725.239738 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.617395 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.969880 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.895943 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.196307 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.022448 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.176830 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.603391 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.761783 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 725.254969 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 722.159527 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.906202 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 717.987221 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.046345 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.436314 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 733.336016 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 678.849605 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 683.785572 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.380230 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.914638 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 731.450778 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.672429 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 715.984738 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.073769 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.335525 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 733.813338 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 680.056979 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 682.943657 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 686.159016 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.730724 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.968635 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 706.242849 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.361389 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.357280 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 728.456286 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 679.363134 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 683.588226 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.598329 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 739.377900 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 688.096054 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 719.175860 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.231776 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.825979 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.880577 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 729.209654 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.055421 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 689.347166 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 728.227214 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.280373 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 727.202046 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.288550 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.563991 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.034738 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.410418 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.539813 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.227883 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.276957 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 732.925131 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 687.516752 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.655174 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.868258 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.378872 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 714.685398 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 729.889420 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.767549 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 679.949916 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.371189 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.423608 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 685.753302 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 727.141606 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.715775 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.351707 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.629514 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 728.594775 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.929405 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 678.464293 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 687.352240 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.871056 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.177133 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 728.501817 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.922747 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.658883 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 734.082302 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.762391 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.276044 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.176511 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.056044 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.188573 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 724.602789 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 727.255943 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.835899 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.164255 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 744.146205 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.322204 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.659909 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.041452 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 683.407976 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.077754 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 725.278275 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 727.335007 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 679.380491 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.017450 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 729.786416 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.332148 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.181595 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.748374 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 684.733699 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.198144 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 725.448922 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.078245 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.819337 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 733.544974 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.568536 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 705.729718 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.209423 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 683.015797 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.026561 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.470895 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 686.844389 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 729.231852 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.216849 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 729.542696 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.810536 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.263536 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.956138 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.248276 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.377209 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.211783 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.433442 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 726.664891 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 728.974368 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 733.552825 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.098271 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 715.636759 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.702807 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 694.141073 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.906468 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 716.403144 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.660519 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.962936 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 731.651171 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 726.748562 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.940985 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.289370 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 682.562379 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 686.003904 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 719.628991 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 680.308475 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.910133 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 729.899265 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 728.079315 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.929407 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.917032 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 730.124658 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 696.567111 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 724.806408 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 680.147339 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 727.033932 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 731.512793 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 682.237519 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 736.152111 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.427942 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.322200 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.540105 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 687.594452 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 726.178499 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.643702 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.722458 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 730.072037 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 685.836781 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 720.329699 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.134909 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.431415 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 721.093295 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 730.423439 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 683.231127 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 734.222685 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.416154 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 706.446400 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.616394 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.532075 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 721.937961 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 719.939828 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 682.888476 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 734.480315 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.052125 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.123640 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 679.031399 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.057999 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 723.715684 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 681.679553 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 741.329546 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.603407 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.686880 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 684.870636 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.565410 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 732.105179 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 682.027009 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 736.135343 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.959217 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.239850 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 679.904579 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.221097 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 682.314659 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.221848 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.21 S.D. = 3.9945 S.E.M. = 0.056491 ECHO 0 Execution completed -2 * Loglike = 712.764452 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 742.507486 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.171629 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.641132 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.413477 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.031624 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 729.805512 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.129101 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 732.273969 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.062319 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 684.887400 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 739.724611 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.866885 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 718.187278 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 682.365570 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.362150 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.63 S.D. = 5.4987 S.E.M. = 0.077764 ECHO 0 Execution completed -2 * Loglike = 687.428472 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 722.920006 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 729.241924 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.406972 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 683.916049 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 716.551083 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.496701 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 730.728358 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 727.199146 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.870866 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.962770 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 680.914020 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 724.293191 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 736.786944 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.695632 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 685.504656 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.396385 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 723.170407 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.029358 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.109185 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 724.77 S.D. = 5.4813 S.E.M. = 0.077517 ECHO 0 Execution completed -2 * Loglike = 683.252707 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.297158 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.714810 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 733.788548 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.304877 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.843663 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 680.399202 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 734.833441 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 724.560952 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 678.202657 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.819460 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 680.942339 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 738.807608 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 681.787590 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.153854 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.793085 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.916618 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 690.01 S.D. = 4.0868 S.E.M. = 0.057796 ECHO 0 Execution completed -2 * Loglike = 733.304158 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 680.959811 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 729.241870 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.031283 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 682.932592 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 736.268938 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.871620 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 721.525973 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.097143 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.478036 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 735.372662 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.443067 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.497800 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.156168 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 681.689675 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 736.177000 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 690.651286 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 725.320692 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.392020 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 681.561694 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 733.318137 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.761649 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 729.994363 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 727.595563 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 687.760591 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 730.400498 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.262557 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.621792 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 685.702611 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 734.314469 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 702.688905 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 733.690532 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.181209 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 737.425674 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.641663 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.719994 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 731.319374 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.396995 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.879842 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.126856 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.428464 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.031861 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.022962 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 679.432858 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.390436 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.704038 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 686.914110 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 689.696651 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 681.653554 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.063190 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.58 S.D. = 4.3083 S.E.M. = 0.060929 ECHO 0 Execution completed -2 * Loglike = 692.656873 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 689.150696 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.211992 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.212425 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 679.669958 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 681.058268 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 682.08 S.D. = 2.7156 S.E.M. = 0.038404 ECHO 0 Execution completed -2 * Loglike = 683.376996 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.465425 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 726.46 S.D. = 4.9966 S.E.M. = 0.070662 ECHO 0 Execution completed -2 * Loglike = 684.008700 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.890746 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 687.614096 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 727.582537 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 732.62 S.D. = 4.7861 S.E.M. = 0.067686 ECHO 0 Execution completed -2 * Loglike = 695.945738 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.095139 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.75 S.D. = 3.9463 S.E.M. = 0.055809 ECHO 0 Execution completed -2 * Loglike = 678.957768 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.46 S.D. = 4.5070 S.E.M. = 0.063739 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 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 /nogui option ignored 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 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 /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 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 700.464049 Burning in for 100 iterations out of 500 -2 * Loglike = 699.179470 Burning in for 150 iterations out of 500 /nogui option ignored -2 * Loglike = 700.570023 Burning in for 200 iterations out of 500 -2 * Loglike = 701.858848 Burning in for 250 iterations out of 500 -2 * Loglike = 703.406773 Burning in for 300 iterations out of 500 ECHO 0 -2 * Loglike = 700.986568 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 707.398241 Burning in for 400 iterations out of 500 -2 * Loglike = 706.224572 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 703.248124 Burning in for 500 iterations out of 500 -2 * Loglike = 705.497873 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 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 for 50 iterations out of 500 -2 * Loglike = 703.877548 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.843589 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 704.284606 Actual update 150 of 5000, Stored update 150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 688.109548 Burning in for 150 iterations out of 500 -2 * Loglike = 683.117129 Burning in for 100 iterations out of 500 -2 * Loglike = 697.906155 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.806315 Burning in for 200 iterations out of 500 -2 * Loglike = 680.716256 Burning in for 150 iterations out of 500 ECHO 0 -2 * Loglike = 704.161566 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.089776 Burning in for 250 iterations out of 500 -2 * Loglike = 682.225144 Burning in for 200 iterations out of 500 -2 * Loglike = 700.479993 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.617173 Burning in for 250 iterations out of 500 -2 * Loglike = 693.982783 Burning in for 300 iterations out of 500 -2 * Loglike = 715.794355 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 685.721596 Burning in for 300 iterations out of 500 -2 * Loglike = 690.740763 Burning in for 350 iterations out of 500 -2 * Loglike = 696.484327 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 685.694264 Burning in for 350 iterations out of 500 -2 * Loglike = 696.321132 Burning in for 400 iterations out of 500 -2 * Loglike = 716.238251 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.499126 Burning in for 400 iterations out of 500 -2 * Loglike = 692.333781 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 for 50 iterations out of 500 -2 * Loglike = 687.987077 Burning in for 450 iterations out of 500 -2 * Loglike = 698.292773 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 689.943570 Burning in for 500 iterations out of 500 -2 * Loglike = 696.549784 Burning in for 100 iterations out of 500 -2 * Loglike = 687.382394 Burning in for 500 iterations out of 500 -2 * Loglike = 698.201995 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 691.012654 -2 * Loglike = 684.439622 -2 * Loglike = 693.989615 Burning in for 150 iterations out of 500 -2 * Loglike = 698.233465 Actual update 600 of 5000, Stored update 600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 696.611682 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 = 700.303278 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 689.446799 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 699.594900 Burning in for 250 iterations out of 500 -2 * Loglike = 686.080589 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.148103 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.486405 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.888258 Burning in for 300 iterations out of 500 -2 * Loglike = 684.875567 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.906784 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 686.174271 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.458561 Burning in for 350 iterations out of 500 -2 * Loglike = 703.426625 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.999209 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 692.523906 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 702.164282 Burning in for 400 iterations out of 500 -2 * Loglike = 701.652629 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.946600 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.375502 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.877973 Burning in for 450 iterations out of 500 -2 * Loglike = 701.512103 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.525570 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 681.253282 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.458923 Burning in for 500 iterations out of 500 -2 * Loglike = 702.125165 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.193323 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.241297 -2 * Loglike = 696.115123 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.584792 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.910278 Actual update 450 of 5000, Stored update 450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 704.705229 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.052407 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.052681 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.637189 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.984612 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.837904 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.037918 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.243217 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 680.451125 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.246032 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.339573 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 702.421160 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.467146 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 688.971682 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 703.010432 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 678.874915 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.466900 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.834043 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 682.417344 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.832744 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 703.781318 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.756173 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 682.033009 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 694.336706 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.176323 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 678.056179 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 687.808400 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 716.122249 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 699.262518 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 685.356421 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.287648 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 702.594992 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.840857 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 681.699592 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.706015 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 700.145883 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.221594 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.893873 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.025586 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 700.514323 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 690.919246 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 682.599855 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.232434 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 709.345559 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.451398 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.349922 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 693.104148 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.641867 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.990242 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 681.898051 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.681210 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.606100 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 685.172479 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.029911 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.826802 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.393358 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 683.444526 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.367182 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.057695 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.976021 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 690.883941 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 683.795039 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.005142 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.746923 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.070554 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 685.357016 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.683581 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.615964 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.232645 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.845975 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 680.756746 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.716650 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.616322 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.308782 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 684.661061 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.506041 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.064587 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.866605 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.570351 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 679.791136 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.750695 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.312767 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.111067 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.659744 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.420043 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.442681 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.173074 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.740500 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.551231 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.662497 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.144028 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.233964 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 for 50 iterations out of 500 -2 * Loglike = 692.037542 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.203733 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 693.589151 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 696.985761 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 669.360616 Burning in for 100 iterations out of 500 -2 * Loglike = 679.252099 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.728270 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.064726 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 663.512324 Burning in for 150 iterations out of 500 -2 * Loglike = 697.303558 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 687.243400 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.990141 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.441040 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 663.625746 Burning in for 200 iterations out of 500 -2 * Loglike = 696.649530 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.791792 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 680.291421 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.983516 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 687.422525 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 687.687132 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 663.701803 Burning in for 250 iterations out of 500 -2 * Loglike = 697.783670 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.624996 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 688.915764 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 678.647839 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 669.231856 Burning in for 300 iterations out of 500 -2 * Loglike = 695.737748 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.495305 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 688.421093 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 680.115104 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 666.527450 Burning in for 350 iterations out of 500 -2 * Loglike = 698.224336 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.702773 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.106891 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 680.795118 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 672.096581 Burning in for 400 iterations out of 500 -2 * Loglike = 696.622742 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.917677 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.913786 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 666.794125 Burning in for 450 iterations out of 500 -2 * Loglike = 682.216076 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 708.028979 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 687.662848 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 669.075980 Burning in for 500 iterations out of 500 -2 * Loglike = 701.009913 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 691.357101 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.222236 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 693.750424 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 669.342721 -2 * Loglike = 706.696075 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.618349 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.871222 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.185520 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 = 705.193013 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.851021 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.014265 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 690.612564 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 667.571303 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.329761 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.324665 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 701.175190 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.173884 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 668.584704 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.955529 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.698906 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.224222 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.962067 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 661.820457 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.004856 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.328429 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.456350 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.955278 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 669.116593 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.567568 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 682.401136 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.683715 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 665.091249 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 689.927896 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.866937 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.055088 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 700.159483 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 679.843322 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.755193 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.997640 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.049111 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.881100 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.118191 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.538056 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 679.943941 Actual update 2450 of 5000, Stored update 2450 of 5000 /nogui option ignored -2 * Loglike = 660.913701 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.040304 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 683.891809 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 671.169068 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.916505 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.915663 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.525709 Actual update 3200 of 5000, Stored update 3200 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 665.930157 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.333041 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.155565 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.197372 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 704.443999 Actual update 3250 of 5000, Stored update 3250 of 5000 /nogui option ignored -2 * Loglike = 661.997971 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.770234 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 694.532996 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.782337 Actual update 2750 of 5000, Stored update 2750 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 for 50 iterations out of 500 -2 * Loglike = 664.753411 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.581202 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 707.035540 Actual update 3300 of 5000, Stored update 3300 of 5000 ECHO 0 -2 * Loglike = 698.207725 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.985639 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 690.730370 Burning in for 100 iterations out of 500 -2 * Loglike = 663.982141 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.645692 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.788227 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 697.648447 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 688.967546 Burning in for 150 iterations out of 500 -2 * Loglike = 699.604142 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 for 50 iterations out of 500 -2 * Loglike = 700.710354 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.468676 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 665.463837 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.250201 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.864047 Burning in for 200 iterations out of 500 -2 * Loglike = 689.925872 Actual update 2900 of 5000, Stored update 2900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 696.454684 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.758058 Burning in for 100 iterations out of 500 -2 * Loglike = 705.702437 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 693.753625 Burning in for 250 iterations out of 500 -2 * Loglike = 686.968016 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.702214 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 710.146466 Burning in for 100 iterations out of 500 -2 * Loglike = 701.820838 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 682.178469 Burning in for 150 iterations out of 500 -2 * Loglike = 701.651398 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.282629 Burning in for 300 iterations out of 500 -2 * Loglike = 661.534199 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 688.558522 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.362416 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.904959 Burning in for 150 iterations out of 500 -2 * Loglike = 702.736784 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.225851 Burning in for 200 iterations out of 500 -2 * Loglike = 705.068007 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.456238 Burning in for 350 iterations out of 500 -2 * Loglike = 670.765786 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 683.833750 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.883495 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 694.231164 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 708.426675 Burning in for 200 iterations out of 500 -2 * Loglike = 684.178278 Burning in for 250 iterations out of 500 -2 * Loglike = 697.293672 Actual update 3600 of 5000, Stored update 3600 of 5000 ECHO 0 -2 * Loglike = 663.486171 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.260665 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.314495 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.680004 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.259590 Burning in for 300 iterations out of 500 -2 * Loglike = 699.411681 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.021711 Burning in for 400 iterations out of 500 -2 * Loglike = 712.757635 Burning in for 250 iterations out of 500 -2 * Loglike = 668.013101 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.147972 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.197402 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.832169 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.855608 Burning in for 350 iterations out of 500 -2 * Loglike = 699.809088 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.828239 Burning in for 300 iterations out of 500 -2 * Loglike = 697.988798 Burning in for 450 iterations out of 500 -2 * Loglike = 663.829901 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 681.079733 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.433524 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.314957 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.128596 Burning in for 400 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 for 50 iterations out of 500 -2 * Loglike = 707.337110 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.783992 Burning in for 350 iterations out of 500 -2 * Loglike = 694.721295 Burning in for 500 iterations out of 500 -2 * Loglike = 674.508286 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 681.390190 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.176460 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 697.524435 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 685.121095 Burning in for 450 iterations out of 500 -2 * Loglike = 702.565538 Burning in for 100 iterations out of 500 -2 * Loglike = 699.101434 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 716.460597 Burning in for 400 iterations out of 500 -2 * Loglike = 695.351616 -2 * Loglike = 675.429163 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 681.838676 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.780966 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.825102 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.090309 Burning in for 500 iterations out of 500 -2 * Loglike = 703.645369 Burning in for 150 iterations out of 500 -2 * Loglike = 706.747411 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.672572 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 = 668.559918 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 682.015492 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.565528 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.531870 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 687.378774 -2 * Loglike = 704.216455 Burning in for 200 iterations out of 500 -2 * Loglike = 706.592480 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.195931 Burning in for 500 iterations out of 500 -2 * Loglike = 697.073234 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 665.042972 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.178538 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 681.527506 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 687.524481 Actual update 3400 of 5000, Stored update 3400 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 701.177721 Burning in for 250 iterations out of 500 -2 * Loglike = 705.375374 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 712.039931 -2 * Loglike = 693.072388 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 667.764966 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 706.291647 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 692.086137 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.412817 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.311016 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.035734 Burning in for 300 iterations out of 500 -2 * Loglike = 704.895209 Actual update 4000 of 5000, Stored update 4000 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 687.659293 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 667.166304 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.956227 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.887875 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.049760 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.388559 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.146255 Burning in for 350 iterations out of 500 -2 * Loglike = 700.598437 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.120482 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 694.819046 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 665.720499 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.763156 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.745475 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.022635 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 682.201355 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.867090 Burning in for 400 iterations out of 500 -2 * Loglike = 701.847629 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 713.265927 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.990962 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 670.653068 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.143647 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 686.450875 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.135839 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.032964 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.503240 Burning in for 450 iterations out of 500 -2 * Loglike = 710.131314 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.750398 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.300383 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 668.918856 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.915201 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.236387 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.199529 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 683.863576 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.011416 Burning in for 500 iterations out of 500 -2 * Loglike = 700.317324 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 686.511601 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 686.238690 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.575389 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 708.498235 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.417735 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.955014 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.648143 -2 * Loglike = 697.437423 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.173141 Actual update 4250 of 5000, Stored update 4250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 665.676947 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 678.822648 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 723.671711 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.213313 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 683.755785 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 707.936243 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.989066 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.778324 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 703.220518 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 666.420492 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 682.679751 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 705.084594 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.299595 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 685.574834 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.237598 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.754327 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.218771 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 666.775867 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.945770 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 683.391672 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.554206 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 696.222212 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 686.318775 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.161961 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.321114 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 682.923503 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 675.092526 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.355500 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.210980 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.066798 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 697.128046 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.722345 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 708.440252 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.011880 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.402209 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 667.763792 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 695.894348 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 681.658768 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 706.228588 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.210303 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 701.813139 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.323019 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 680.978957 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.345822 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 667.007958 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.498592 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 681.354888 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.809381 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 709.212257 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.234137 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.656890 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 683.525362 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 694.547631 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 662.545996 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 701.128277 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.177526 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.459376 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 706.580080 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 687.315422 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.512856 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.234262 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 686.521097 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 660.767346 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.623821 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.646679 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 706.506434 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.213520 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.483874 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.913468 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.649763 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 664.484647 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.564042 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 686.903046 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.099242 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.176503 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.067788 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.871489 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 683.382391 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 691.685860 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 664.688406 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 700.032467 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 688.352055 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.517913 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.859889 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.881700 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 690.902665 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 675.375516 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.361150 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 703.986366 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 699.461567 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.134566 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.541632 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.884239 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 669.317854 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.543729 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 685.328970 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.030283 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.947292 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.388503 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.849146 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.003534 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 665.246648 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 689.849487 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.772512 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.232198 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.419690 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.169543 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.869513 Actual update 3600 of 5000, Stored update 3600 of 5000 /nogui option ignored -2 * Loglike = 691.523249 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 666.077301 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.319618 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 681.974445 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 685.596665 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 709.091977 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.228038 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 695.131392 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.640618 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.188031 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 666.830425 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.373621 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.567917 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 686.302889 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 719.682836 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.795108 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.425912 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.884510 Actual update 4450 of 5000, Stored update 4450 of 5000 ECHO 0 -2 * Loglike = 705.007705 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 666.705726 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.014460 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.819268 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.529193 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.924772 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.241613 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.050854 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 691.438986 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.958690 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 667.782707 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 683.580721 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 686.882930 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 665.791531 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 692.156107 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 693.460712 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.127649 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.566663 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 713.616952 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.179161 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 685.297824 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 680.852364 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.067624 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 for 50 iterations out of 500 -2 * Loglike = 687.165975 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.972775 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.881319 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.687707 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.485598 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 684.618065 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 664.751450 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 688.905358 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 671.363259 Burning in for 100 iterations out of 500 -2 * Loglike = 695.564807 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.612906 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.808545 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 711.401229 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.229567 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 689.463507 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 662.937014 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.057021 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.064087 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 673.370079 Burning in for 150 iterations out of 500 -2 * Loglike = 704.313552 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 694.886886 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.574183 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.473960 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.562908 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 671.924040 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.177335 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.701644 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 710.746906 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 672.805773 Burning in for 200 iterations out of 500 -2 * Loglike = 687.526855 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.070498 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.312622 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.428860 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 669.884537 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.255876 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 688.056481 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.971149 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 675.065981 Burning in for 250 iterations out of 500 -2 * Loglike = 682.437495 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 712.794949 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.295422 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.667574 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 666.725863 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 692.277395 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.135604 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.223531 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.381532 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 680.837113 Burning in for 300 iterations out of 500 -2 * Loglike = 705.947583 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.606730 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.07 S.D. = 4.1211 S.E.M. = 0.058281 ECHO 0 Execution completed -2 * Loglike = 680.275688 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 684.906301 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 666.811129 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.222852 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.945161 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 665.900812 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.043931 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 677.122890 Burning in for 350 iterations out of 500 -2 * Loglike = 670.789817 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 681.057208 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.950714 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.659459 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 689.012098 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.551858 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.989567 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.581869 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 681.981535 Burning in for 400 iterations out of 500 -2 * Loglike = 667.567753 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.964704 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.745065 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.681362 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.069034 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.174497 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.031848 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.411040 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 678.390114 Burning in for 450 iterations out of 500 -2 * Loglike = 666.436100 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.348115 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 684.688837 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.197645 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.046567 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.822122 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.225827 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.312326 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 677.158305 Burning in for 500 iterations out of 500 -2 * Loglike = 669.709262 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 688.563318 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.803797 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.516815 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.183320 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.366256 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.105764 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.774794 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 677.281970 -2 * Loglike = 666.381236 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 683.741470 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 683.569220 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 687.027633 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.191522 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.222360 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.044588 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 = 669.939631 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 685.078351 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 686.509610 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.748230 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 707.013247 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.021705 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 673.802858 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.873720 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 665.652941 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.493223 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.253583 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.673087 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.655930 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.405457 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 685.098786 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.972139 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 690.788631 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.200718 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 705.833820 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 664.729392 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 671.515036 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 688.534939 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.315488 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.454306 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.794728 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.641955 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 667.221119 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 677.685288 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.272766 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.423931 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 694.023857 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.103897 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 708.647809 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 669.003308 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 673.660443 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 683.002127 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.947409 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.197327 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.505714 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.476291 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 671.038664 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.856752 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 683.984174 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.995563 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 692.547694 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 675.466152 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.414881 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 720.381038 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 670.681021 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.170122 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.86 S.D. = 4.0373 S.E.M. = 0.057096 ECHO 0 Execution completed -2 * Loglike = 686.962068 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.392428 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.950098 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 663.282840 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.674514 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.868075 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 684.201871 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 679.899043 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 685.24 S.D. = 4.8924 S.E.M. = 0.069189 ECHO 0 Execution completed -2 * Loglike = 687.457331 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 697.323998 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.271633 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 670.381579 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.154393 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.960900 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 672.017086 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 687.756641 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.175474 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.761198 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.772129 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 667.241624 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.385959 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 672.069916 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 685.816780 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.457788 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.791573 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.886739 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 667.913236 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 671.752396 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 686.347857 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.644491 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.450635 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.784001 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 663.147158 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 673.850842 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.680911 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.693701 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 689.276858 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 662.600105 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.675816 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.255432 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.927396 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.702275 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.311995 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 662.960393 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 670.524483 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.899256 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.708549 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 683.806251 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.150633 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 672.350335 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.910621 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.335755 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.284432 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 691.476802 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.623618 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 674.958090 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 692.488409 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 661.218264 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 723.610258 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 686.887272 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.463730 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 675.851619 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.067394 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 670.948094 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.520239 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 686.723063 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.673877 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 676.737062 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.826134 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 669.868431 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.891010 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.390580 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.195481 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.147277 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 686.968722 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 673.623587 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.419214 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 688.965424 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.238205 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.182284 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 675.841581 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 671.253388 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.011998 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.996488 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 705.419966 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.411403 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 676.801695 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 662.620971 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.216043 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.706865 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 706.612427 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.894243 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 676.624502 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 666.997047 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.355825 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 676.363428 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.659581 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 689.872958 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.227556 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 674.594646 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 684.766837 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 677.678660 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.359611 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.84 S.D. = 4.2037 S.E.M. = 0.059449 ECHO 0 Execution completed -2 * Loglike = 703.309572 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.787791 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.615572 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 664.987125 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 681.760519 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 673.135981 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.973768 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.347576 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.830336 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 685.228493 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 663.334467 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 676.004930 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.109029 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 689.878069 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.132683 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.680723 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.885615 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 673.517992 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 704.781079 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 671.600524 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 710.584193 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 684.162251 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.476643 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 684.356930 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.211566 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 667.614913 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 712.290361 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.900071 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.166671 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 677.088850 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.423585 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 671.831690 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 707.659097 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.051852 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.367149 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 673.377334 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.321855 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 667.434878 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.156985 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.027893 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 691.087024 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 672.504820 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.333075 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 667.441021 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 709.492970 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.762942 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.458394 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 678.489768 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 708.284684 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 673.268497 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.919137 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.769376 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.050696 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 679.529973 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.489917 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 667.797653 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.354826 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.691095 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 695.165822 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.385910 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 664.355186 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.960735 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 677.128302 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.322862 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 686.865830 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.868734 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 676.385600 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 685.870491 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 671.185132 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.430099 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 690.956293 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 705.283512 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 664.519001 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 685.210196 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 673.196194 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.264564 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.591040 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 700.559164 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.436052 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 665.438072 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 677.693172 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 713.843479 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.371232 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 697.196159 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 682.433962 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 668.311450 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 675.568915 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.548423 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 683.622808 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.055499 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 669.685096 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 692.630160 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.337838 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 677.634773 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.169270 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 665.350892 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 684.710058 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 706.534393 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 673.038425 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.257498 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.734400 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 668.150547 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.082704 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.529676 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 681.096360 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.271968 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.269682 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.009576 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.374239 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 690.914844 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.396679 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 694.460444 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 677.274255 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 704.885831 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.443172 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.048350 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.623048 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 676.685383 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.325302 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.240131 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.627674 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.999793 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 673.904902 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.416478 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 682.324207 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 712.546711 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.375860 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 685.592577 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 714.585115 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 684.906995 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.150309 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.499704 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 674.787264 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.693722 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 687.504124 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 687.632470 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.379886 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 676.142670 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.065460 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 686.753608 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.961026 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.051454 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 678.597395 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 707.116070 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.597040 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.510394 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 681.613300 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.178672 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.085568 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 679.289485 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.391418 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.640444 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.585593 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 683.687888 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 678.442430 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 690.383563 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 675.571811 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 708.898538 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.058217 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.331433 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 662.256522 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 667.74 S.D. = 4.0818 S.E.M. = 0.057726 ECHO 0 Execution completed -2 * Loglike = 705.270655 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 681.085447 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.064273 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.914536 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.905479 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.377265 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 681.041648 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.784811 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.406417 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 685.852320 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.747059 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 674.587459 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.696667 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.589502 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.215029 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.751831 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 678.547764 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.942313 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 703.488280 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.466234 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.289050 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 683.885347 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.268379 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.074768 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 684.330771 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.521857 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 674.886754 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 689.105989 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.738675 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 687.892236 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.200659 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 675.001475 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.047116 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.958426 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 685.134832 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.098292 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 675.787743 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.942909 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.554108 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.480402 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.438191 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 674.988856 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.155164 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.970925 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.444795 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.927618 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 673.598562 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.189514 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.752217 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.528825 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.151881 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 679.890702 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 691.796551 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.477924 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.674753 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 685.448010 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.150889 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.304700 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 708.555460 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 687.338895 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 673.893143 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 713.678264 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.697903 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 678.228494 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.562800 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.889441 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 674.212992 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.092148 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.598787 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 679.839759 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.657279 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.946536 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 671.359828 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 707.510502 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 672.428171 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.611367 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 673.913273 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.752270 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 680.436017 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.730381 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 675.867213 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.439409 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.605709 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.128672 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.653468 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.353620 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 682.624610 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.042509 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.722324 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 674.302875 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.626067 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.99 S.D. = 4.4129 S.E.M. = 0.062408 ECHO 0 Execution completed -2 * Loglike = 687.196961 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.58 S.D. = 2.4520 S.E.M. = 0.034677 ECHO 0 Execution completed -2 * Loglike = 684.842765 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 673.816828 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 672.318100 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 684.574165 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 674.233018 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.148116 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.65 S.D. = 4.0973 S.E.M. = 0.057944 ECHO 0 Execution completed -2 * Loglike = 679.902675 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 680.816548 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 677.434671 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.350071 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 680.781908 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.644427 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 678.420328 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 672.033361 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 677.174768 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 678.788985 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.553565 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.10 S.D. = 3.0332 S.E.M. = 0.042895 ECHO 0 Execution completed -2 * Loglike = 688.058319 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 676.516520 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.145537 Actual update 5000 of 5000, Stored update 5000 of 5000 /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 -2 * Loglike = 672.263106 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 677.69 S.D. = 4.6818 S.E.M. = 0.066211 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 ECHO 0 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 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 for 50 iterations out of 500 -2 * Loglike = 691.149911 Burning in for 100 iterations out of 500 -2 * Loglike = 689.044009 Burning in for 150 iterations out of 500 -2 * Loglike = 689.115357 Burning in for 200 iterations out of 500 -2 * Loglike = 693.146519 Burning in for 250 iterations out of 500 -2 * Loglike = 697.142300 Burning in for 300 iterations out of 500 -2 * Loglike = 693.570700 Burning in for 350 iterations out of 500 -2 * Loglike = 697.845010 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 691.503514 Burning in for 450 iterations out of 500 -2 * Loglike = 695.460442 Burning in for 500 iterations out of 500 -2 * Loglike = 692.015732 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 = 690.780366 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 694.760917 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.832511 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 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 for 50 iterations out of 500 -2 * Loglike = 693.811901 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.738659 Burning in for 100 iterations out of 500 -2 * Loglike = 689.873433 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.859384 Burning in for 150 iterations out of 500 -2 * Loglike = 704.971136 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.748306 Burning in for 200 iterations out of 500 -2 * Loglike = 686.080945 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 694.075968 Burning in for 250 iterations out of 500 -2 * Loglike = 691.561552 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.459343 Burning in for 300 iterations out of 500 -2 * Loglike = 689.099335 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.833488 Burning in for 350 iterations out of 500 -2 * Loglike = 686.990067 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.130884 Burning in for 400 iterations out of 500 -2 * Loglike = 687.232153 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.286632 Burning in for 450 iterations out of 500 -2 * Loglike = 689.285688 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.370296 Burning in for 500 iterations out of 500 -2 * Loglike = 687.344765 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.952491 -2 * Loglike = 686.431233 Actual update 750 of 5000, Stored update 750 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 696.295796 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.655071 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 688.434845 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 697.213075 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.909433 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.741787 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.069309 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 694.612576 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 698.961110 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.008691 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.132536 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 707.472974 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 694.600981 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 687.901655 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.517884 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 692.110749 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 692.436728 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.131690 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.919382 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.863647 Actual update 550 of 5000, Stored update 550 of 5000 /nogui option ignored -2 * Loglike = 690.346508 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.319497 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.502777 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 690.497377 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 687.941087 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.710303 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 696.811713 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 688.360446 Actual update 750 of 5000, Stored update 750 of 5000 ECHO 0 -2 * Loglike = 691.244341 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 697.891758 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.221775 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 689.972223 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.289862 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.846542 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.772079 Actual update 1650 of 5000, Stored update 1650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 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 for 50 iterations out of 500 -2 * Loglike = 688.611678 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.989284 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.496464 Burning in for 100 iterations out of 500 -2 * Loglike = 690.951875 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.951955 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 for 50 iterations out of 500 -2 * Loglike = 711.481933 Burning in for 150 iterations out of 500 -2 * Loglike = 687.295010 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.863682 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 702.041545 Burning in for 100 iterations out of 500 -2 * Loglike = 718.635919 Burning in for 200 iterations out of 500 -2 * Loglike = 690.200906 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 695.996371 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.663390 Burning in for 150 iterations out of 500 -2 * Loglike = 710.069188 Burning in for 250 iterations out of 500 -2 * Loglike = 689.718620 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 695.130972 Burning in for 200 iterations out of 500 -2 * Loglike = 692.319752 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 718.188460 Burning in for 300 iterations out of 500 -2 * Loglike = 689.781667 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.091112 Burning in for 250 iterations out of 500 -2 * Loglike = 694.156246 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.901850 Burning in for 350 iterations out of 500 -2 * Loglike = 701.430954 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.244959 Burning in for 300 iterations out of 500 -2 * Loglike = 695.349660 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.593262 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.655397 Burning in for 400 iterations out of 500 -2 * Loglike = 697.458890 Burning in for 350 iterations out of 500 -2 * Loglike = 692.904526 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.863997 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.492354 Burning in for 450 iterations out of 500 -2 * Loglike = 703.747223 Burning in for 400 iterations out of 500 -2 * Loglike = 696.328387 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.249152 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.608348 Burning in for 500 iterations out of 500 -2 * Loglike = 695.874454 Burning in for 450 iterations out of 500 -2 * Loglike = 692.158683 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.380052 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.556934 -2 * Loglike = 691.542836 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.512172 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 = 701.085307 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.897992 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.599626 -2 * Loglike = 711.420045 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.953251 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 693.346826 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 = 723.052944 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.421020 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.299457 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 697.874825 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.392712 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.104686 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.595999 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 699.291918 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.231577 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.240213 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.024243 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.123653 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.181203 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.389423 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.426559 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 697.696296 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.920268 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 727.805434 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.751339 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.494871 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.382267 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.169874 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 689.263307 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.688151 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.325564 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.516226 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 692.462748 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.240067 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.497666 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 692.045713 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 691.565997 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 705.707843 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.431948 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.604682 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.175733 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.313093 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 720.529354 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.491336 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 703.571752 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.329672 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 709.182594 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 691.246248 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.177171 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.273726 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 713.969141 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.930951 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.293103 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.594428 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.334277 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.142704 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 697.358556 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 722.748030 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 688.455799 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 694.988282 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 694.954698 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.784452 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 691.819127 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 691.374877 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.677816 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.493047 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.018758 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.554311 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 693.867416 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.718747 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.639717 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.267727 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.489396 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 720.437731 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.069919 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.563401 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.337000 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.107728 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 694.523473 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.239076 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.069106 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.538249 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 704.312401 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.687990 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.620760 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.432265 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.472932 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.280024 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.877246 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.010732 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.497113 Actual update 3450 of 5000, Stored update 3450 of 5000 /nogui option ignored -2 * Loglike = 701.119865 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.535726 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.473940 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.955872 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.865297 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 714.942034 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.399765 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.324895 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 719.005513 Actual update 1350 of 5000, Stored update 1350 of 5000 ECHO 0 -2 * Loglike = 697.949456 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.924638 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.767906 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.370697 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.740823 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.961738 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.824740 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.119691 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.388395 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 695.295965 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 688.253480 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 722.756338 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.624715 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.172801 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.131998 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 719.583022 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.584111 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 688.623068 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.646139 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 720.341164 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.350585 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.009544 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.390512 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 720.955591 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.215568 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 691.856984 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.927422 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.467757 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.751537 Actual update 3050 of 5000, Stored update 3050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 699.388263 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.939176 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.751680 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.554886 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.194497 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.285420 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.972857 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.105070 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.978529 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.984133 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.778289 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.304544 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.682084 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.984879 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.972205 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.403313 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 691.067157 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.353282 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.890043 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.009279 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.744129 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.846042 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 720.752817 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.600320 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.308500 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.329367 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 688.773746 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.727598 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.014472 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.024863 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.802905 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.280739 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.571000 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.220702 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 715.079644 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.377900 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.943732 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.428407 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.587784 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.195319 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.528061 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.720166 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.239765 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 689.508430 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.920807 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.567623 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 722.612340 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.020108 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.810823 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.008847 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.940531 Actual update 2350 of 5000, Stored update 2350 of 5000 /nogui option ignored -2 * Loglike = 694.982156 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 689.611553 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.154544 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 720.986768 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.137322 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.542438 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.592016 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 722.529291 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 694.175614 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.281546 Actual update 3800 of 5000, Stored update 3800 of 5000 ECHO 0 -2 * Loglike = 698.303437 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.443329 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 719.603075 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.574494 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 697.301446 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.521838 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.387431 Actual update 2550 of 5000, Stored update 2550 of 5000 /nogui option ignored -2 * Loglike = 708.854696 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.713345 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.662223 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 726.200317 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.960412 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 705.313869 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 for 50 iterations out of 500 -2 * Loglike = 698.931884 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.898465 Actual update 2650 of 5000, Stored update 2650 of 5000 ECHO 0 -2 * Loglike = 692.235397 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.085987 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 730.155948 Burning in for 100 iterations out of 500 -2 * Loglike = 714.988339 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.538468 Actual update 4950 of 5000, Stored update 4950 of 5000 /nogui option ignored -2 * Loglike = 696.715106 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 723.155334 Burning in for 150 iterations out of 500 -2 * Loglike = 689.181780 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 712.613854 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 695.303320 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.312483 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 728.303975 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 691.591805 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 722.251982 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.218552 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.994823 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 for 50 iterations out of 500 -2 * Loglike = 726.147310 Burning in for 250 iterations out of 500 -2 * Loglike = 718.036351 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.706131 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 730.858859 Burning in for 300 iterations out of 500 -2 * Loglike = 691.426376 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.094679 Burning in for 100 iterations out of 500 -2 * Loglike = 710.214951 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.078779 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 732.963381 Burning in for 350 iterations out of 500 -2 * Loglike = 713.321456 Burning in for 150 iterations out of 500 -2 * Loglike = 700.797577 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 735.245689 Burning in for 400 iterations out of 500 -2 * Loglike = 690.695230 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 718.520616 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 724.138001 Burning in for 200 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 698.943781 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 728.810619 Burning in for 450 iterations out of 500 -2 * Loglike = 698.140015 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 719.818747 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.950034 Burning in for 250 iterations out of 500 -2 * Loglike = 695.685985 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 730.275951 Burning in for 500 iterations out of 500 -2 * Loglike = 692.705661 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.210845 Actual update 3050 of 5000, Stored update 3050 of 5000 ECHO 0 -2 * Loglike = 720.867036 Burning in for 300 iterations out of 500 -2 * Loglike = 700.879933 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 729.482120 -2 * Loglike = 699.820551 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.426900 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.398542 Burning in for 350 iterations out of 500 -2 * Loglike = 699.641996 Actual update 3000 of 5000, Stored update 3000 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 699.056865 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 723.250394 Burning in for 400 iterations out of 500 -2 * Loglike = 719.827742 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 696.245718 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 734.127243 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.118185 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.938348 Burning in for 450 iterations out of 500 -2 * Loglike = 696.540087 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.314045 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.512249 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 734.104816 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.652057 Burning in for 500 iterations out of 500 -2 * Loglike = 696.097281 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.251011 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.746611 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 725.292696 -2 * Loglike = 729.953345 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.302728 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 723.901080 Actual update 3300 of 5000, Stored update 3300 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.479219 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 688.314606 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.82 S.D. = 4.0891 S.E.M. = 0.057828 ECHO 0 Execution completed -2 * Loglike = 734.303098 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 = 709.427998 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.811479 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 726.422340 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.362765 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 728.691358 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 700.701285 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.850186 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 728.247097 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 690.176352 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.662894 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 737.876391 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 713.241302 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 693.502545 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 724.240816 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 693.047450 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 728.237769 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.247612 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.447192 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 718.070722 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.977083 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 730.884920 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.034222 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.891030 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.271881 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.838020 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.698787 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 691.318370 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.781378 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 730.186724 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.879810 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.661678 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.080916 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 730.178765 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 711.052256 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.211192 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.836862 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.383733 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.345297 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.166451 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.998763 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 730.520207 Actual update 600 of 5000, Stored update 600 of 5000 ECHO 0 -2 * Loglike = 715.455237 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.635020 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 701.111864 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 725.514701 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.572587 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 713.293805 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.731186 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 729.005244 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.077334 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 725.804245 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.545845 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.596944 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.311526 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.166966 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.314232 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.077132 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 732.919035 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.189587 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.778522 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 for 50 iterations out of 500 -2 * Loglike = 709.920784 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 730.134432 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.409599 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.241777 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.495943 Burning in for 100 iterations out of 500 -2 * Loglike = 726.256041 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 735.061860 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.928645 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.843299 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.208580 Burning in for 150 iterations out of 500 -2 * Loglike = 714.906040 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 725.843524 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 720.627143 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 696.154343 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 693.015191 Burning in for 200 iterations out of 500 -2 * Loglike = 716.687472 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.128331 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 736.264316 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.677239 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 693.184798 Burning in for 250 iterations out of 500 -2 * Loglike = 718.837476 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 730.798497 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.447569 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.618060 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 690.013832 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.69 S.D. = 4.0912 S.E.M. = 0.057858 ECHO 0 Execution completed -2 * Loglike = 698.370330 Burning in for 300 iterations out of 500 -2 * Loglike = 723.976408 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 724.741938 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.038971 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 731.148086 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.562868 Burning in for 350 iterations out of 500 -2 * Loglike = 705.087654 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.859327 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.852578 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 725.712732 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.314753 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.693312 Burning in for 400 iterations out of 500 -2 * Loglike = 722.140397 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 719.532134 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 728.674496 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.690800 Burning in for 450 iterations out of 500 -2 * Loglike = 701.654993 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 715.727438 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.945551 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 727.745401 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.900183 Burning in for 500 iterations out of 500 -2 * Loglike = 697.937823 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.684362 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.146448 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.135073 -2 * Loglike = 723.188329 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.967345 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.950124 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 722.575859 Actual update 4550 of 5000, Stored update 4550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 731.064920 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 705.954232 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.794759 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.457817 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.878461 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 730.135156 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.535822 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 717.676819 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 718.624062 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 708.357442 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 731.230425 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.333438 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 723.033447 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.814195 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.998695 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.725995 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.804027 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 731.051543 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 725.662405 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.048865 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.755036 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.416639 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 729.902248 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 727.331575 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.675287 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.225850 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.946171 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 730.643582 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 724.057410 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.593687 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.522330 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.572193 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.650010 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 733.734510 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.907208 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.794907 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.775738 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 724.164360 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 728.915060 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.788405 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 721.902789 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.929951 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.905879 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 733.871522 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.482296 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.911408 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 723.003098 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 722.093106 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.678141 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.480818 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.091980 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 729.616917 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 716.695492 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.515461 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 732.106561 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 719.104977 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 705.321909 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 726.840771 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.690103 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.623760 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 729.565643 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 728.290659 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.618155 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 732.901977 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 715.103223 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.613190 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 728.961426 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.849713 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.172049 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 725.516682 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 720.403882 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.563652 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.266658 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.034144 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.225733 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 726.417604 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.530616 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.640932 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 732.886454 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 726.878886 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.554523 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 728.805683 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 717.485702 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.519713 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 737.581644 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.506495 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.745736 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 732.144006 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.324168 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.260666 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 730.648965 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.239613 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.40 S.D. = 5.5924 S.E.M. = 0.079088 ECHO 0 Execution completed -2 * Loglike = 711.979685 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 717.30 S.D. = 4.7333 S.E.M. = 0.066940 ECHO 0 Execution completed -2 * Loglike = 692.731956 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 715.945815 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 727.687576 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.155553 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.879484 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 736.542716 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 705.017697 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.271913 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 732.253690 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 706.138304 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 722.796469 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 727.483625 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.233621 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 719.382978 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 724.410425 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.758229 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.941306 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 734.142514 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.011840 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 720.642480 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 724.588300 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 706.380000 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 720.791627 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 728.333346 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.515107 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.629353 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 733.943916 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.920543 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 720.227039 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 729.904964 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.998370 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 722.965315 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 725.702873 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.766934 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 711.653398 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.814782 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 695.997697 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.431391 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 730.233353 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 697.862741 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.513304 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 726.340830 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.980839 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 726.156385 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.470429 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 733.570864 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.137841 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.906938 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 736.553369 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.976928 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 730.252881 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 728.239570 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.204272 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.734319 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 730.371352 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 693.542341 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.641058 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 729.083709 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.751077 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.752975 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 729.093621 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.496907 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 719.035931 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 730.382106 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.872410 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.337583 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 731.860500 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.134118 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.231291 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 726.525556 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 702.373552 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.527620 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 738.426323 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.244660 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.765464 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 725.145013 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.837731 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.279000 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 727.780773 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.005389 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 724.582033 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 735.619807 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.511159 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 730.343983 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 732.517766 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.361201 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 726.505507 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 732.092873 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.870262 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 722.396620 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 725.712914 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 693.152786 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 718.629086 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 729.987764 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.513543 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.198633 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 735.896874 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.815369 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 727.099061 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 731.989464 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.426493 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 725.741904 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 726.907479 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.918249 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 716.626404 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 733.669878 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.899867 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 728.704988 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 729.301751 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 697.495833 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.188570 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 731.581616 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.044222 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.842232 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 734.039761 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.756860 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 721.387652 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 731.391460 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.726928 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.610199 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 732.160952 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.819208 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 727.534203 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 732.873634 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.341616 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 720.699096 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 727.589063 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 703.687546 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.627981 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 730.786688 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 693.464958 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.431544 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 730.140188 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.642584 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 711.036853 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.092863 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.038435 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.623911 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 729.140386 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.705671 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.970703 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 733.722041 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.140374 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 690.190926 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 730.731388 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 725.049309 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.615221 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 726.361547 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.127084 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.216230 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.678724 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.482687 Actual update 3800 of 5000, Stored update 3800 of 5000 /nogui option ignored -2 * Loglike = 706.551862 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 710.045236 Actual update 3900 of 5000, Stored update 3900 of 5000 ECHO 0 -2 * Loglike = 698.038441 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.799457 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 695.319370 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.000077 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.363409 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.714959 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 for 50 iterations out of 500 -2 * Loglike = 690.601067 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.485009 Burning in for 100 iterations out of 500 -2 * Loglike = 710.278518 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.507336 Burning in for 150 iterations out of 500 -2 * Loglike = 691.678951 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.566122 Burning in for 200 iterations out of 500 -2 * Loglike = 699.000679 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.190734 Burning in for 250 iterations out of 500 -2 * Loglike = 697.641006 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.244295 Burning in for 300 iterations out of 500 -2 * Loglike = 694.330445 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.156852 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 709.599424 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.794191 Burning in for 400 iterations out of 500 -2 * Loglike = 712.656502 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 719.97 S.D. = 5.1377 S.E.M. = 0.072658 ECHO 0 Execution completed -2 * Loglike = 699.447527 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 711.358620 Burning in for 450 iterations out of 500 -2 * Loglike = 695.868616 Actual update 4650 of 5000, Stored update 4650 of 5000 ECHO 0 -2 * Loglike = 713.514682 Burning in for 500 iterations out of 500 -2 * Loglike = 731.566093 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 730.26 S.D. = 3.3078 S.E.M. = 0.046779 ECHO 0 Execution completed -2 * Loglike = 705.143179 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.476309 -2 * Loglike = 691.774225 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 = 695.438527 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.923214 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.905635 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.478470 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.458487 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.026487 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.072808 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 711.274524 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 705.091794 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.547852 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 726.183559 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.629563 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.864309 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.339759 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.390892 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.753459 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.945506 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.842628 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.236128 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.120352 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 707.760585 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.529813 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.306614 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.006912 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.366623 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.053407 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.393012 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.467606 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.90 S.D. = 5.3075 S.E.M. = 0.075060 ECHO 0 Execution completed -2 * Loglike = 711.828297 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.373308 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 711.427158 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 714.594950 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 713.534018 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 726.955996 Actual update 1450 of 5000, Stored update 1450 of 5000 /nogui option ignored -2 * Loglike = 711.132033 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 711.045407 Actual update 1550 of 5000, Stored update 1550 of 5000 ECHO 0 -2 * Loglike = 711.975908 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.325226 Actual update 1650 of 5000, Stored update 1650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 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 for 50 iterations out of 500 -2 * Loglike = 714.191743 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 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 for 50 iterations out of 500 -2 * Loglike = 709.431544 Burning in for 100 iterations out of 500 -2 * Loglike = 710.634294 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.062287 Burning in for 100 iterations out of 500 -2 * Loglike = 708.277924 Burning in for 150 iterations out of 500 -2 * Loglike = 707.137463 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.228400 Burning in for 150 iterations out of 500 -2 * Loglike = 708.990499 Burning in for 200 iterations out of 500 -2 * Loglike = 707.193535 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 696.377345 Burning in for 200 iterations out of 500 -2 * Loglike = 707.282138 Burning in for 250 iterations out of 500 -2 * Loglike = 709.042938 Actual update 1900 of 5000, Stored update 1900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 697.586000 Burning in for 250 iterations out of 500 -2 * Loglike = 712.502616 Burning in for 300 iterations out of 500 -2 * Loglike = 708.908494 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.692212 Burning in for 300 iterations out of 500 -2 * Loglike = 711.675471 Burning in for 350 iterations out of 500 -2 * Loglike = 697.441577 Burning in for 350 iterations out of 500 -2 * Loglike = 721.577374 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.236958 Burning in for 400 iterations out of 500 -2 * Loglike = 705.132398 Burning in for 400 iterations out of 500 -2 * Loglike = 711.271553 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.627946 Burning in for 450 iterations out of 500 -2 * Loglike = 701.247178 Burning in for 450 iterations out of 500 -2 * Loglike = 707.540484 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.880758 Burning in for 500 iterations out of 500 -2 * Loglike = 698.955199 Burning in for 500 iterations out of 500 -2 * Loglike = 711.753263 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.208222 -2 * Loglike = 702.379008 -2 * Loglike = 713.432580 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 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.542990 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.860568 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 698.314960 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.077702 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.527933 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.593509 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.702283 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.093271 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 695.425318 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 721.363052 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.244744 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 705.640545 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.712565 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 711.212332 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.831901 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.574635 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.011726 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 713.645639 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 714.080492 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 707.211113 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.575530 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 714.739893 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.483661 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.166830 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.784540 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.377659 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 695.927529 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.264267 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.551122 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.459689 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.353346 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.137857 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 695.225632 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.032021 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.410518 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.154488 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.856837 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.151246 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.045665 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.388750 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.555850 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.765887 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 713.284594 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.097960 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.130531 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.610477 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.425838 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.229962 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.477666 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.216216 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.936094 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.553407 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.352795 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.993482 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.195691 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.957965 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.329956 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.801926 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.145397 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.382033 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 710.057934 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 740.155980 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.094165 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.524414 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.683760 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 699.854667 Actual update 1150 of 5000, Stored update 1150 of 5000 ECHO 0 -2 * Loglike = 708.314886 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.481770 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.002276 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 708.317512 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.021294 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.486667 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 709.199734 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 715.457590 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.852458 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 712.903272 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 713.387077 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.466288 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 709.712163 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 713.658522 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.203689 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.575275 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.961047 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.092950 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 715.103321 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.946883 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.106249 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 = 700.133779 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.623784 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.961582 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.816175 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.990353 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.761154 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.285938 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.962019 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.536603 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 716.132237 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.534120 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 713.174261 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 = 719.421422 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.800411 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.777179 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.497831 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.516394 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 709.312015 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.484030 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 694.400862 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.329184 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.285129 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 695.037595 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.908300 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.388455 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.698498 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.271667 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.025818 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.817676 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.301624 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.212634 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.956855 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.360992 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.993348 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.373074 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.223298 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.313787 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.532013 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.025015 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.626563 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.115400 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.644465 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.891666 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.354833 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 712.028653 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.971772 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 705.844784 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 707.541497 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.068751 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.963576 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.555414 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.201430 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.403968 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.593433 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.062912 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 711.597866 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 708.691731 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.388931 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.843608 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 716.722977 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.398856 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.616484 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.593334 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 703.964492 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.775115 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.539075 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.672581 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.148868 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.661498 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.135526 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.915482 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.325936 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.046151 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.975810 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.726802 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.306867 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 721.088104 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.126007 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.289252 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.943012 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.267208 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.378828 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.083509 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.428114 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.982651 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.077679 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.666296 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.170339 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 698.522489 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.065690 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.049652 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.916669 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.553860 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.859891 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.670899 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.037623 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.974479 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.356910 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.915332 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.412967 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.732321 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.524161 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.003448 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.138863 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.701141 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.138828 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.960561 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.493983 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.176967 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 708.424789 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 695.190953 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.486557 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 696.040193 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.261100 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.921193 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 712.88 S.D. = 5.0078 S.E.M. = 0.070821 ECHO 0 Execution completed -2 * Loglike = 703.195743 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.257467 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.400095 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 716.430782 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.332583 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.207000 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.981633 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.296300 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.489470 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.299151 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.023203 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.711430 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.326261 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 714.155203 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.668764 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.241873 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.964889 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.253366 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 712.288144 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 696.687845 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.827698 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.225566 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.858119 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.128314 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.119116 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.394332 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.724399 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.310951 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.350635 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.637378 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.010653 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 697.996549 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 709.985076 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.263713 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 704.028947 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.013075 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 703.365285 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.625953 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.324072 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.842403 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.890813 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.218593 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.733345 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 711.237025 Actual update 4900 of 5000, Stored update 4900 of 5000 /nogui option ignored -2 * Loglike = 712.301534 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.206109 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.723289 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.925168 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.801630 Actual update 4800 of 5000, Stored update 4800 of 5000 ECHO 0 -2 * Loglike = 708.681107 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.105157 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.442399 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.183506 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 = 694.378393 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.10 S.D. = 5.2456 S.E.M. = 0.074184 ECHO 0 Execution completed -2 * Loglike = 710.978730 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.27 S.D. = 2.7820 S.E.M. = 0.039343 ECHO 0 Execution completed /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 704.496206 Burning in for 100 iterations out of 500 -2 * Loglike = 703.991651 Burning in for 150 iterations out of 500 -2 * Loglike = 704.119508 Burning in for 200 iterations out of 500 -2 * Loglike = 706.670404 Burning in for 250 iterations out of 500 -2 * Loglike = 708.111863 Burning in for 300 iterations out of 500 -2 * Loglike = 706.367759 Burning in for 350 iterations out of 500 -2 * Loglike = 711.468037 Burning in for 400 iterations out of 500 -2 * Loglike = 708.485263 Burning in for 450 iterations out of 500 -2 * Loglike = 705.470538 Burning in for 500 iterations out of 500 -2 * Loglike = 706.629489 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.454414 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 711.034533 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.237916 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.963693 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.939954 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.796104 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.123422 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.730664 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.031456 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.681780 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.277869 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.509004 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.780074 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.028141 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 711.206567 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 703.823955 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.388582 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 702.344604 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.564184 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 709.306066 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.458955 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.316293 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 for 50 iterations out of 500 -2 * Loglike = 697.411010 Burning in for 100 iterations out of 500 -2 * Loglike = 706.714352 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 695.953339 Burning in for 150 iterations out of 500 -2 * Loglike = 709.840829 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.466412 Burning in for 200 iterations out of 500 -2 * Loglike = 706.585364 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 700.314070 Burning in for 250 iterations out of 500 -2 * Loglike = 709.964409 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.701841 Burning in for 300 iterations out of 500 -2 * Loglike = 705.742176 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.741271 Burning in for 350 iterations out of 500 -2 * Loglike = 710.824666 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.039564 Burning in for 400 iterations out of 500 -2 * Loglike = 706.810380 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.177837 Burning in for 450 iterations out of 500 -2 * Loglike = 707.936385 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.367825 Burning in for 500 iterations out of 500 -2 * Loglike = 704.442410 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 699.238697 -2 * Loglike = 710.482988 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 = 707.149099 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.258386 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.300369 Actual update 1750 of 5000, Stored update 1750 of 5000 /nogui option ignored -2 * Loglike = 700.208723 Actual update 150 of 5000, Stored update 150 of 5000 /nogui option ignored -2 * Loglike = 694.620017 Actual update 200 of 5000, Stored update 200 of 5000 ECHO 0 -2 * Loglike = 703.347165 Actual update 1800 of 5000, Stored update 1800 of 5000 ECHO 0 -2 * Loglike = 701.696677 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.874888 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.714565 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.231481 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.528529 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.098959 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 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 for 50 iterations out of 500 -2 * Loglike = 704.071771 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 for 50 iterations out of 500 -2 * Loglike = 700.586457 Burning in for 150 iterations out of 500 -2 * Loglike = 713.934412 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.527282 Burning in for 200 iterations out of 500 -2 * Loglike = 706.412267 Burning in for 100 iterations out of 500 -2 * Loglike = 692.889318 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.333824 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.395595 Burning in for 250 iterations out of 500 -2 * Loglike = 705.763837 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.643481 Burning in for 300 iterations out of 500 -2 * Loglike = 703.885342 Burning in for 150 iterations out of 500 -2 * Loglike = 705.749176 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.741434 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 705.303437 Burning in for 350 iterations out of 500 -2 * Loglike = 705.508746 Burning in for 200 iterations out of 500 -2 * Loglike = 694.014931 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.095184 Burning in for 400 iterations out of 500 -2 * Loglike = 695.321557 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.349728 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 704.912742 Burning in for 450 iterations out of 500 -2 * Loglike = 707.223032 Burning in for 500 iterations out of 500 -2 * Loglike = 710.136232 Burning in for 250 iterations out of 500 -2 * Loglike = 696.912219 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.888922 Burning in for 300 iterations out of 500 -2 * Loglike = 712.738741 -2 * Loglike = 707.291516 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.970098 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 = 708.524988 Burning in for 350 iterations out of 500 -2 * Loglike = 705.027879 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.969129 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 703.522453 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.185151 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.614919 Burning in for 400 iterations out of 500 -2 * Loglike = 700.492654 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.804509 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.164222 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.231313 Burning in for 450 iterations out of 500 -2 * Loglike = 695.224512 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 709.767306 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.546464 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.479543 Burning in for 500 iterations out of 500 -2 * Loglike = 699.211832 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.567008 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 707.569527 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.185799 -2 * Loglike = 695.933338 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.480701 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 706.895762 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.692961 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 = 717.278997 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 712.770518 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.004582 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 709.959242 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 698.154955 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.476953 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.925566 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.149179 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.980591 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.956434 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.972080 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.346701 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 702.359281 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.894522 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.259126 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.718633 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.426163 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 699.786594 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.695917 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.752375 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 704.470256 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 700.145481 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.529940 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.102141 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 719.506029 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.969628 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.134375 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.663616 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 699.470122 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.354042 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.269268 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 706.615860 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.113365 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 721.022124 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.867845 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.280029 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.208161 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.239663 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.456821 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.655672 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 700.775180 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.954765 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.636735 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.206703 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 697.279126 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.330144 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.737415 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.192122 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.167052 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 705.546163 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.232812 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.215003 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.352595 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.703553 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.655752 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 707.958710 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 701.321797 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.069101 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.731557 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 706.454916 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.233482 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 703.203251 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.521480 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.918502 Actual update 3300 of 5000, Stored update 3300 of 5000 ECHO 0 -2 * Loglike = 705.922605 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.854995 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.827729 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 716.381879 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 706.043510 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.353864 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.868615 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.648047 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.531131 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.798267 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.006075 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.793290 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.911018 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.015128 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.123784 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.405311 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.453545 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.539639 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.587533 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.193727 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 708.230049 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.166552 Actual update 2100 of 5000, Stored update 2100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.779216 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.854757 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.446516 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 716.029575 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.627747 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 707.163373 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.146307 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.258538 Actual update 1550 of 5000, Stored update 1550 of 5000 /nogui option ignored -2 * Loglike = 702.992579 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.167134 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.325917 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.155277 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.872204 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.690094 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.588813 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.944643 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 713.249701 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.099511 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 701.635048 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.609604 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.136216 Actual update 3800 of 5000, Stored update 3800 of 5000 /nogui option ignored -2 * Loglike = 703.684427 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.357779 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.665595 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 711.518522 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.954169 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.173895 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.767160 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 711.763999 Actual update 3900 of 5000, Stored update 3900 of 5000 ECHO 0 -2 * Loglike = 706.862016 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.322444 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.032837 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.771251 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.172395 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 705.560969 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.291533 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.833955 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.036860 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 703.619025 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.450501 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.103509 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.743685 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.922370 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.773374 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.205537 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.369064 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.180632 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.489884 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.873724 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 710.220300 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.851030 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.343996 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.658237 Actual update 2100 of 5000, Stored update 2100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 701.828852 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.603103 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 701.709504 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.027577 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.119773 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.736431 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 712.233510 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.487255 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.317646 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.032417 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.763745 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.184798 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.804149 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.203767 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.505261 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.329444 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.600861 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.865147 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.223097 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 699.079203 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.393972 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.721189 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.236235 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.764514 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 707.573522 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 699.817111 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.447092 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.151573 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.906446 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 703.058352 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.175993 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.761359 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 707.772539 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.116765 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 706.490708 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.694015 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.644366 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.819669 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 717.701023 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.832679 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.213017 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.110666 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.349337 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.148660 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.707971 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.668163 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 706.645425 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.326792 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 712.112748 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 714.878329 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.246158 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 695.498361 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.182185 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.704443 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.581965 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 699.034514 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.233687 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.328662 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.501389 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.891312 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.170096 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored -2 * Loglike = 711.120859 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.459448 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.132219 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.878414 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.832251 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.132903 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.929761 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.186057 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 695.168483 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.002730 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 707.733298 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.442878 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 702.405975 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.902919 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.833902 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.183762 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.728853 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.247762 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.968356 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.466467 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 for 50 iterations out of 500 -2 * Loglike = 700.436139 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 717.975653 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.370666 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 743.236194 Burning in for 100 iterations out of 500 -2 * Loglike = 706.262072 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.078180 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.891035 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 739.521323 Burning in for 150 iterations out of 500 -2 * Loglike = 717.515220 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 706.926036 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.670328 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 740.119493 Burning in for 200 iterations out of 500 -2 * Loglike = 701.199998 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.593814 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.084122 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 743.071248 Burning in for 250 iterations out of 500 -2 * Loglike = 706.884249 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.119298 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 744.042638 Burning in for 300 iterations out of 500 -2 * Loglike = 697.098647 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.308555 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.905150 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 697.044469 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.644599 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.572399 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 742.515726 Burning in for 350 iterations out of 500 -2 * Loglike = 704.989245 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.447394 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.600945 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 748.542224 Burning in for 400 iterations out of 500 -2 * Loglike = 696.861879 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.190322 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.221352 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 708.04 S.D. = 4.1106 S.E.M. = 0.058133 ECHO 0 Execution completed -2 * Loglike = 742.059232 Burning in for 450 iterations out of 500 -2 * Loglike = 701.199588 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.679931 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 718.126695 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 743.592729 Burning in for 500 iterations out of 500 -2 * Loglike = 701.342054 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.148321 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.333877 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 742.893913 -2 * Loglike = 707.414589 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.006076 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 = 709.747321 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.612160 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.401005 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.342242 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.803841 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.143505 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 742.904340 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.522058 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.654783 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 744.481257 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 715.683996 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.030135 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 737.797412 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.828635 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.834893 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.689274 Actual update 4000 of 5000, Stored update 4000 of 5000 /nogui option ignored -2 * Loglike = 743.604451 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.631333 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.424155 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 741.299156 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.274708 Actual update 4550 of 5000, Stored update 4550 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 700.447240 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.433217 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 756.815785 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.007045 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.157605 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 715.628320 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 736.526295 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.814650 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 706.688181 Actual update 3850 of 5000, Stored update 3850 of 5000 ECHO 0 -2 * Loglike = 714.877794 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 742.000045 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.567838 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 709.523486 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 for 50 iterations out of 500 -2 * Loglike = 698.688559 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 740.228580 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 695.732339 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.226906 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.233515 Burning in for 100 iterations out of 500 -2 * Loglike = 717.618572 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 737.448004 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.718893 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.027712 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.829264 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 for 50 iterations out of 500 -2 * Loglike = 698.263214 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 739.170651 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.823287 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.730947 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 721.802115 Burning in for 200 iterations out of 500 -2 * Loglike = 728.853469 Burning in for 100 iterations out of 500 -2 * Loglike = 706.700156 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 738.786560 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.557208 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.245177 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 724.089619 Burning in for 250 iterations out of 500 -2 * Loglike = 728.457328 Burning in for 150 iterations out of 500 -2 * Loglike = 710.278472 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 739.709592 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.990637 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.472635 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 721.698212 Burning in for 300 iterations out of 500 -2 * Loglike = 727.186496 Burning in for 200 iterations out of 500 -2 * Loglike = 702.877950 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 737.410455 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.221813 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 718.382647 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.496501 Burning in for 350 iterations out of 500 -2 * Loglike = 728.671371 Burning in for 250 iterations out of 500 -2 * Loglike = 716.141745 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 746.254028 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.578107 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 726.955431 Burning in for 400 iterations out of 500 -2 * Loglike = 734.065724 Burning in for 300 iterations out of 500 -2 * Loglike = 708.072920 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 738.286617 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.392496 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 729.446286 Burning in for 450 iterations out of 500 -2 * Loglike = 737.225530 Burning in for 350 iterations out of 500 -2 * Loglike = 702.528471 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 743.864103 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.934269 Burning in for 500 iterations out of 500 -2 * Loglike = 707.114135 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 739.603692 Burning in for 400 iterations out of 500 -2 * Loglike = 703.452054 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 739.176941 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 725.073199 -2 * Loglike = 710.060383 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 732.647264 Burning in for 450 iterations out of 500 -2 * Loglike = 698.793000 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 746.184937 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 = 718.262385 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 728.177450 Burning in for 500 iterations out of 500 -2 * Loglike = 705.322813 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 742.871177 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 725.375077 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.647705 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 729.665903 -2 * Loglike = 702.893801 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 743.521304 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 732.668899 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.388753 Actual update 4550 of 5000, Stored update 4550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 718.515792 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 741.253053 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 730.690544 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.285667 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 729.558448 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 714.400925 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 742.364026 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 734.336802 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.122862 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 738.347675 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.630515 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 743.198710 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 731.612892 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.303377 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 735.444833 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 743.208559 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.904166 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.908952 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 739.581556 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 746.022652 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.783415 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.301825 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.561077 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.27 S.D. = 4.7636 S.E.M. = 0.067368 ECHO 0 Execution completed -2 * Loglike = 736.784816 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 743.014685 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 737.054141 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.809686 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 743.624946 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 752.032938 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 721.869652 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.511370 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.633597 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 741.776446 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 719.056672 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.927233 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 735.264090 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 743.333340 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 721.402398 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 705.241545 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 726.341398 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 741.585930 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.612123 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 730.530832 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 744.182510 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 732.296305 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 736.290917 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 743.391938 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.650594 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 729.460708 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 742.132704 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 730.016299 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 736.433304 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 738.609082 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 725.016583 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 726.551573 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 739.980132 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 699.569584 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.98 S.D. = 5.5499 S.E.M. = 0.078487 ECHO 0 Execution completed -2 * Loglike = 720.905920 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 738.082553 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 739.918849 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 724.070534 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 732.408862 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 738.870358 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 732.656531 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 740.029116 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 751.920260 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 730.610056 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 743.703256 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 729.224255 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 720.961556 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 738.635146 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 740.393923 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 725.778284 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 744.183696 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 736.184104 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 723.584271 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 743.869362 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 735.285405 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.838431 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 743.689419 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 731.743919 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 720.144511 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.964643 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 708.30 S.D. = 4.7514 S.E.M. = 0.067195 ECHO 0 Execution completed -2 * Loglike = 742.660443 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 731.881133 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.816778 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 744.781389 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 733.108478 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 730.415564 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 753.111429 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 732.135149 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 731.423828 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 740.595907 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 735.129523 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 733.909132 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 738.647540 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 735.778730 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.071284 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 743.765784 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 736.565781 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 724.001700 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 747.767972 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 739.313664 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 731.195219 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 743.379232 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 735.374009 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 723.292295 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 744.566248 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 735.774756 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 732.885433 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 742.797416 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 737.821325 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 718.243057 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 745.497113 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.192925 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.808935 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 754.417684 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 739.687553 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.406555 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 741.386136 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 728.650755 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.686272 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 744.210821 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 727.680982 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 724.208970 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 743.523435 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 737.499976 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 732.037530 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 741.908860 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 729.000228 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 722.165630 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 728.977511 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 744.614887 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 723.217019 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 737.946449 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 740.653905 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 728.914873 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 742.676905 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 730.242211 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 720.018739 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 742.185539 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 733.085625 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 722.269898 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 746.112000 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 736.472863 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 727.991196 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 751.839322 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 732.344071 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 725.696181 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 738.531609 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 738.267403 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.731268 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 744.621722 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 730.664925 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 727.966947 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 744.084345 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 737.343568 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 731.639408 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 744.809265 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 732.853197 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 735.218303 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 738.210837 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 736.294103 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 726.409770 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 737.765247 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 736.845346 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.948566 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 738.356675 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 720.589035 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 742.080494 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 747.545730 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 734.157436 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.454662 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 737.990768 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 725.990997 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 731.344710 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 746.807097 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 730.395430 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 730.072563 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 751.490359 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 725.776862 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 738.990273 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 752.533769 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.046072 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 734.361261 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 746.500574 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 724.229527 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 730.519927 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 738.657205 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 719.373020 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 734.539196 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 740.557970 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 736.971867 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 719.632421 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 748.863834 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 733.011925 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.131365 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 740.317905 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 729.594659 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 725.043451 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 739.491842 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 735.145674 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 727.425830 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 747.010159 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 732.392078 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 731.252252 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 742.600637 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 732.657157 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 738.824828 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 748.788123 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.817593 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 735.854595 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 746.352395 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 724.153584 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 728.621256 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 738.777991 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 722.304732 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 729.912639 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 748.737170 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 726.167783 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 -2 * Loglike = 734.024210 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 745.439162 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 717.346879 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 735.793382 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 739.051508 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 725.502309 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 734.213697 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 747.010031 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 729.174040 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 727.256553 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 739.274624 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 738.283666 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.191190 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 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 for 50 iterations out of 500 -2 * Loglike = 742.135116 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.479453 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 743.818574 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.049036 Burning in for 100 iterations out of 500 -2 * Loglike = 744.455926 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 729.553711 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 729.279107 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.697229 Burning in for 150 iterations out of 500 -2 * Loglike = 735.963342 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 749.368735 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 736.783766 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.864249 Burning in for 200 iterations out of 500 -2 * Loglike = 732.092548 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 740.462928 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 741.350443 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.099683 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.405476 Burning in for 250 iterations out of 500 -2 * Loglike = 753.161434 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 737.945248 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 728.776451 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.742038 Burning in for 300 iterations out of 500 -2 * Loglike = 721.975611 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 733.364178 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 729.128449 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 733.041341 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.423753 Burning in for 350 iterations out of 500 -2 * Loglike = 720.999363 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 729.879788 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.177572 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 718.142853 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 738.890335 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.147164 Burning in for 450 iterations out of 500 /nogui option ignored -2 * Loglike = 733.889684 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 737.029827 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.452237 Burning in for 500 iterations out of 500 ECHO 0 -2 * Loglike = 730.858174 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 725.551872 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 702.482515 -2 * Loglike = 730.784281 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 733.413951 Actual update 4250 of 5000, Stored update 4250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 723.415452 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 738.497415 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 743.60 S.D. = 4.1646 S.E.M. = 0.058896 ECHO 0 Execution completed -2 * Loglike = 739.315385 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 for 50 iterations out of 500 -2 * Loglike = 700.344174 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 726.602220 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 735.994692 Actual update 4350 of 5000, Stored update 4350 of 5000 ECHO 0 -2 * Loglike = 738.669076 Burning in for 100 iterations out of 500 -2 * Loglike = 705.854684 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 728.188017 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 735.757924 Actual update 4400 of 5000, Stored update 4400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 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 for 50 iterations out of 500 -2 * Loglike = 738.326857 Burning in for 150 iterations out of 500 -2 * Loglike = 695.647763 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 723.190067 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 739.271464 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 705.026855 Burning in for 100 iterations out of 500 -2 * Loglike = 738.349964 Burning in for 200 iterations out of 500 -2 * Loglike = 702.879012 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 732.921072 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 736.462849 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 702.497532 Burning in for 150 iterations out of 500 -2 * Loglike = 745.464616 Burning in for 250 iterations out of 500 -2 * Loglike = 699.157130 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.062744 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 734.315395 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.801713 Burning in for 200 iterations out of 500 -2 * Loglike = 745.474638 Burning in for 300 iterations out of 500 -2 * Loglike = 713.978709 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.558777 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 734.069845 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 706.432928 Burning in for 250 iterations out of 500 -2 * Loglike = 743.435866 Burning in for 350 iterations out of 500 -2 * Loglike = 695.507515 Actual update 400 of 5000, Stored update 400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 723.829404 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 736.871755 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 710.378605 Burning in for 300 iterations out of 500 -2 * Loglike = 702.093360 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 733.513743 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 739.050346 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 706.900664 Burning in for 350 iterations out of 500 -2 * Loglike = 700.679486 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 733.312344 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 735.053570 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.331141 Burning in for 400 iterations out of 500 -2 * Loglike = 696.278080 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 728.764404 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 745.949843 Burning in for 400 iterations out of 500 -2 * Loglike = 731.687381 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.797838 Burning in for 450 iterations out of 500 -2 * Loglike = 698.952863 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 742.923745 Burning in for 450 iterations out of 500 -2 * Loglike = 735.474554 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.116188 Burning in for 500 iterations out of 500 -2 * Loglike = 697.840431 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 743.705230 Burning in for 500 iterations out of 500 -2 * Loglike = 740.007986 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.302893 -2 * Loglike = 698.847471 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 740.060607 -2 * Loglike = 736.188388 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 = 695.711311 Actual update 750 of 5000, Stored update 750 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.899389 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.507732 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.231770 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 739.619028 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.785753 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.277410 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 747.007177 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.574711 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 702.788349 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 736.109152 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.932749 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.967970 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 744.411320 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 703.478083 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.121234 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 738.421535 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.420329 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.148832 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 753.318176 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.844066 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.837079 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 735.557418 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.028770 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.189606 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 747.323965 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.181329 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.352512 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 737.073654 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.867157 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.792520 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 736.607693 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.944556 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 700.021407 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 737.054547 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 701.520779 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.236267 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 726.25 S.D. = 4.9170 S.E.M. = 0.069537 ECHO 0 Execution completed -2 * Loglike = 705.640205 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 739.445453 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.237016 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.947760 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 739.350818 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.353078 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.301265 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 735.592962 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.016155 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 699.518594 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 745.875738 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.524402 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 699.173322 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 730.057528 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 734.80 S.D. = 3.8548 S.E.M. = 0.054515 ECHO 0 Execution completed -2 * Loglike = 738.611774 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.924757 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.986744 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 741.253943 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.621105 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.319005 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 738.800439 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.601996 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 701.355904 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 753.436388 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.380536 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.571713 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 740.438645 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.913342 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.677155 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 742.532493 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.490678 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 697.425358 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 740.487129 Actual update 1150 of 5000, Stored update 1150 of 5000 /nogui option ignored -2 * Loglike = 705.919796 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.286723 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 741.323098 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.183270 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.369153 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 743.471968 Actual update 1250 of 5000, Stored update 1250 of 5000 ECHO 0 -2 * Loglike = 709.829181 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.285359 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 738.491356 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.630564 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.187933 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 742.573039 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.790007 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.672025 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 755.613920 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.230099 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 715.070288 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 758.483985 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.756900 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.694124 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.507224 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 701.401651 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 759.872787 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.410739 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.814492 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 757.716620 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.762328 Actual update 2350 of 5000, Stored update 2350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 706.249883 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 753.700568 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 716.731794 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.346341 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.275344 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 743.076239 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.553071 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.777083 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 737.248786 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.038860 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 702.284444 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 744.062150 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.360849 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 710.577545 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 736.330231 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.151895 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.235692 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 738.977834 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 704.860447 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.591766 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 740.955504 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.439026 Actual update 2000 of 5000, Stored update 2000 of 5000 /nogui option ignored -2 * Loglike = 700.611159 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 739.549963 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.507272 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.360460 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 747.332084 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.009988 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.463648 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 746.295106 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.650912 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.243587 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 741.455421 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.504575 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.458530 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 750.383694 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.544719 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.593462 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 744.499067 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.627530 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.342821 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 739.360284 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.104959 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 700.601189 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 740.696623 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.518855 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 699.975581 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 753.359899 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.745475 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.486287 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 751.953423 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.697310 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.985587 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 739.348320 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.946879 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.551002 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 = 741.164067 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.785355 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.005107 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 740.392604 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.374687 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.911979 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 763.856677 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.854991 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.948684 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 747.788757 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.264106 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.207691 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 744.213704 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.643872 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.550792 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 740.837977 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.314211 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.060851 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 744.866511 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.936488 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.515972 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 746.055953 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.356977 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.843681 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 740.663183 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 709.998742 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 706.171308 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 742.106864 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.889658 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.701764 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 744.932664 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.970012 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.795240 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 738.050493 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.822088 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.200997 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 739.605002 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.529225 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.107942 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 739.994755 Actual update 3150 of 5000, Stored update 3150 of 5000 /nogui option ignored -2 * Loglike = 706.822046 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 739.579714 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.625360 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 738.380071 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.741096 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.213135 Actual update 3250 of 5000, Stored update 3250 of 5000 ECHO 0 -2 * Loglike = 743.293616 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.374767 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.789998 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 754.179980 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.959236 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.825037 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 738.839449 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.907587 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.626034 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 742.654507 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.736561 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.831154 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 740.178459 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.453123 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.091075 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 743.647890 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.957128 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 708.302646 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 736.665917 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.321257 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 700.671478 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 738.149100 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.534449 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.706087 Actual update 3650 of 5000, Stored update 3650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 740.551674 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.938675 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.325201 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 746.645581 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.719948 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.315769 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 738.731184 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.815824 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.419114 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 742.250804 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.592260 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 717.828791 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 744.998029 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.394585 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.726863 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 759.311625 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.507441 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 711.684336 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 745.585790 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.345013 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 710.932072 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 750.371518 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.903052 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.607444 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 739.041771 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.025386 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.827336 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 748.660567 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.996769 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 712.568081 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 739.396888 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.822308 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 737.656796 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.289144 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 744.423279 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.497191 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 740.709751 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.296914 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 745.437593 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.667405 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 750.700739 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.738958 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 742.864319 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.438509 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 743.685180 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 722.517591 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 744.895025 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.247190 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 743.726897 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.479733 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 742.558627 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.675632 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 737.174289 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.184144 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 740.294776 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.555184 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 745.049937 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.387910 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 747.462426 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.839971 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.42 S.D. = 4.3009 S.E.M. = 0.060825 ECHO 0 Execution completed -2 * Loglike = 717.994305 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 740.980062 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 704.849317 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 741.881048 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.622980 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 737.703317 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 743.54 S.D. = 5.8923 S.E.M. = 0.083329 ECHO 0 Execution completed -2 * Loglike = 701.388900 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.88 S.D. = 4.5644 S.E.M. = 0.064550 ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored /nogui option ignored /nogui option ignored ECHO 0 ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 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 for 50 iterations out of 500 -2 * Loglike = 717.986860 Burning in for 100 iterations out of 500 -2 * Loglike = 711.705507 Burning in for 150 iterations out of 500 -2 * Loglike = 713.598810 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 = 719.596598 Burning in for 250 iterations out of 500 -2 * Loglike = 716.895673 Burning in for 300 iterations out of 500 -2 * Loglike = 716.620740 Burning in for 350 iterations out of 500 -2 * Loglike = 719.823794 Burning in for 400 iterations out of 500 -2 * Loglike = 717.101862 Burning in for 450 iterations out of 500 -2 * Loglike = 719.418365 Burning in for 500 iterations out of 500 -2 * Loglike = 716.100236 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.902774 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 714.840398 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.000597 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.784967 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.626006 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 726.604371 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.671916 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.746334 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 713.855148 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 710.777840 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.308566 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.987063 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.098547 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.151510 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.608566 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.967921 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.970433 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.202900 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 723.424932 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.447391 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.258806 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.864038 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.110894 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 716.140582 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.243024 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 717.141156 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 728.579671 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.355985 Actual update 1450 of 5000, Stored update 1450 of 5000 /nogui option ignored -2 * Loglike = 726.683990 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 728.939375 Actual update 1550 of 5000, Stored update 1550 of 5000 ECHO 0 -2 * Loglike = 711.428439 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.729580 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.036799 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.877298 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 709.773411 Actual update 1800 of 5000, Stored update 1800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 711.736149 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.311373 Burning in for 100 iterations out of 500 -2 * Loglike = 711.828577 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.024103 Burning in for 150 iterations out of 500 -2 * Loglike = 713.164099 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.591025 Burning in for 200 iterations out of 500 -2 * Loglike = 723.327509 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.603978 Burning in for 250 iterations out of 500 -2 * Loglike = 719.134784 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.458089 Burning in for 300 iterations out of 500 -2 * Loglike = 715.001266 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.149637 Burning in for 350 iterations out of 500 -2 * Loglike = 717.908510 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.339385 Burning in for 400 iterations out of 500 -2 * Loglike = 713.092816 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.541415 Burning in for 450 iterations out of 500 -2 * Loglike = 712.629462 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.826240 Burning in for 500 iterations out of 500 -2 * Loglike = 713.390415 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.397961 -2 * Loglike = 723.475206 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 = 723.701061 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 690.820514 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 729.906368 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.941530 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 714.133893 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 687.777412 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.173653 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.969063 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 735.977252 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.727752 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.155656 Actual update 2650 of 5000, Stored update 2650 of 5000 /nogui option ignored -2 * Loglike = 706.564401 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 716.737224 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.715066 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.241064 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.373741 Actual update 2800 of 5000, Stored update 2800 of 5000 ECHO 0 -2 * Loglike = 696.703175 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.679785 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 689.886311 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 714.945816 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 688.394573 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.989975 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.516054 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 687.876385 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.539509 Actual update 3050 of 5000, Stored update 3050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 690.010987 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.731582 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.382500 Burning in for 100 iterations out of 500 -2 * Loglike = 689.843364 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.020559 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.129036 Burning in for 150 iterations out of 500 -2 * Loglike = 687.201876 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.883771 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.370015 Burning in for 200 iterations out of 500 -2 * Loglike = 696.316291 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.921652 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.411473 Burning in for 250 iterations out of 500 -2 * Loglike = 689.946078 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.855499 Burning in for 300 iterations out of 500 -2 * Loglike = 716.828189 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.335089 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.315259 Burning in for 350 iterations out of 500 -2 * Loglike = 726.137701 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.976585 Burning in for 400 iterations out of 500 -2 * Loglike = 691.704394 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.809423 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.711458 Burning in for 450 iterations out of 500 -2 * Loglike = 700.228007 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 717.749465 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.711472 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 692.523330 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.682077 -2 * Loglike = 716.085031 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 = 695.062913 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.968561 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 -2 * Loglike = 693.088689 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.688743 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.398390 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.050417 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 693.495036 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 713.963331 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.007678 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.370251 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.921879 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 713.296977 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 691.705526 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.251132 Actual update 1300 of 5000, Stored update 1300 of 5000 ECHO 0 -2 * Loglike = 720.350090 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 707.629012 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 694.314441 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.084291 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 687.144232 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.192445 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.689740 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.022790 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.577831 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.867994 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 692.632598 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 732.344647 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 693.147288 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.286225 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.816973 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 for 50 iterations out of 500 -2 * Loglike = 688.535093 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 713.323481 Actual update 4050 of 5000, Stored update 4050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 692.280505 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 690.350099 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 691.093207 Burning in for 100 iterations out of 500 -2 * Loglike = 712.816420 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.189209 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.463344 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.611908 Burning in for 150 iterations out of 500 -2 * Loglike = 719.907514 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 691.674466 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.405302 Burning in for 200 iterations out of 500 -2 * Loglike = 692.163410 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 686.978617 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 713.187259 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.636106 Burning in for 250 iterations out of 500 -2 * Loglike = 691.918899 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.510958 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.741270 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 696.610941 Burning in for 300 iterations out of 500 -2 * Loglike = 687.973158 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 728.447320 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.928305 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.907623 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.034573 Burning in for 350 iterations out of 500 -2 * Loglike = 714.408019 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.141067 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 718.499739 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.437423 Burning in for 400 iterations out of 500 -2 * Loglike = 691.273047 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.563817 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.665744 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.549302 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.505165 Burning in for 450 iterations out of 500 -2 * Loglike = 698.133817 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.754220 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 702.759307 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.782063 Burning in for 500 iterations out of 500 -2 * Loglike = 692.254398 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 694.038692 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.317216 -2 * Loglike = 699.358575 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 717.026923 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 689.700499 Actual update 2100 of 5000, Stored update 2100 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.603382 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 691.290103 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.675043 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.047440 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.387385 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.117233 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.810087 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 701.915405 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.555159 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 723.948642 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.178499 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.909410 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.580390 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.702753 Actual update 4750 of 5000, Stored update 4750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 705.200705 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.267971 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.502146 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.814440 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.456747 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.463024 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.265335 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.565512 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.469968 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.001855 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.882439 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.292508 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.721617 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.623219 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.183658 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 716.319014 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.650117 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.727916 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.641328 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.346540 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.358903 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.533240 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.819053 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.745241 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.893351 Actual update 550 of 5000, Stored update 550 of 5000 /nogui option ignored -2 * Loglike = 702.835161 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 690.780655 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.163422 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 702.105663 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 693.706723 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.338108 Actual update 2700 of 5000, Stored update 2700 of 5000 ECHO 0 -2 * Loglike = 705.281134 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.632803 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.660057 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.557238 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.336072 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 690.560384 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.984559 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.473742 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 703.549750 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.188686 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 691.621917 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 694.851493 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.471396 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.585959 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.571399 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.989372 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.335771 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.967060 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.564378 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.709441 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 704.589629 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 = 692.281424 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.397506 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.054053 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.273229 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.463765 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.168167 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 696.498338 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.971235 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.414855 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.930629 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 717.21 S.D. = 5.7045 S.E.M. = 0.080674 ECHO 0 Execution completed -2 * Loglike = 692.482274 Actual update 1200 of 5000, Stored update 1200 of 5000 ECHO 0 -2 * Loglike = 704.452191 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.640590 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.713684 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.863370 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 689.965438 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.119956 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 696.023807 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.359182 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.867015 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 705.409278 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.916710 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.387663 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.803268 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.913196 Actual update 2500 of 5000, Stored update 2500 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 for 50 iterations out of 500 -2 * Loglike = 702.622269 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.640830 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.866713 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.054915 Burning in for 100 iterations out of 500 -2 * Loglike = 706.447692 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.862997 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.853920 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.444934 Burning in for 150 iterations out of 500 -2 * Loglike = 701.393393 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 695.016821 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.168066 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 703.109134 Burning in for 200 iterations out of 500 -2 * Loglike = 694.857439 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.374490 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 688.451573 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.300803 Burning in for 250 iterations out of 500 -2 * Loglike = 692.897973 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.876272 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.269580 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.297209 Burning in for 300 iterations out of 500 -2 * Loglike = 696.187377 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.863821 Burning in for 350 iterations out of 500 -2 * Loglike = 702.698207 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.376881 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.716288 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.708883 Burning in for 400 iterations out of 500 -2 * Loglike = 705.668755 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 697.109046 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.628047 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.270675 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.029968 Burning in for 450 iterations out of 500 -2 * Loglike = 690.783893 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.047515 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.751787 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.197326 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.431686 Burning in for 500 iterations out of 500 -2 * Loglike = 701.029088 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 703.426712 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 698.431588 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.418084 -2 * Loglike = 689.943596 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.173658 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 693.110622 Actual update 1950 of 5000, Stored update 1950 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.778894 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.725618 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 698.652426 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.933297 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.765214 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.222318 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 688.965900 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.586431 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.635926 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.143982 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.270797 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.394775 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.789396 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 701.370406 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.558492 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.994583 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.523777 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 706.475480 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.195735 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.255578 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 696.205548 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.678367 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.317951 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.855096 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.121716 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 719.132498 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.328409 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.800003 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.953119 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.424810 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.525305 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.752632 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.233470 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.671189 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.787797 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.388110 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 695.701822 Actual update 2450 of 5000, Stored update 2450 of 5000 /nogui option ignored -2 * Loglike = 694.609776 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.735222 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.219220 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 697.707306 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.073373 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.081316 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.043045 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 702.956234 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 688.773080 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.680276 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.193893 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.005890 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.570099 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.283951 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.954501 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 696.026481 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.551510 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.848488 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 704.499744 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 689.322167 Actual update 4750 of 5000, Stored update 4750 of 5000 /nogui option ignored -2 * Loglike = 700.647107 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.639088 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.171560 Actual update 750 of 5000, Stored update 750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 692.004263 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.384219 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.355622 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 733.812917 Burning in for 100 iterations out of 500 -2 * Loglike = 704.413952 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 695.448858 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 707.975834 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.922500 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.745566 Burning in for 150 iterations out of 500 -2 * Loglike = 701.314784 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.425216 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.980502 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 733.193635 Burning in for 200 iterations out of 500 -2 * Loglike = 702.275503 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.807424 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 704.146394 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.340213 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 731.401267 Burning in for 250 iterations out of 500 -2 * Loglike = 699.578305 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.570334 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.656048 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.377757 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 729.999789 Burning in for 300 iterations out of 500 -2 * Loglike = 695.856694 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 711.113172 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.052299 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 for 50 iterations out of 500 -2 * Loglike = 734.778206 Burning in for 350 iterations out of 500 -2 * Loglike = 700.546618 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 702.382260 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.841000 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 683.178416 Burning in for 100 iterations out of 500 -2 * Loglike = 738.717660 Burning in for 400 iterations out of 500 -2 * Loglike = 696.690310 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.687096 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.262857 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 679.735219 Burning in for 150 iterations out of 500 -2 * Loglike = 736.305199 Burning in for 450 iterations out of 500 -2 * Loglike = 694.107288 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.936118 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.133386 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 680.026678 Burning in for 200 iterations out of 500 -2 * Loglike = 731.814697 Burning in for 500 iterations out of 500 -2 * Loglike = 698.989436 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 702.999580 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.714966 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 681.274888 Burning in for 250 iterations out of 500 -2 * Loglike = 733.750373 -2 * Loglike = 695.367022 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.904388 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.138872 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 685.435712 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 = 698.171985 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.800405 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.796122 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 682.051739 Burning in for 350 iterations out of 500 -2 * Loglike = 737.138919 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.400605 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 704.469319 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.985318 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 689.248309 Burning in for 400 iterations out of 500 -2 * Loglike = 736.870706 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 700.621729 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.957073 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.931395 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 682.923248 Burning in for 450 iterations out of 500 -2 * Loglike = 733.360904 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 692.668946 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.188159 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.438785 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 684.200151 Burning in for 500 iterations out of 500 -2 * Loglike = 737.216120 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.716551 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.221858 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.078075 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.513318 -2 * Loglike = 735.431899 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.060030 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.611100 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.113637 Actual update 4650 of 5000, Stored update 4650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 701.700481 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.410227 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.553999 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 682.867126 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 690.055726 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.577330 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.299855 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.926283 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.211588 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.423641 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 693.763915 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 678.463652 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 744.398457 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.516571 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.312251 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.393775 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 682.522615 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 732.215061 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 709.441648 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.144662 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.140211 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 681.713398 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.967999 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.884035 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.914158 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 702.166580 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 689.051429 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.71 S.D. = 4.0545 S.E.M. = 0.057339 ECHO 0 Execution completed -2 * Loglike = 697.546724 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 732.836736 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 702.570567 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.404640 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.265493 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 677.044255 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 729.202256 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 707.557691 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 701.236498 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.928732 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 734.097952 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.841783 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 713.097136 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 681.459850 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 733.164601 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.561319 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.489714 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 679.157550 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 735.062696 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.068707 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.958155 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 679.591297 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 728.500404 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.757991 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.171015 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 678.226272 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 735.667984 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 701.971543 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.720706 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 683.135832 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 731.737692 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.875729 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 705.282391 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 677.342014 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 738.054870 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.894120 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.685409 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.103466 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 732.671344 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.415931 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 710.329906 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 679.353983 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 739.030817 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 701.612232 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.083497 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.423423 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 733.771064 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.116161 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.333029 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.002133 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 733.040027 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.315526 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.845225 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.537967 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 732.607676 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.216394 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.374127 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 683.587764 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 731.772746 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.503983 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.767155 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 684.057386 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 732.848303 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 700.348191 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.645180 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.839396 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.820348 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.247404 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 683.098005 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.046127 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.267056 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 682.533125 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.326232 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.297441 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.243491 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.911411 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 696.51 S.D. = 5.3930 S.E.M. = 0.076269 ECHO 0 Execution completed -2 * Loglike = 696.067207 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 734.298407 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.251928 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 697.777818 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 737.473845 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.083935 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.076578 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 733.941040 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 699.793405 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.629174 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 734.361727 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.744160 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 682.926221 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.127705 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 735.407776 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.312819 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 680.502094 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 732.998311 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.752942 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.342991 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 733.869955 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.116679 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 736.441731 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 687.274097 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 703.709295 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.832351 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 682.142098 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.776335 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 737.157667 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 678.070080 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.631633 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 732.829886 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 678.984188 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 702.002780 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 732.081216 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 680.843776 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.431252 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 734.614557 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 681.075463 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.334964 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 731.094424 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.839986 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.354566 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 731.501649 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 681.762626 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 713.332454 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 735.782904 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 678.068492 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.413414 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 731.720964 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 682.621346 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.993229 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 728.474322 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 685.785785 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.870842 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 733.775789 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.323815 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.118718 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 731.219188 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 683.641287 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.219395 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 735.780222 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 682.815676 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.644323 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 731.985174 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 692.101128 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.294875 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 735.005781 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 681.214710 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 708.913561 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 735.547948 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.634737 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.102243 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 734.012041 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.079863 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.328020 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 734.966081 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 693.507880 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 729.158522 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 739.439546 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.558606 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 735.111121 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.218631 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.34 S.D. = 4.6273 S.E.M. = 0.065439 ECHO 0 Execution completed -2 * Loglike = 724.986625 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.795132 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 729.664387 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.725971 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 682.286656 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 730.499776 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 706.533648 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.895277 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.764265 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.118170 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.956463 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 731.502924 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.774423 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 680.753947 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 734.842332 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.945860 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 685.343640 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 735.076384 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.656284 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.638333 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.627048 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.049773 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 684.073288 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 735.150858 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 683.136271 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.253036 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 729.958172 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 681.850372 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.905906 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 732.138646 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 682.294276 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.911955 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 735.550536 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.387341 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.274301 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 736.451267 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 714.836744 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.100028 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 738.571839 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.028878 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 691.400714 Actual update 3350 of 5000, Stored update 3350 of 5000 /nogui option ignored -2 * Loglike = 732.103759 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.165109 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 679.453994 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 731.831281 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.720770 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.546890 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 733.598882 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.641255 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 734.781733 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 682.942305 Actual update 3500 of 5000, Stored update 3500 of 5000 ECHO 0 -2 * Loglike = 704.441425 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 734.589995 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.125246 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.319073 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 733.189715 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 678.040968 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 721.248744 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 734.274922 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 677.980565 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.005043 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 733.448297 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 678.944753 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 722.839075 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 741.471608 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 686.685133 Actual update 3750 of 5000, Stored update 3750 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 for 50 iterations out of 500 -2 * Loglike = 729.877915 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.558631 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 702.358164 Burning in for 100 iterations out of 500 -2 * Loglike = 733.573479 Actual update 3850 of 5000, Stored update 3850 of 5000 /nogui option ignored -2 * Loglike = 689.198885 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.678475 Burning in for 150 iterations out of 500 -2 * Loglike = 738.762875 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 690.448897 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 701.210021 Burning in for 200 iterations out of 500 -2 * Loglike = 735.401329 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 685.440246 Actual update 3950 of 5000, Stored update 3950 of 5000 ECHO 0 -2 * Loglike = 702.750420 Burning in for 250 iterations out of 500 -2 * Loglike = 731.165546 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 687.324183 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.145531 Burning in for 300 iterations out of 500 -2 * Loglike = 731.399357 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 679.786949 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.025018 Burning in for 350 iterations out of 500 -2 * Loglike = 735.013181 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 681.390993 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 708.543229 Burning in for 400 iterations out of 500 -2 * Loglike = 735.500957 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.789128 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 704.492208 Burning in for 450 iterations out of 500 -2 * Loglike = 735.113966 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 680.199486 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.541176 Burning in for 500 iterations out of 500 -2 * Loglike = 731.164645 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 679.043969 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.174906 -2 * Loglike = 736.587630 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 692.546263 Actual update 4300 of 5000, Stored update 4300 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 734.818759 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 680.345288 Actual update 4350 of 5000, Stored update 4350 of 5000 /nogui option ignored -2 * Loglike = 704.523465 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 687.894515 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 736.844297 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.207251 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.997918 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 736.900493 Actual update 4450 of 5000, Stored update 4450 of 5000 ECHO 0 -2 * Loglike = 679.828296 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 698.365526 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 733.837022 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.846788 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.30 S.D. = 5.5418 S.E.M. = 0.078372 ECHO 0 Execution completed -2 * Loglike = 694.161281 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 735.185992 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.553771 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.822358 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 736.444905 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.453944 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 680.719789 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 733.594153 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 for 50 iterations out of 500 -2 * Loglike = 716.781607 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 686.835453 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 736.627165 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.796770 Burning in for 100 iterations out of 500 -2 * Loglike = 696.827183 Actual update 400 of 5000, Stored update 400 of 5000 ECHO 0 -2 * Loglike = 679.491306 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.697782 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.231701 Burning in for 150 iterations out of 500 -2 * Loglike = 733.872159 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.728083 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.111930 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 731.584678 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.288604 Burning in for 200 iterations out of 500 -2 * Loglike = 680.084058 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.666995 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 699.174564 Burning in for 250 iterations out of 500 -2 * Loglike = 733.325444 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.912242 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.965564 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 701.750879 Burning in for 300 iterations out of 500 -2 * Loglike = 735.976436 Actual update 4900 of 5000, Stored update 4900 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 for 50 iterations out of 500 -2 * Loglike = 682.127828 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.629555 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.700761 Burning in for 350 iterations out of 500 -2 * Loglike = 733.976199 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.467217 Burning in for 100 iterations out of 500 -2 * Loglike = 693.635302 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.297020 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.950297 Burning in for 400 iterations out of 500 -2 * Loglike = 733.126117 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.149908 Burning in for 150 iterations out of 500 -2 * Loglike = 697.321902 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.998494 Burning in for 450 iterations out of 500 -2 * Loglike = 690.441418 Burning in for 200 iterations out of 500 -2 * Loglike = 701.780877 Burning in for 500 iterations out of 500 -2 * Loglike = 704.293343 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.391813 Burning in for 250 iterations out of 500 -2 * Loglike = 705.461088 -2 * Loglike = 698.269976 Burning in for 300 iterations out of 500 -2 * Loglike = 700.133014 Actual update 850 of 5000, Stored update 850 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 693.985249 Burning in for 350 iterations out of 500 -2 * Loglike = 698.811011 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.674364 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.326121 Burning in for 400 iterations out of 500 -2 * Loglike = 701.430769 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 695.977347 Burning in for 450 iterations out of 500 -2 * Loglike = 702.324549 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.880204 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.284569 Burning in for 500 iterations out of 500 -2 * Loglike = 706.568221 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 700.336352 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.138719 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.770375 -2 * Loglike = 695.833024 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 703.680462 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 = 711.504955 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 702.170079 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.200377 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.950954 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.978292 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.058340 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.392600 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 689.468352 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 703.100976 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.705256 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 695.430189 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.083525 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.225925 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.212752 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.511922 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.992715 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.859420 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.203318 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.886416 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 678.014898 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.29 S.D. = 4.8380 S.E.M. = 0.068420 ECHO 0 Execution completed -2 * Loglike = 688.893077 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 718.515243 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.116222 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.067089 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 702.911564 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.319824 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.538767 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 700.603912 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.294037 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.953207 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.958415 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.721053 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.856506 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.051288 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.460859 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.298366 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.946396 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.464290 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.922019 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 734.488700 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 734.30 S.D. = 2.5382 S.E.M. = 0.035895 ECHO 0 Execution completed -2 * Loglike = 701.935697 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.895457 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.749348 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.023731 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.054811 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.646490 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.153691 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.373971 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.894523 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.281556 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 698.440304 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.374224 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.831442 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.721584 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.915982 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.362534 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.134909 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.812383 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.860148 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.375889 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.678441 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.467756 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.919203 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.657243 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.467163 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.840713 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.082767 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.294947 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.034577 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 712.368633 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.743363 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.816698 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.008135 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.030311 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.104603 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 710.386806 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.329691 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.497289 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.967037 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.524881 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.602756 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 704.516449 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.733561 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.513169 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.024998 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.417379 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.510897 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.460270 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.736607 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.718608 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.680339 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 694.325194 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 704.487950 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.428379 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.219137 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.874316 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.257132 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.421764 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.578030 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.873962 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.386541 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.308524 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 701.982239 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.655224 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.198911 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.759895 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 699.232602 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.367159 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.252749 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.998638 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.273291 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.253446 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.472864 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.313687 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.472952 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.404283 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.965861 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.058106 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.774977 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.468240 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.513787 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 701.774389 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 692.648989 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.388123 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.903215 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 696.286675 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.057381 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.845626 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 697.594922 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.723414 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 705.299432 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.790735 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 695.143756 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.148650 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 691.561685 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.146481 Actual update 2500 of 5000, Stored update 2500 of 5000 ECHO 0 -2 * Loglike = 712.322417 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.565566 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 699.087344 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.994865 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.651699 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.831272 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 701.527117 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.470245 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.568117 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.931780 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.159663 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.528596 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.524988 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.753627 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.775746 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 698.394402 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.016044 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.712844 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.697197 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.035502 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.029041 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.189599 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.587860 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.797790 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.528801 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.657933 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.270597 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.148138 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 694.951394 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.746695 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 699.286154 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 693.164482 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.812334 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.055476 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.107112 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.650568 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.862118 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.765535 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.750930 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.574663 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.126332 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.143580 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.769319 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.841862 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.988319 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 693.378729 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 709.785578 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.197430 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 693.808288 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 697.327184 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.839438 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 693.503501 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.871702 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.950698 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.347373 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.360245 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.528092 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.773919 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.102565 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 698.711019 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 692.765507 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.214138 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.412897 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.057467 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.420760 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.466175 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.351964 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.142455 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.220609 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 695.274712 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.683019 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.466698 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 689.914928 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 698.962955 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.212392 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 690.055338 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.815919 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.009691 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 691.149934 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.676554 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 707.108456 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.442190 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 706.488578 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.643559 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.660380 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 702.590535 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.765268 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.051382 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.515064 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.824019 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.592563 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.659837 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.424976 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.192912 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 706.478270 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 701.488926 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.557152 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.140076 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 709.370015 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.737295 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 693.264490 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.785185 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.924821 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.305944 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.392348 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.596545 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.465849 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.021409 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.191181 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.227334 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.629148 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.374144 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.670717 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.359895 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.662038 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.524596 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.698554 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.875470 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.381646 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.007820 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.345349 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.105020 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.802848 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.399925 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 696.393587 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.227015 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.370198 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.944756 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.116799 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.356509 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.311742 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.817649 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.727908 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 694.122080 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.906625 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 693.899872 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.312080 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 /nogui option ignored ECHO 0 -2 * Loglike = 693.902806 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.89 S.D. = 5.6656 S.E.M. = 0.080123 ECHO 0 Execution completed -2 * Loglike = 692.744919 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 695.56 S.D. = 4.3488 S.E.M. = 0.061502 ECHO 0 Execution completed -2 * Loglike = 697.954981 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.51 S.D. = 4.1617 S.E.M. = 0.058855 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 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 723.360349 Burning in for 100 iterations out of 500 -2 * Loglike = 725.473141 Burning in for 150 iterations out of 500 -2 * Loglike = 726.635587 Burning in for 200 iterations out of 500 -2 * Loglike = 729.895277 Burning in for 250 iterations out of 500 -2 * Loglike = 728.624891 Burning in for 300 iterations out of 500 -2 * Loglike = 727.780836 Burning in for 350 iterations out of 500 -2 * Loglike = 733.258628 Burning in for 400 iterations out of 500 -2 * Loglike = 732.414483 Burning in for 450 iterations out of 500 -2 * Loglike = 727.207945 Burning in for 500 iterations out of 500 -2 * Loglike = 729.337139 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 728.443065 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 732.084414 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 724.068994 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 731.217189 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 726.437350 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 742.057659 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 722.541518 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 742.106779 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.031443 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 723.936957 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 723.310215 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 727.038907 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 731.626909 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.107309 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 727.966583 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 727.947997 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 727.281881 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 727.917397 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 739.326426 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 728.028454 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 727.462090 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 729.318041 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 727.666952 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 729.951224 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 726.549570 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 728.000363 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.030620 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 736.404782 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 729.240433 Actual update 1500 of 5000, Stored update 1500 of 5000 /nogui option ignored -2 * Loglike = 728.169015 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 724.398282 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 731.466338 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 730.796608 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored -2 * Loglike = 729.485337 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 723.906333 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.921632 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 726.144057 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.373929 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 735.868221 Actual update 2000 of 5000, Stored update 2000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 730.476826 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.857288 Actual update 2100 of 5000, Stored update 2100 of 5000 /nogui option ignored -2 * Loglike = 731.404101 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 734.858744 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 = 726.696581 Actual update 2250 of 5000, Stored update 2250 of 5000 ECHO 0 -2 * Loglike = 728.029675 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 726.304634 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 734.944470 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.106981 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 729.677167 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 736.312076 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 732.097497 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 730.794438 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 729.054420 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 727.753133 Actual update 2750 of 5000, Stored update 2750 of 5000 /nogui option ignored -2 * Loglike = 732.362084 Actual update 2800 of 5000, Stored update 2800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 736.576527 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 728.070175 Actual update 2900 of 5000, Stored update 2900 of 5000 ECHO 0 -2 * Loglike = 727.009486 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 727.624755 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 729.076312 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 726.846407 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 725.955153 Actual update 3150 of 5000, Stored update 3150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 727.266887 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 708.775452 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 727.688571 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.388660 Burning in for 150 iterations out of 500 -2 * Loglike = 732.614500 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.741356 Burning in for 200 iterations out of 500 -2 * Loglike = 738.465783 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 710.478718 Burning in for 250 iterations out of 500 ECHO 0 -2 * Loglike = 726.421252 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.138977 Burning in for 300 iterations out of 500 -2 * Loglike = 709.122977 Burning in for 350 iterations out of 500 -2 * Loglike = 729.380459 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.658391 Burning in for 400 iterations out of 500 -2 * Loglike = 727.584866 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.939614 Burning in for 450 iterations out of 500 -2 * Loglike = 732.650476 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.839233 Burning in for 500 iterations out of 500 -2 * Loglike = 723.274420 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.733603 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 for 50 iterations out of 500 -2 * Loglike = 727.489286 Actual update 3650 of 5000, Stored update 3650 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 714.963914 Burning in for 100 iterations out of 500 -2 * Loglike = 726.754529 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.295482 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.775707 Burning in for 150 iterations out of 500 -2 * Loglike = 733.543362 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.887110 Burning in for 200 iterations out of 500 -2 * Loglike = 709.475831 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 726.075941 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.445713 Burning in for 250 iterations out of 500 -2 * Loglike = 702.650556 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 733.674578 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.447774 Burning in for 300 iterations out of 500 -2 * Loglike = 708.541764 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 734.216149 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.478675 Burning in for 350 iterations out of 500 -2 * Loglike = 705.364544 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 734.388704 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.814536 Burning in for 400 iterations out of 500 -2 * Loglike = 720.797222 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 730.258019 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.903503 Burning in for 450 iterations out of 500 -2 * Loglike = 701.784637 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 732.139496 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.095080 Burning in for 500 iterations out of 500 -2 * Loglike = 715.338360 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 726.564441 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.671792 -2 * Loglike = 706.472242 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 735.689475 Actual update 4150 of 5000, Stored update 4150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 704.109339 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.367724 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 718.015809 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.968953 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.533697 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.244626 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 716.883920 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 735.925322 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.152585 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.408646 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 729.323101 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.347228 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.256234 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 731.820843 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.329111 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.603515 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 736.137739 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.801007 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 724.548367 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 728.080680 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.601433 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.068540 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 732.957034 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.454918 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 714.039894 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 733.694501 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.838541 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 713.798826 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 728.498256 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 703.758722 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.220485 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 732.040906 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.213757 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.758400 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.954422 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 706.700698 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.096899 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 728.032065 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.784289 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 712.132652 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 730.697067 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.327126 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.759098 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 737.740892 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.883927 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 715.753797 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 733.507348 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.259760 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 711.087753 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 733.598392 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.868282 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 717.903689 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.783133 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 713.055373 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 707.257208 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.535861 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.821536 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 713.683209 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.249941 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.025797 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 709.806468 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.396031 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 for 50 iterations out of 500 -2 * Loglike = 712.464250 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.855744 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.901203 Burning in for 100 iterations out of 500 -2 * Loglike = 710.529245 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 709.441571 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 684.528955 Burning in for 150 iterations out of 500 -2 * Loglike = 710.627339 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.372159 Burning in for 200 iterations out of 500 -2 * Loglike = 701.810225 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 717.072519 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 705.878591 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.400381 Burning in for 250 iterations out of 500 -2 * Loglike = 713.731531 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.127355 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.522953 Burning in for 300 iterations out of 500 -2 * Loglike = 714.601886 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.663825 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.727656 Burning in for 350 iterations out of 500 -2 * Loglike = 714.659213 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.969144 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.521547 Burning in for 400 iterations out of 500 -2 * Loglike = 713.018220 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.706764 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.156401 Burning in for 450 iterations out of 500 -2 * Loglike = 713.972453 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 705.415879 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 688.836250 Burning in for 500 iterations out of 500 -2 * Loglike = 716.491630 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.312292 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 687.452008 -2 * Loglike = 713.233009 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.903710 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 = 724.189000 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 729.35 S.D. = 4.2591 S.E.M. = 0.060232 ECHO 0 Execution completed -2 * Loglike = 716.965753 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 707.875002 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.109001 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.240119 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.408690 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 687.787383 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.511314 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.584172 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 683.094055 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 714.490692 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.401492 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.069052 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.963852 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.829273 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.791241 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 717.758716 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.206257 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.404019 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 714.317614 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 703.120988 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.805406 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.098145 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.607237 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 694.746215 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.757913 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.702558 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 685.758573 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.325244 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.282198 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.309612 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.726928 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 707.158637 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.734374 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.464625 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.080023 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.108851 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 686.736911 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.225626 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.294182 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.934305 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 714.674195 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.908303 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 682.710364 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.754510 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 707.486828 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.816623 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.477089 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 705.366224 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 684.532197 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.457343 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.114890 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 689.725056 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.337460 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.996459 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.020630 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 710.128105 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.195841 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.638721 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.317091 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.065942 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.314626 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.877207 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 687.261870 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 711.841679 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 704.506051 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.874024 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 714.793692 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 709.515823 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.534200 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 715.414395 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 719.315619 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.982100 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.175963 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.139686 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.636742 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.745501 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.978526 Actual update 3450 of 5000, Stored update 3450 of 5000 ECHO 0 -2 * Loglike = 691.733913 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 709.606971 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.748534 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.936588 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.270552 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.520140 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.196199 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.460962 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.628753 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 686.663163 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 715.781042 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.209608 Actual update 1550 of 5000, Stored update 1550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 717.066301 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.170380 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.373496 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 734.277467 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 713.506213 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.292584 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.770294 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 734.244781 Burning in for 150 iterations out of 500 -2 * Loglike = 710.325540 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.743862 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.695042 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 733.780174 Burning in for 200 iterations out of 500 -2 * Loglike = 717.907932 Actual update 3450 of 5000, Stored update 3450 of 5000 ECHO 0 -2 * Loglike = 707.042135 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.154825 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 733.867319 Burning in for 250 iterations out of 500 -2 * Loglike = 714.529107 Actual update 3500 of 5000, Stored update 3500 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 for 50 iterations out of 500 -2 * Loglike = 712.397155 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 684.757910 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 735.154352 Burning in for 300 iterations out of 500 -2 * Loglike = 713.383856 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 677.033881 Burning in for 100 iterations out of 500 -2 * Loglike = 728.753343 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 682.846626 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 735.910343 Burning in for 350 iterations out of 500 -2 * Loglike = 712.955097 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 676.519520 Burning in for 150 iterations out of 500 -2 * Loglike = 725.070802 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 684.729373 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 for 50 iterations out of 500 -2 * Loglike = 740.401551 Burning in for 400 iterations out of 500 -2 * Loglike = 714.625513 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 684.691313 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.060097 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 677.848236 Burning in for 200 iterations out of 500 -2 * Loglike = 689.303120 Burning in for 100 iterations out of 500 -2 * Loglike = 736.878999 Burning in for 450 iterations out of 500 -2 * Loglike = 713.673059 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 693.420202 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.304410 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 682.459339 Burning in for 250 iterations out of 500 -2 * Loglike = 687.247396 Burning in for 150 iterations out of 500 -2 * Loglike = 735.123393 Burning in for 500 iterations out of 500 -2 * Loglike = 720.915374 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.555673 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 704.811512 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 734.526572 -2 * Loglike = 688.274489 Burning in for 200 iterations out of 500 -2 * Loglike = 679.214398 Burning in for 300 iterations out of 500 -2 * Loglike = 711.838814 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.470058 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.399013 Actual update 4150 of 5000, Stored update 4150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 693.924597 Burning in for 250 iterations out of 500 -2 * Loglike = 680.212262 Burning in for 350 iterations out of 500 -2 * Loglike = 711.770866 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 688.030286 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.149927 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 737.829403 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.061427 Burning in for 300 iterations out of 500 -2 * Loglike = 683.837277 Burning in for 400 iterations out of 500 -2 * Loglike = 718.905501 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.322388 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.812779 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 737.675949 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.937101 Burning in for 350 iterations out of 500 -2 * Loglike = 682.423066 Burning in for 450 iterations out of 500 -2 * Loglike = 715.304819 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 684.685102 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 720.656004 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 733.836137 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.046627 Burning in for 500 iterations out of 500 -2 * Loglike = 712.186721 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 687.498491 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 679.175066 -2 * Loglike = 737.762144 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 703.566830 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 711.421668 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.366392 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.292621 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 = 735.699214 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.865673 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.968676 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.122552 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.390822 Burning in for 450 iterations out of 500 -2 * Loglike = 680.334526 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 747.824471 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.806767 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.919657 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.909463 Burning in for 500 iterations out of 500 -2 * Loglike = 686.402599 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 680.646388 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 733.593099 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.657491 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 714.978525 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.990008 -2 * Loglike = 674.846446 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 688.486399 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.355126 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.639360 Actual update 4550 of 5000, Stored update 4550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 707.780123 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 683.978843 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.533156 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 733.443223 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.823624 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.630897 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.365475 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 677.307664 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.972795 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 732.920999 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.355292 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.729016 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 712.741937 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.131303 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.612443 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 734.496293 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.169816 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.697421 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 685.424406 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 673.481180 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.254044 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 734.121713 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 703.529368 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.024576 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.961059 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.981402 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 735.286999 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 687.261707 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.940270 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 713.923135 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 687.760979 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 673.744584 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 733.605907 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.704251 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.481324 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.638080 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.132613 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 674.438226 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 736.317477 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.996844 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.080810 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.153332 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 684.480814 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 674.850247 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 733.823591 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.006735 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.683440 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.043334 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.860828 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 678.395233 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 738.770141 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 687.516661 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 712.967924 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 716.251813 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.046618 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 677.609418 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 734.007092 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.518158 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.681911 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 685.359473 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 674.342703 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 740.141470 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 688.276465 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.733183 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.958470 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 681.577443 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 734.250729 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 686.038701 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 708.879309 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 689.042073 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 676.993489 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 733.997330 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.405038 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.678729 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 687.993967 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 688.903338 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 736.068908 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 679.161113 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.128335 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 684.913443 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.097324 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 734.458878 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 675.840307 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 713.667807 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.661420 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.353833 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 738.022386 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 690.835630 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 687.987392 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.482327 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.795798 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.159732 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.276553 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 685.185930 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 679.084443 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 737.911052 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.993448 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.795798 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.198733 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 734.022853 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.067735 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.643284 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 679.161899 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 734.704270 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.853383 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 689.320026 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 737.193275 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 681.899776 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.293958 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 709.47 S.D. = 5.3941 S.E.M. = 0.076284 ECHO 0 Execution completed -2 * Loglike = 683.495723 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 733.528797 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.114194 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 678.158752 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 685.518181 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 734.112609 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 689.645623 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 681.179699 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.211783 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 736.216915 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 690.376700 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 676.067772 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.764100 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 734.003414 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 681.806713 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 679.447592 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.555431 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 737.735393 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 682.116209 Actual update 3800 of 5000, Stored update 3800 of 5000 /nogui option ignored -2 * Loglike = 714.191507 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.98 S.D. = 2.8435 S.E.M. = 0.040213 ECHO 0 Execution completed -2 * Loglike = 681.226236 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 688.106953 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 733.826261 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 688.889228 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 675.776718 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.415341 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 733.873993 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 691.722502 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 682.646619 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 735.502822 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.440481 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.538878 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 677.668050 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 734.822831 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.100852 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.239226 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 681.297782 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 734.075163 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.792253 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 for 50 iterations out of 500 -2 * Loglike = 684.177698 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 736.406730 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.987532 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 675.453807 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.408458 Burning in for 100 iterations out of 500 -2 * Loglike = 687.373856 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 733.980113 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.548198 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.125525 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 for 50 iterations out of 500 -2 * Loglike = 734.091079 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 675.231088 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.118855 Burning in for 150 iterations out of 500 -2 * Loglike = 694.544593 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 715.551959 Burning in for 100 iterations out of 500 -2 * Loglike = 737.946469 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.468830 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 676.562667 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 712.108596 Burning in for 200 iterations out of 500 -2 * Loglike = 686.692160 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.346808 Burning in for 150 iterations out of 500 -2 * Loglike = 734.903887 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.617942 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.903350 Burning in for 250 iterations out of 500 -2 * Loglike = 676.886347 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.424371 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.085442 Burning in for 200 iterations out of 500 -2 * Loglike = 736.321239 Actual update 2300 of 5000, Stored update 2300 of 5000 /nogui option ignored -2 * Loglike = 733.805650 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.281476 Burning in for 300 iterations out of 500 -2 * Loglike = 686.443090 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 685.851744 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 720.794481 Burning in for 250 iterations out of 500 -2 * Loglike = 687.922852 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 734.490103 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 718.716867 Burning in for 350 iterations out of 500 -2 * Loglike = 684.040206 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 686.141598 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.316468 Burning in for 300 iterations out of 500 ECHO 0 -2 * Loglike = 703.079717 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 736.244144 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.356965 Burning in for 400 iterations out of 500 -2 * Loglike = 679.108911 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 687.436288 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 692.514045 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 735.169163 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.898996 Burning in for 450 iterations out of 500 -2 * Loglike = 718.761843 Burning in for 350 iterations out of 500 -2 * Loglike = 688.271532 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 683.067724 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 696.828492 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 733.891916 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 712.591488 Burning in for 500 iterations out of 500 -2 * Loglike = 722.278179 Burning in for 400 iterations out of 500 -2 * Loglike = 679.987361 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.328940 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.844375 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 740.128062 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.826213 -2 * Loglike = 722.199213 Burning in for 450 iterations out of 500 -2 * Loglike = 688.838241 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 676.581476 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.124675 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 736.222771 Actual update 2650 of 5000, Stored update 2650 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.706162 Burning in for 500 iterations out of 500 -2 * Loglike = 678.933506 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.965267 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 736.547167 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.612636 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 717.084220 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.827326 -2 * Loglike = 679.282118 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 736.759949 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.665235 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 684.629041 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.472598 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 = 688.177787 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 737.619114 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.655719 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 for 50 iterations out of 500 -2 * Loglike = 700.679613 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 718.017395 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.493860 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 678.561195 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 734.826002 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 719.150161 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 687.524052 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.918614 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.989909 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 673.770288 Burning in for 100 iterations out of 500 -2 * Loglike = 680.172763 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.786747 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.524293 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.148151 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 689.734346 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 719.250922 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 670.338437 Burning in for 150 iterations out of 500 -2 * Loglike = 685.470195 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 736.632306 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 720.690584 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.840712 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 723.589046 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 671.990513 Burning in for 200 iterations out of 500 -2 * Loglike = 683.186828 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.274963 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 733.787410 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.139749 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.016986 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.295126 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 675.576939 Burning in for 250 iterations out of 500 -2 * Loglike = 734.567811 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 730.622120 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.208303 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 685.403403 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 690.397912 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.668157 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 674.816682 Burning in for 300 iterations out of 500 -2 * Loglike = 735.088293 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.211834 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.545981 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 680.517858 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 688.359616 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 673.989666 Burning in for 350 iterations out of 500 -2 * Loglike = 733.554891 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 730.313063 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.105926 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.338043 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.176968 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 691.297207 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 735.904159 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.931143 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.732434 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.458050 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 679.432394 Burning in for 400 iterations out of 500 -2 * Loglike = 682.592881 Actual update 2800 of 5000, Stored update 2800 of 5000 /nogui option ignored -2 * Loglike = 736.006825 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.863928 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.610318 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 673.195811 Burning in for 450 iterations out of 500 -2 * Loglike = 713.000060 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.467263 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 738.623072 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 691.676435 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 713.440559 Actual update 600 of 5000, Stored update 600 of 5000 ECHO 0 -2 * Loglike = 676.287357 Burning in for 500 iterations out of 500 -2 * Loglike = 714.785912 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 736.184890 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.548300 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.797500 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.145387 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 674.615788 -2 * Loglike = 712.589539 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 734.683691 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 678.409722 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.491243 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 = 707.534022 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 725.556709 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 733.544304 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 678.552917 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 674.663829 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.317889 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.271844 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 735.267559 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 679.098525 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.611682 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.191369 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.477316 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 673.973225 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 737.015310 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 677.988848 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 722.005477 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.086448 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 716.361495 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 668.622495 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 733.876067 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 = 676.532559 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.962192 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.550402 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.646409 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 674.153416 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 735.039197 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 678.702354 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.635622 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.819229 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 715.848531 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 672.031712 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.570156 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.120637 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 718.396275 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.610916 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.968301 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 741.987965 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 687.395603 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.680693 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.284194 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.015471 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 726.332749 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 683.743916 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.83 S.D. = 5.1215 S.E.M. = 0.072429 ECHO 0 Execution completed -2 * Loglike = 667.204801 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 733.104555 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.228254 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.080553 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 689.943385 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.346987 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 734.122454 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 677.053853 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.756430 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.719829 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 677.091461 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 739.459457 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 670.836092 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.382346 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.130900 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 679.940062 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 715.378765 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 736.106654 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 668.601637 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.597418 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 719.127976 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 679.753243 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 734.682670 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 718.721203 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 669.090048 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 717.081248 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.595324 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 682.208532 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 716.811089 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 733.441244 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 669.536929 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.474649 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.582171 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 674.762201 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.977588 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 734.096355 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 670.021879 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.889418 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.090647 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 677.190242 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.541486 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 736.495931 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 667.908094 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.209154 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 677.734309 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.526381 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 718.276908 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 735.515625 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 675.979891 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 726.922770 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.800379 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.787601 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.758708 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 734.562477 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 728.657042 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 675.453263 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 669.604019 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.996530 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.108166 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 737.243974 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 730.808329 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 680.534653 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 674.067893 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 689.319837 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 734.166242 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.784531 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 727.487424 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.858116 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 671.144806 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 696.660333 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 741.162990 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.027730 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.169537 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 675.263371 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.214924 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.625781 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.825135 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 681.735734 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 670.964738 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 720.199668 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 737.522605 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 711.694149 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 690.075552 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 677.633911 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 675.148850 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 715.754010 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.413853 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 734.618313 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.638083 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 677.932659 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 672.303744 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.547981 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 735.920900 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.657477 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.665145 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.352511 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 673.455648 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 711.960356 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 737.574606 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.337831 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.562693 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 677.901317 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 674.273698 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.837435 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 735.363749 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.868064 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.327566 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 676.115559 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.639694 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 672.512814 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 736.954174 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 720.887346 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 688.941228 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 681.028246 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.259075 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 675.422894 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 733.746323 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.416242 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 712.840780 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.218377 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 724.583403 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 671.705040 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 737.080542 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.801006 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 712.016500 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 684.018885 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.541621 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.254605 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 736.844357 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 686.729805 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 711.597314 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.758988 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 672.910676 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.355411 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 738.707813 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.404187 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.738235 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 672.961667 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 679.902735 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.717144 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 734.326544 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.254190 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.433234 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 671.545962 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 679.802307 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 726.547927 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 734.127821 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 683.626251 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.461768 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 675.180280 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 715.914267 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 715.439261 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 677.842282 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.903104 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 672.978601 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.495666 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 715.537249 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 683.924585 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.814906 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 671.465961 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.669247 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 724.953326 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 676.383269 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 691.381733 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 668.788258 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.911079 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 678.358663 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.857988 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.892788 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 670.115730 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.981829 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.294129 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 718.830854 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.376752 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 670.562093 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 724.143341 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 684.714573 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.549949 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.295124 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 670.479678 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.809167 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.863472 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 721.606577 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.295378 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.669263 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.634315 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 680.491792 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.464668 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.260217 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.531478 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 673.680271 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.004655 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.541374 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.222927 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 670.076926 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.708054 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.600611 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.666617 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 675.855356 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.736032 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 716.518978 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.684415 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 674.012635 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 687.279783 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 673.731935 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 729.879313 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.617272 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 673.010682 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 736.048883 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 735.65 S.D. = 2.1544 S.E.M. = 0.030468 ECHO 0 Execution completed -2 * Loglike = 723.106867 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.812521 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 674.622516 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.278755 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 718.929941 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.106419 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.840968 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 682.510028 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.018726 Actual update 3150 of 5000, Stored update 3150 of 5000 ECHO 0 -2 * Loglike = 670.759559 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.826314 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 712.922296 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 670.113742 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.243061 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.325207 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 673.021355 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 714.954382 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 716.167977 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 676.408008 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.625375 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.446772 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 672.275465 Actual update 2650 of 5000, Stored update 2650 of 5000 /nogui option ignored -2 * Loglike = 715.513302 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.708949 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 675.839676 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.255685 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.842970 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 675.687574 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 680.44 S.D. = 4.1578 S.E.M. = 0.058801 ECHO 0 Execution completed -2 * Loglike = 673.546905 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.420381 Actual update 3300 of 5000, Stored update 3300 of 5000 ECHO 0 -2 * Loglike = 714.986240 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 676.457231 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 731.331974 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.983502 Actual update 3550 of 5000, Stored update 3550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 685.668596 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 715.944672 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 672.698259 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 716.750679 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 719.625981 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 673.814732 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.653067 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.61 S.D. = 4.6833 S.E.M. = 0.066232 ECHO 0 Execution completed -2 * Loglike = 717.218603 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.986119 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 668.988477 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 718.103893 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 723.317694 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 671.385883 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.808620 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 726.412159 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.076688 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 674.262525 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.755356 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.121837 Actual update 3800 of 5000, Stored update 3800 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.740417 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 722.100255 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 716.931489 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 672.052472 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.978392 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 671.999257 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 723.381312 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 726.017343 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 720.272592 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 676.725158 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.546015 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 733.544368 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 711.302931 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.793656 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.951275 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 729.841485 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 716.962476 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 669.913721 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.230505 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.827234 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 676.367406 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 726.588423 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 709.239838 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 675.572713 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.209002 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.066004 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 676.202630 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 722.504393 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 720.555434 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 668.640805 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.235949 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.688897 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 669.027387 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.407140 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 721.408163 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 669.845689 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 731.304526 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.077623 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 678.086264 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 726.693071 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 712.670194 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 669.574156 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.789888 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.357879 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 675.726731 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 727.252657 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.756725 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 680.887570 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.091673 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.378632 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 682.160890 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.896829 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 714.216601 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 677.147192 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.016839 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 710.646525 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 669.902514 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.476514 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 715.047775 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 670.867365 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 723.899226 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.015990 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 679.275545 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.392889 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.077503 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 671.080684 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 715.555136 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 669.853459 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 714.430130 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.163256 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 676.515259 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 729.919897 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 672.672997 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 725.148066 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 678.622419 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.533051 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 680.169897 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 670.109602 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 678.492478 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 677.370253 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 670.315183 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 676.401926 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 669.987576 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 671.736253 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 674.219302 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 682.588167 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 672.818271 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 679.917339 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.763651 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.01 S.D. = 4.1839 S.E.M. = 0.059169 ECHO 0 Execution completed -2 * Loglike = 713.148848 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.41 S.D. = 5.5434 S.E.M. = 0.078396 ECHO 0 Execution completed -2 * Loglike = 669.153274 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 674.09 S.D. = 4.0837 S.E.M. = 0.057752 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 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 for 50 iterations out of 500 -2 * Loglike = 746.226425 Burning in for 100 iterations out of 500 -2 * Loglike = 737.921019 Burning in for 150 iterations out of 500 -2 * Loglike = 744.586321 Burning in for 200 iterations out of 500 -2 * Loglike = 740.044867 Burning in for 250 iterations out of 500 -2 * Loglike = 741.913017 Burning in for 300 iterations out of 500 -2 * Loglike = 747.188157 Burning in for 350 iterations out of 500 -2 * Loglike = 749.797984 Burning in for 400 iterations out of 500 -2 * Loglike = 743.475815 Burning in for 450 iterations out of 500 -2 * Loglike = 743.424054 Burning in for 500 iterations out of 500 -2 * Loglike = 743.281930 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 = 746.232850 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 748.837711 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 745.289965 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 749.444319 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 746.315449 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 752.724883 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 744.377561 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 746.022605 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 745.300943 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 738.718289 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 745.937401 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 740.304267 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 742.520054 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 737.093752 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 748.018363 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 742.501412 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 750.317567 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 739.987974 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 750.904041 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 745.997531 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 745.726762 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 740.584515 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 743.844964 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 742.798404 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 741.488860 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 747.740081 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 745.970571 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 746.440355 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 745.917270 Actual update 1500 of 5000, Stored update 1500 of 5000 /nogui option ignored -2 * Loglike = 745.151493 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 746.225879 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 748.880782 Actual update 1650 of 5000, Stored update 1650 of 5000 ECHO 0 -2 * Loglike = 745.030229 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 749.309220 Actual update 1750 of 5000, Stored update 1750 of 5000 /nogui option ignored -2 * Loglike = 739.218001 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 744.391028 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 746.815349 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 740.006482 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 740.976287 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 748.207462 Actual update 2050 of 5000, Stored update 2050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 742.704719 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 737.655305 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 743.093508 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 739.500672 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 748.016504 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 743.265921 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 751.537504 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 747.484225 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 745.571729 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 746.165844 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 751.604115 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 747.296508 Actual update 2650 of 5000, Stored update 2650 of 5000 /nogui option ignored -2 * Loglike = 739.979843 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 739.595812 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 748.564376 Actual update 2800 of 5000, Stored update 2800 of 5000 ECHO 0 -2 * Loglike = 739.048879 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 744.911148 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 745.315094 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 744.555989 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 744.257761 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 738.910328 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 741.872534 Actual update 3150 of 5000, Stored update 3150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 744.027570 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 746.918470 Actual update 3250 of 5000, Stored update 3250 of 5000 /nogui option ignored -2 * Loglike = 748.014641 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 745.110357 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 742.795583 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 744.973525 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 744.128420 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 742.400468 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 745.547440 Actual update 3600 of 5000, Stored update 3600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 746.783561 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.952730 Burning in for 100 iterations out of 500 -2 * Loglike = 745.509999 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 683.469976 Burning in for 150 iterations out of 500 -2 * Loglike = 753.742997 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.519795 Burning in for 200 iterations out of 500 -2 * Loglike = 737.685212 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 687.792616 Burning in for 250 iterations out of 500 /nogui option ignored -2 * Loglike = 743.565946 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 684.529961 Burning in for 300 iterations out of 500 -2 * Loglike = 750.808162 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 683.708548 Burning in for 350 iterations out of 500 -2 * Loglike = 747.662864 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 691.193700 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 743.226157 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 690.509638 Burning in for 450 iterations out of 500 -2 * Loglike = 738.457898 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.012930 Burning in for 500 iterations out of 500 -2 * Loglike = 742.737763 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.425815 /nogui option ignored /nogui option ignored -2 * Loglike = 747.753033 Actual update 4150 of 5000, Stored update 4150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 747.273664 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.814659 Actual update 100 of 5000, Stored update 100 of 5000 ECHO 0 -2 * Loglike = 742.785824 Actual update 4250 of 5000, Stored update 4250 of 5000 ECHO 0 -2 * Loglike = 687.947318 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 748.712666 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 -2 * Loglike = 682.521450 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 746.863612 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.925914 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 745.924185 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 685.257723 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 749.093759 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 700.321998 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 746.132132 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 for 50 iterations out of 500 -2 * Loglike = 680.567631 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 745.263501 Actual update 4550 of 5000, Stored update 4550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 700.773065 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 743.588668 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 692.905180 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 681.337144 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 740.391039 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 687.777747 Burning in for 150 iterations out of 500 -2 * Loglike = 749.426866 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 682.257611 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 687.557574 Burning in for 200 iterations out of 500 -2 * Loglike = 747.224030 Actual update 4750 of 5000, Stored update 4750 of 5000 ECHO 0 -2 * Loglike = 682.419432 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.015793 Burning in for 250 iterations out of 500 -2 * Loglike = 739.971998 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.118608 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.042305 Burning in for 300 iterations out of 500 -2 * Loglike = 743.862043 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.637705 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 691.503564 Burning in for 350 iterations out of 500 -2 * Loglike = 744.798519 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 681.304356 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.647239 Burning in for 400 iterations out of 500 -2 * Loglike = 745.921856 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 685.724834 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.930534 Burning in for 450 iterations out of 500 -2 * Loglike = 744.427813 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 686.323066 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.219310 Burning in for 500 iterations out of 500 -2 * Loglike = 685.389942 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.599361 -2 * Loglike = 686.703657 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 = 697.720024 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.841536 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.716581 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.868470 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 684.990396 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 685.848317 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.067226 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.816193 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 685.117888 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.421165 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.247191 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.848258 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 685.458059 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.100731 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.909927 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 690.553231 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 687.548141 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 690.437661 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 697.566115 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 686.471796 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 687.120036 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 747.088759 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 745.23 S.D. = 3.3631 S.E.M. = 0.047561 ECHO 0 Execution completed -2 * Loglike = 687.796305 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.883525 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 686.458099 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 684.159202 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 687.791081 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.097156 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.424192 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.763231 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.543190 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 687.539466 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.172084 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.338175 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.199466 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.286930 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.213385 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 683.576322 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.230951 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 684.139955 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.640654 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.917682 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.889785 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 687.849380 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 688.980730 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 683.806849 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.796734 Actual update 1200 of 5000, Stored update 1200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 686.912735 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.341629 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 689.834777 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.765176 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.739883 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.263267 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.197723 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.485806 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.041960 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.978848 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.642530 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.911495 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 684.770147 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 688.387007 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 687.954854 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.505916 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 699.462229 Actual update 2550 of 5000, Stored update 2550 of 5000 /nogui option ignored -2 * Loglike = 694.591228 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.811053 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.501204 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 688.643338 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 689.563614 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 685.863992 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.245167 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 685.528469 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.308023 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.081968 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 688.795020 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.029451 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 688.890011 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.398627 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.308258 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 684.248401 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.900639 Actual update 2050 of 5000, Stored update 2050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 685.616629 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 687.404219 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.780907 Burning in for 100 iterations out of 500 -2 * Loglike = 688.938949 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.302739 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.868287 Burning in for 150 iterations out of 500 -2 * Loglike = 684.754069 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 692.154491 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.778981 Burning in for 200 iterations out of 500 -2 * Loglike = 683.393207 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.452556 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.624590 Burning in for 250 iterations out of 500 -2 * Loglike = 685.864219 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.692128 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.274746 Burning in for 300 iterations out of 500 -2 * Loglike = 689.471179 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.172282 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 699.636405 Burning in for 350 iterations out of 500 -2 * Loglike = 691.195182 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.980505 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.849256 Burning in for 400 iterations out of 500 -2 * Loglike = 695.205615 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 697.590489 Burning in for 450 iterations out of 500 -2 * Loglike = 688.710083 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 684.585700 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.517187 Burning in for 500 iterations out of 500 -2 * Loglike = 686.322650 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 687.907660 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.108570 -2 * Loglike = 690.800011 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.350399 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 = 694.419703 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 690.309067 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.375603 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 688.224881 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 681.297797 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.998040 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.835438 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.189355 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.606757 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.767019 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 684.422944 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.822505 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 694.844414 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.633586 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.072976 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 683.812871 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.669589 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.101861 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.335115 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.480164 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.045028 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 692.736694 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 694.010294 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 698.809272 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.163220 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 688.485487 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 695.646190 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 685.640754 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.639115 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 692.052892 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 687.332742 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.156454 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.479554 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 685.307689 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.116569 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.075127 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 693.063193 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.163817 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.621116 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 684.486218 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.716604 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 690.251063 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 682.531256 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.348075 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.313864 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.930943 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.032443 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.106204 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.240081 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 687.141027 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.736762 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 690.338623 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.755281 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.264560 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.805217 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.467434 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.009962 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 685.040945 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 698.506140 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 691.846507 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 692.279895 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.813053 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.945764 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.946897 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.698814 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.860588 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.229245 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.251736 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.958014 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.941332 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.903699 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 683.503778 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.308364 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.349659 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.718080 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 687.126183 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.001544 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.208182 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.049061 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.074374 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.130268 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.142850 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.012090 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.980876 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.684326 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 701.386606 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.980140 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 696.520287 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.543098 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 686.659186 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.043377 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 689.862275 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.786272 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.387678 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.399858 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 688.559451 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.922894 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.430875 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 690.561254 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.721472 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.452576 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.019099 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.930916 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.399783 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.276132 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.742797 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.827011 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.282684 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.140022 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.166912 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.838212 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.572773 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.119966 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 688.415271 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.972339 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.822235 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.149367 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 687.885391 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.610385 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.537415 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 694.029679 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.597408 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.935748 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 681.745328 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.93 S.D. = 4.9025 S.E.M. = 0.069332 ECHO 0 Execution completed -2 * Loglike = 696.888696 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.736575 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 688.982031 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.129999 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 696.937518 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.240587 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.221513 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.711529 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.724384 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 692.778315 Actual update 2750 of 5000, Stored update 2750 of 5000 /nogui option ignored -2 * Loglike = 702.968093 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 694.417818 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.139407 Actual update 2900 of 5000, Stored update 2900 of 5000 ECHO 0 -2 * Loglike = 700.495605 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.425699 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.382649 Actual update 3050 of 5000, Stored update 3050 of 5000 /nogui option ignored -2 * Loglike = 692.135845 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 697.584869 Actual update 3150 of 5000, Stored update 3150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 695.144448 Actual update 3200 of 5000, Stored update 3200 of 5000 ECHO 0 -2 * Loglike = 706.075527 Burning in for 100 iterations out of 500 -2 * Loglike = 694.923597 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.076163 Burning in for 150 iterations out of 500 -2 * Loglike = 701.958633 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.076823 Burning in for 200 iterations out of 500 -2 * Loglike = 700.678606 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 712.218987 Burning in for 250 iterations out of 500 -2 * Loglike = 695.017185 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.611458 Burning in for 300 iterations out of 500 -2 * Loglike = 686.649609 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.90 S.D. = 4.1648 S.E.M. = 0.058900 ECHO 0 Execution completed -2 * Loglike = 696.080254 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.259616 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 for 50 iterations out of 500 -2 * Loglike = 695.109228 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.156096 Burning in for 400 iterations out of 500 -2 * Loglike = 707.245445 Burning in for 100 iterations out of 500 -2 * Loglike = 697.116888 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.436453 Burning in for 450 iterations out of 500 -2 * Loglike = 697.332145 Burning in for 150 iterations out of 500 -2 * Loglike = 697.583717 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.126588 Burning in for 500 iterations out of 500 -2 * Loglike = 705.000014 Burning in for 200 iterations out of 500 -2 * Loglike = 691.295296 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.235212 -2 * Loglike = 698.749275 Burning in for 250 iterations out of 500 -2 * Loglike = 694.918227 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 = 705.989726 Burning in for 300 iterations out of 500 -2 * Loglike = 706.035105 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.372822 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.201046 Burning in for 350 iterations out of 500 -2 * Loglike = 693.164645 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.558331 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.899961 Burning in for 400 iterations out of 500 -2 * Loglike = 699.484993 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.659027 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.813398 Burning in for 450 iterations out of 500 -2 * Loglike = 703.457522 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 711.119390 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 703.823167 Burning in for 500 iterations out of 500 -2 * Loglike = 700.008148 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.463145 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 703.387690 -2 * Loglike = 697.396037 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 722.829591 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 = 696.201082 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.998901 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.546072 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 695.571045 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.860547 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.187265 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.763258 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.252086 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.919578 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.512510 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.057016 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 692.056768 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.886602 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.568111 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.578189 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.447850 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.462048 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.667170 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.768602 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 714.947829 Actual update 350 of 5000, Stored update 350 of 5000 /nogui option ignored -2 * Loglike = 698.225388 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.645524 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.519302 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.516514 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.587566 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.165463 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.989324 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.782561 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.925316 Actual update 500 of 5000, Stored update 500 of 5000 ECHO 0 -2 * Loglike = 699.232460 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.273946 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.258700 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.170728 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 708.108252 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.519118 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 700.120253 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.119814 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.695504 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.302863 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.037700 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.907428 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.692756 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.778917 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 697.837761 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.920435 Actual update 4800 of 5000, Stored update 4800 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 for 50 iterations out of 500 -2 * Loglike = 709.237304 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.584383 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.043743 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 682.746711 Burning in for 100 iterations out of 500 -2 * Loglike = 708.605671 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.599780 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.360015 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 676.694870 Burning in for 150 iterations out of 500 -2 * Loglike = 710.382799 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.624536 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 678.151005 Burning in for 200 iterations out of 500 -2 * Loglike = 707.333177 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.520088 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 680.672686 Burning in for 250 iterations out of 500 -2 * Loglike = 709.082730 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.875167 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.021070 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 682.266501 Burning in for 300 iterations out of 500 -2 * Loglike = 704.322460 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 717.192969 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.589113 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.137721 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 698.240055 Burning in for 350 iterations out of 500 -2 * Loglike = 708.672307 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.908260 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 705.088185 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 709.249256 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 683.386618 Burning in for 450 iterations out of 500 -2 * Loglike = 711.715591 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.292606 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.632262 Burning in for 500 iterations out of 500 -2 * Loglike = 709.380645 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.313335 Actual update 1150 of 5000, Stored update 1150 of 5000 ECHO 0 -2 * Loglike = 681.881305 -2 * Loglike = 708.680408 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 703.751125 Actual update 1200 of 5000, Stored update 1200 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 704.403911 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.359206 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 681.479729 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 704.752482 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.666129 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 680.956878 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.053804 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.155576 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 675.039906 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.712314 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 709.659014 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.452112 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.818509 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.731400 Actual update 2000 of 5000, Stored update 2000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 677.604151 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.209424 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.78 S.D. = 3.3525 S.E.M. = 0.047411 ECHO 0 Execution completed -2 * Loglike = 710.663991 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.072261 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 676.511557 Burning in for 100 iterations out of 500 -2 * Loglike = 691.593288 Actual update 350 of 5000, Stored update 350 of 5000 /nogui option ignored -2 * Loglike = 706.515258 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.353083 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 669.077934 Burning in for 150 iterations out of 500 -2 * Loglike = 674.871351 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.866781 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.080473 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 669.599558 Burning in for 200 iterations out of 500 -2 * Loglike = 711.895590 Actual update 2200 of 5000, Stored update 2200 of 5000 ECHO 0 -2 * Loglike = 690.005311 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.479451 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 673.048382 Burning in for 250 iterations out of 500 -2 * Loglike = 707.216034 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 680.497361 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.473008 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 676.172165 Burning in for 300 iterations out of 500 -2 * Loglike = 708.185443 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 675.726632 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.490860 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 673.594985 Burning in for 350 iterations out of 500 -2 * Loglike = 710.592756 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 for 50 iterations out of 500 -2 * Loglike = 677.484768 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 678.307923 Burning in for 400 iterations out of 500 -2 * Loglike = 699.481294 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.635604 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.594804 Burning in for 100 iterations out of 500 -2 * Loglike = 678.257026 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 670.358665 Burning in for 450 iterations out of 500 -2 * Loglike = 701.392244 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.240995 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.884727 Burning in for 150 iterations out of 500 -2 * Loglike = 678.840307 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 676.588725 Burning in for 500 iterations out of 500 -2 * Loglike = 702.384608 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.032058 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.631517 Burning in for 200 iterations out of 500 -2 * Loglike = 674.562873 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 672.977205 ECHO 0 -2 * Loglike = 700.415844 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 713.685529 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.413886 Burning in for 250 iterations out of 500 -2 * Loglike = 684.125280 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 = 706.216813 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.085754 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.881648 Burning in for 300 iterations out of 500 -2 * Loglike = 677.943752 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 672.961042 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.240203 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.564365 Burning in for 350 iterations out of 500 -2 * Loglike = 705.193489 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 680.996455 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 673.602821 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.090841 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 704.843285 Burning in for 400 iterations out of 500 -2 * Loglike = 700.818882 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 677.366182 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 667.139178 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 708.718253 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.116460 Burning in for 450 iterations out of 500 -2 * Loglike = 699.099979 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.923948 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 674.805513 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.385439 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.252257 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.298644 Burning in for 500 iterations out of 500 -2 * Loglike = 684.191945 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 670.560879 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.034062 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.361184 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 681.960774 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 700.994482 -2 * Loglike = 684.712756 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 708.829608 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 711.418599 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 678.796067 Actual update 1150 of 5000, Stored update 1150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 666.333807 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.456031 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.585597 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 680.616715 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.874928 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 669.331338 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 706.399355 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.069513 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 681.297259 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.953011 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 672.029711 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.448345 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.940616 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 677.290434 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 667.100107 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.722309 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 707.942043 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.576604 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 683.154435 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 669.511474 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.421800 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.679881 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.330045 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.830617 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 668.841459 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 707.576937 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.068688 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.748534 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 684.792080 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 668.000422 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.397439 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.737195 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.076786 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 678.941411 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 666.863548 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.802094 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.891173 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.901814 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.432152 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 677.368483 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 693.765991 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.036772 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 677.709490 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 706.683617 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 668.323935 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.716812 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.539875 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.454829 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.073422 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 674.561975 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 702.734884 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.763559 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 676.969863 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 709.892039 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.536513 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 669.049227 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 695.281705 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 684.330056 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.076065 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 708.524993 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 677.654849 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.263478 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 675.340067 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.868503 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 708.234768 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.962361 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 675.947326 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 674.315560 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.186392 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.046648 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 677.011074 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.657729 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 677.509927 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.075156 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 702.351129 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 670.223236 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.798878 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 678.553996 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 673.070487 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.482159 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 714.125790 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.027207 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 686.897070 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 673.521067 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 705.992335 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.302499 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.300166 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 685.030670 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 671.284220 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.318874 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 710.827410 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.461629 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 682.542958 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 676.599287 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.612429 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 715.471336 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.920089 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 679.192467 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 706.446807 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 672.653374 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 715.785810 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 677.519667 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 706.163293 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 699.148364 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.558726 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 678.505352 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 677.729761 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.546701 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.525901 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.597926 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 669.798818 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 680.252266 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.571844 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.615934 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.535351 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 673.278233 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 686.461570 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.287490 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.700340 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.370472 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 671.040524 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.298336 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.859952 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.936945 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.967301 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 675.454701 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 677.503909 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.314428 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.587505 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 705.067336 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 679.077123 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 669.408757 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.341023 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.890912 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 673.022546 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 684.525905 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.534427 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 667.846323 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.651809 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.614972 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.753487 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.615528 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 670.906681 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.039822 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.810298 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.630744 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.538820 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.746372 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 669.928210 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.825598 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.202082 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 714.158654 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 679.987178 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 669.825585 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 707.567379 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.711586 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 710.955077 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 678.565824 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 681.931121 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.434901 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.578504 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.314400 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 683.602320 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 676.102631 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.385922 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.974797 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 679.085593 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 670.815012 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.447705 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.054687 Actual update 4650 of 5000, Stored update 4650 of 5000 /nogui option ignored -2 * Loglike = 703.167721 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 680.693208 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 673.459574 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.927178 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.082578 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.882274 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 681.307454 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 671.681035 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.121778 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 705.592262 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.902838 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 679.301710 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 672.103752 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.527813 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.774915 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.078317 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 678.935162 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 672.517804 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 710.530714 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 for 50 iterations out of 500 -2 * Loglike = 695.441356 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.990022 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 673.522764 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 677.170764 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 720.050274 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.822595 Burning in for 100 iterations out of 500 -2 * Loglike = 711.753868 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.459831 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.040373 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 677.482890 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.037897 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 711.320056 Burning in for 150 iterations out of 500 -2 * Loglike = 705.421872 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.176216 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 669.297820 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.889590 Burning in for 200 iterations out of 500 -2 * Loglike = 679.411638 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.806655 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 708.232799 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 667.476756 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.996380 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 712.263883 Burning in for 250 iterations out of 500 -2 * Loglike = 679.998815 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.318849 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.083620 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 669.813130 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 718.320837 Burning in for 300 iterations out of 500 -2 * Loglike = 683.286044 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.824717 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.935210 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 676.480860 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.735901 Burning in for 350 iterations out of 500 -2 * Loglike = 690.104186 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.702492 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.967358 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 673.942095 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.420531 Burning in for 400 iterations out of 500 -2 * Loglike = 680.081111 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.951675 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.119760 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 674.864452 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.801602 Burning in for 450 iterations out of 500 -2 * Loglike = 702.769308 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 682.878918 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 698.409846 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 715.108926 Burning in for 500 iterations out of 500 -2 * Loglike = 672.505148 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.095089 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.194875 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.157008 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 715.376034 -2 * Loglike = 675.266821 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.551539 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 681.476950 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.370926 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 = 677.007600 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 676.426641 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.154851 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 704.656753 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.140177 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 671.734327 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 677.418621 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 705.703112 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.314920 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 720.844226 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 678.424033 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 674.845925 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.279954 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.000436 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.309532 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 676.143103 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 686.421553 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.319743 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.226507 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.698947 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 668.776538 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 675.967034 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 708.924452 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.300069 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.743491 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 672.563247 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.851773 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 727.491641 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 702.758196 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 671.045474 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 679.841298 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.642515 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.418490 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 704.724493 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 709.82 S.D. = 4.1753 S.E.M. = 0.059048 ECHO 0 Execution completed -2 * Loglike = 671.030248 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.457741 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.692887 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.998031 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 670.731198 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 683.726047 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.205081 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 674.470020 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.724349 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.642585 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 682.981373 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 676.625860 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 711.321335 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.391106 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 679.793980 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 668.413409 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.535119 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.285729 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 687.495092 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 675.415792 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.953862 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 716.541672 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 678.572132 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 673.763551 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.009848 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.770775 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 676.094863 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 673.787195 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.787966 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.214728 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 682.864038 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 669.139081 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.628017 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.639716 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.374720 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.49 S.D. = 4.1952 S.E.M. = 0.059329 ECHO 0 Execution completed -2 * Loglike = 696.421129 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 680.997830 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 668.532373 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 713.972483 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.798608 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 683.474093 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 712.701391 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 668.442716 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.996920 Actual update 3250 of 5000, Stored update 3250 of 5000 /nogui option ignored -2 * Loglike = 689.196400 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 725.795946 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 677.765302 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.915703 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 682.267736 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.908309 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 667.757334 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 683.633766 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.294667 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.006423 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 673.749306 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.137996 Actual update 4600 of 5000, Stored update 4600 of 5000 ECHO 0 -2 * Loglike = 696.799722 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 713.837163 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 677.189692 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 678.461306 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.716985 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.592422 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 685.699123 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 688.566297 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.095774 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.985754 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 677.505439 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 678.137531 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.711924 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.469979 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 667.133237 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 677.240282 Actual update 4800 of 5000, Stored update 4800 of 5000 ECHO 0 -2 * Loglike = 694.945669 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.411514 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 671.024794 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 682.592487 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.325353 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.907974 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 678.998188 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 682.548773 Actual update 4900 of 5000, Stored update 4900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 696.771266 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 722.647532 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 670.453606 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 679.809011 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.060274 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.706256 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 669.100741 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.326762 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 676.195292 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.513723 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 672.271721 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.192351 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.220246 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 671.791583 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 723.331390 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 718.224808 Actual update 1650 of 5000, Stored update 1650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 715.925793 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.576820 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 677.715014 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 715.105898 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 678.073794 Actual update 4450 of 5000, Stored update 4450 of 5000 /nogui option ignored -2 * Loglike = 709.529833 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.435091 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 671.010862 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 709.832742 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.274859 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 676.755587 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.813503 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 698.020340 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 670.148978 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.881045 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.910352 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 669.106081 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 722.348111 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.912197 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 677.283223 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 717.208369 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 669.375593 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.353361 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.269660 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 669.728288 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.717030 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.563772 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 674.753503 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.436994 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.777778 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 676.983051 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.776520 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.755885 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 669.081997 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.606486 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.656620 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 675.919664 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 = 696.381508 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.285884 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 675.876208 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 681.72 S.D. = 5.0631 S.E.M. = 0.071604 ECHO 0 Execution completed -2 * Loglike = 703.833333 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 725.568344 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.230199 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.413003 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.114926 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.764301 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 713.666259 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.717443 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.949565 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 718.244369 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.531425 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.973306 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.232010 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.906963 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.687035 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.584009 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.063513 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 718.963917 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.292050 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 717.917351 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.432497 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 716.669475 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.256573 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 668.472845 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 673.50 S.D. = 4.2874 S.E.M. = 0.060633 ECHO 0 Execution completed -2 * Loglike = 713.778866 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.823013 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.818079 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 713.343487 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.297693 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.103335 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 725.655471 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.876525 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.222079 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.278094 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.692031 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.608826 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.204352 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.642237 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.284533 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.95 S.D. = 5.5414 S.E.M. = 0.078367 ECHO 0 Execution completed -2 * Loglike = 719.191894 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 711.763116 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.297851 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.624775 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.843731 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 718.947814 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.845647 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.218843 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 722.998192 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 712.190852 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.590104 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 721.132946 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.144306 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 718.530258 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.236384 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.123067 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.181725 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.427048 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.377763 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.954462 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.919017 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 713.973659 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.002530 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.285268 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 714.323700 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.574885 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 710.423467 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 715.06 S.D. = 4.0577 S.E.M. = 0.057384 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 for 50 iterations out of 500 -2 * Loglike = 676.395265 Burning in for 100 iterations out of 500 -2 * Loglike = 677.215609 Burning in for 150 iterations out of 500 -2 * Loglike = 677.375008 Burning in for 200 iterations out of 500 -2 * Loglike = 680.410235 Burning in for 250 iterations out of 500 -2 * Loglike = 682.469764 Burning in for 300 iterations out of 500 -2 * Loglike = 680.010316 Burning in for 350 iterations out of 500 -2 * Loglike = 685.685612 Burning in for 400 iterations out of 500 -2 * Loglike = 681.168571 Burning in for 450 iterations out of 500 -2 * Loglike = 679.435142 Burning in for 500 iterations out of 500 -2 * Loglike = 680.186706 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.824250 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 684.027653 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 675.351383 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 681.114916 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 678.289006 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.920966 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 674.199508 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.472273 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 675.471369 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 675.161680 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 675.291280 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 677.812300 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 677.794575 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 674.918239 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 683.045631 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 676.654094 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 680.447665 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 677.007326 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 686.669748 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 679.981584 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 680.153710 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 679.469004 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 679.911971 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.921178 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 679.554623 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 681.404839 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 678.026762 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.496844 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 680.530483 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 679.184277 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 677.352348 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 682.198414 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 681.370001 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 680.285956 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 675.866986 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 676.841446 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 677.780278 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 677.246957 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 688.707264 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 682.336486 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 676.343208 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 683.731047 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 682.199787 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 679.994497 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 680.075787 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 679.668005 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.159696 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 678.363499 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 678.401959 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 682.352625 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 684.674005 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 681.100119 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.766292 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 680.033171 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 683.809257 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.565135 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 679.078904 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 681.235556 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 679.277825 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 679.459689 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 680.277464 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 678.347551 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 679.224514 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 678.127263 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 683.789367 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.689484 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 676.581876 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 681.546861 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.663028 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 683.231325 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 675.476449 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 675.186436 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 676.426138 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.154671 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 676.431638 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.808627 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 687.096025 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 690.296646 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 684.120432 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 676.519166 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 678.102265 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.466231 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 677.889508 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 677.003914 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.831206 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 680.391187 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 685.869848 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 685.643521 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 678.819575 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.409643 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 684.177249 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 678.688119 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.679059 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 676.537575 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 679.902425 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 683.935818 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 688.288945 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 679.502359 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 685.244265 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 /nogui option ignored ECHO 0 -2 * Loglike = 676.185226 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 680.91 S.D. = 4.0432 S.E.M. = 0.057180 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 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 for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 707.310514 Burning in for 100 iterations out of 500 -2 * Loglike = 707.962842 Burning in for 150 iterations out of 500 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 for 50 iterations out of 500 -2 * Loglike = 706.873701 Burning in for 200 iterations out of 500 -2 * Loglike = 721.025035 Burning in for 100 iterations out of 500 -2 * Loglike = 716.397946 Burning in for 150 iterations out of 500 -2 * Loglike = 718.048658 Burning in for 200 iterations out of 500 -2 * Loglike = 707.353833 Burning in for 250 iterations out of 500 -2 * Loglike = 719.046391 Burning in for 250 iterations out of 500 -2 * Loglike = 715.413948 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 721.527231 Burning in for 300 iterations out of 500 -2 * Loglike = 710.873217 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 719.674308 Burning in for 350 iterations out of 500 -2 * Loglike = 716.295075 Burning in for 400 iterations out of 500 -2 * Loglike = 724.623139 Burning in for 400 iterations out of 500 -2 * Loglike = 713.233205 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 723.159576 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 711.658553 Burning in for 500 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 = 722.733513 Burning in for 500 iterations out of 500 -2 * Loglike = 712.686182 -2 * Loglike = 723.663835 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 = 708.976626 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 722.772519 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.212320 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.591741 Actual update 150 of 5000, Stored update 150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 706.061983 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 714.954785 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.754877 Burning in for 100 iterations out of 500 -2 * Loglike = 713.123781 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 722.436505 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 = 708.459684 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.690043 Burning in for 150 iterations out of 500 -2 * Loglike = 717.630754 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.199953 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.981909 Burning in for 200 iterations out of 500 -2 * Loglike = 732.568416 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.575432 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.833453 Burning in for 250 iterations out of 500 -2 * Loglike = 713.861314 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.379683 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 692.836213 Burning in for 300 iterations out of 500 -2 * Loglike = 732.656186 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.525716 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.727333 Burning in for 350 iterations out of 500 -2 * Loglike = 718.323480 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.760281 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 698.069786 Burning in for 400 iterations out of 500 -2 * Loglike = 715.938277 Actual update 550 of 5000, Stored update 550 of 5000 /nogui option ignored -2 * Loglike = 707.222305 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.168981 Burning in for 450 iterations out of 500 -2 * Loglike = 716.347614 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.801794 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.519464 Burning in for 500 iterations out of 500 -2 * Loglike = 717.423722 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 695.005320 -2 * Loglike = 722.679485 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 720.261506 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 = 705.509336 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.178916 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.244316 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 732.081439 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.712830 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.800322 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.237697 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 718.203417 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.315863 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.748312 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 719.458467 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.129459 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.250084 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.867008 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 691.936264 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 723.226892 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 728.930622 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.338273 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 713.195196 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.001616 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.744921 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.735450 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.101584 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.074763 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.892579 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 718.838358 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 689.959731 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 711.583000 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.248740 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.947494 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 712.310768 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.296075 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 690.443662 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.995649 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.770135 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.625597 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 712.478502 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.092702 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.754958 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.674436 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 720.152305 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 688.646439 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.525309 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 732.584308 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.049200 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.397188 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 719.239709 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.607685 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 706.840782 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.850388 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 694.013264 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.564723 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.314098 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 690.537125 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.850329 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 731.368714 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.730236 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.211380 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.809771 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.333231 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.793155 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.641799 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.933433 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.223556 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.778825 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.320009 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 706.511399 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.247426 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 693.747297 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.637114 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.181513 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 695.290349 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 710.261063 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.335599 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.429779 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 718.492793 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 728.076268 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.500539 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 713.335789 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.890146 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.041544 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.123021 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.333206 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 700.048454 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.486730 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.798526 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.337120 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.823289 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.005704 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.518605 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 711.568495 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 718.415773 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.491945 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 711.994545 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.154264 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.260763 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 708.048104 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 716.976428 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 692.809737 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.383752 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 730.453597 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.410398 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.496505 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.045268 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 689.937084 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.603743 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.289273 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.163217 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.463874 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 727.519949 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.829360 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 716.415573 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 721.455706 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.407429 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 712.710805 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.421451 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.802874 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.178512 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 719.222382 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.011368 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.825097 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.921692 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.238883 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 694.230054 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 723.893707 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.680276 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.076823 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.575958 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.783807 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 691.791081 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 720.139470 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.819050 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.930954 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 720.972419 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.735208 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 693.597317 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 717.822782 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.058714 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.666244 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 694.852306 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.425653 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.083975 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.927378 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.776015 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.480525 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 691.620571 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.486053 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 719.010874 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.364966 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.409857 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.922756 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 715.527915 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.140876 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 724.004498 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 721.335667 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.703621 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 729.251324 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.380111 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.786958 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 718.729550 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 713.091375 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 693.079987 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.972590 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.489556 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.037248 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 719.800601 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 712.612414 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.800112 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 721.522246 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.521564 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.092401 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.728565 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 706.820396 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.327387 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.232329 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.754140 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.760627 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.629151 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 717.077721 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.442717 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.336548 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.964679 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.733041 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.146183 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.199929 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.481794 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 715.080859 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.648328 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.499244 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.422271 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.700565 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 693.524408 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 715.911538 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.160999 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.741894 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.279698 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 723.070091 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.867596 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.995878 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.373266 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.987304 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 719.531344 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.212596 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.060554 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 727.390174 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.861589 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.465812 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.838136 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.241175 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 695.767951 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.453972 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 719.017013 Actual update 4300 of 5000, Stored update 4300 of 5000 /nogui option ignored -2 * Loglike = 724.627051 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.938833 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.371489 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 720.305984 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 689.222311 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.254849 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.481450 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 691.729122 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 713.858254 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 725.143661 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.893018 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.044130 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 719.850415 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.220894 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.036460 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 725.712543 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 688.884729 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 714.728496 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 722.742992 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.720437 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.920366 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 718.032802 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.488495 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.960682 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 726.876581 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.546013 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 707.748686 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.206269 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.151658 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.155536 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.470394 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.125966 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 714.197839 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.216912 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 693.509786 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.520404 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 722.902392 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.552393 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.587714 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.537932 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.371151 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.225291 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.730225 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.199150 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.386354 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.148388 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.171146 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 703.545798 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.973977 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.585888 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.168994 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 691.286935 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.865329 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.452779 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 692.090352 Actual update 4800 of 5000, Stored update 4800 of 5000 /nogui option ignored -2 * Loglike = 696.403273 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.944125 Actual update 4900 of 5000, Stored update 4900 of 5000 ECHO 0 -2 * Loglike = 696.489771 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.406373 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.969870 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.49 S.D. = 4.1766 S.E.M. = 0.059065 ECHO 0 Execution completed -2 * Loglike = 706.690129 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 712.35 S.D. = 4.5647 S.E.M. = 0.064554 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 for 50 iterations out of 500 -2 * Loglike = 719.683509 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 716.638703 Burning in for 150 iterations out of 500 -2 * Loglike = 725.386488 Burning in for 200 iterations out of 500 -2 * Loglike = 722.284961 Burning in for 250 iterations out of 500 -2 * Loglike = 723.787519 Burning in for 300 iterations out of 500 ECHO 0 -2 * Loglike = 729.530293 Burning in for 350 iterations out of 500 -2 * Loglike = 725.675852 Burning in for 400 iterations out of 500 -2 * Loglike = 720.512228 Burning in for 450 iterations out of 500 -2 * Loglike = 722.618761 Burning in for 500 iterations out of 500 -2 * Loglike = 723.458072 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 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 = 706.842953 Burning in for 100 iterations out of 500 -2 * Loglike = 729.105437 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.409014 Burning in for 150 iterations out of 500 -2 * Loglike = 729.525134 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.855197 Burning in for 200 iterations out of 500 -2 * Loglike = 689.631526 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.93 S.D. = 4.4520 S.E.M. = 0.062960 ECHO 0 Execution completed -2 * Loglike = 706.778090 Burning in for 250 iterations out of 500 -2 * Loglike = 725.382421 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.807465 Burning in for 300 iterations out of 500 -2 * Loglike = 729.410422 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.680588 Burning in for 350 iterations out of 500 -2 * Loglike = 726.158654 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.073846 Burning in for 400 iterations out of 500 -2 * Loglike = 732.543702 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.610804 Burning in for 450 iterations out of 500 -2 * Loglike = 715.520583 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.390285 Burning in for 500 iterations out of 500 -2 * Loglike = 724.473379 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 701.816930 -2 * Loglike = 718.254052 Actual update 500 of 5000, Stored update 500 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 716.845279 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.818831 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.508784 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.932448 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.267003 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.026680 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.165348 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.484798 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 713.263232 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 727.987687 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.724199 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.452722 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.351466 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 714.612663 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.590699 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.874600 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 728.116270 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.740607 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 724.400337 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.267970 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.620768 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 698.488393 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.228280 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 705.301334 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 719.631718 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 706.213914 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 720.620446 Actual update 1250 of 5000, Stored update 1250 of 5000 ECHO 0 -2 * Loglike = 701.541844 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.650684 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.724287 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.118496 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.650412 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 724.341172 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.703340 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 726.423793 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 713.689585 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 728.591045 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.829935 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 725.194032 Actual update 1550 of 5000, Stored update 1550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 710.990178 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 725.478774 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.429144 Burning in for 100 iterations out of 500 -2 * Loglike = 709.552276 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.835392 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.354848 Burning in for 150 iterations out of 500 -2 * Loglike = 703.803221 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.227476 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.357984 Burning in for 200 iterations out of 500 -2 * Loglike = 702.990470 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 726.402180 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 715.660337 Burning in for 250 iterations out of 500 -2 * Loglike = 702.128804 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.628369 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 712.440858 Burning in for 300 iterations out of 500 -2 * Loglike = 705.847522 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.767557 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.424198 Burning in for 350 iterations out of 500 -2 * Loglike = 711.016784 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 727.451783 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.671021 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 719.084511 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 708.707862 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.265776 Burning in for 450 iterations out of 500 -2 * Loglike = 729.153413 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.893175 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 716.287127 Burning in for 500 iterations out of 500 -2 * Loglike = 722.793038 Actual update 2050 of 5000, Stored update 2050 of 5000 ECHO 0 -2 * Loglike = 709.676194 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 715.757961 -2 * Loglike = 716.992434 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.647317 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 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 for 50 iterations out of 500 -2 * Loglike = 727.014554 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 709.063902 Actual update 1550 of 5000, Stored update 1550 of 5000 /nogui option ignored -2 * Loglike = 720.012594 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.538918 Burning in for 100 iterations out of 500 -2 * Loglike = 725.298448 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.318665 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 712.095474 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.146988 Burning in for 150 iterations out of 500 -2 * Loglike = 722.372202 Actual update 2250 of 5000, Stored update 2250 of 5000 ECHO 0 -2 * Loglike = 709.020408 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 711.231852 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 696.108355 Burning in for 200 iterations out of 500 -2 * Loglike = 727.854691 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.759071 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 707.574286 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 697.650662 Burning in for 250 iterations out of 500 -2 * Loglike = 723.395245 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.273841 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.357013 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.644446 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 for 50 iterations out of 500 -2 * Loglike = 723.734478 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 726.954331 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.386033 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.648292 Burning in for 100 iterations out of 500 -2 * Loglike = 699.379425 Burning in for 350 iterations out of 500 -2 * Loglike = 720.123446 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.247242 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 716.154224 Burning in for 150 iterations out of 500 -2 * Loglike = 700.549996 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 704.716652 Burning in for 400 iterations out of 500 -2 * Loglike = 720.108902 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.723679 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 716.949534 Burning in for 200 iterations out of 500 -2 * Loglike = 698.823339 Burning in for 450 iterations out of 500 -2 * Loglike = 722.350760 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 711.878579 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 723.619053 Burning in for 250 iterations out of 500 -2 * Loglike = 701.084468 Burning in for 500 iterations out of 500 -2 * Loglike = 709.066123 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 731.942282 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.177380 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.557962 Burning in for 300 iterations out of 500 -2 * Loglike = 700.386643 ECHO 0 -2 * Loglike = 726.780909 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.183056 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 721.179940 Burning in for 350 iterations out of 500 -2 * Loglike = 711.089019 Actual update 600 of 5000, Stored update 600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 724.121331 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.241557 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 724.945727 Burning in for 400 iterations out of 500 -2 * Loglike = 710.857674 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.534653 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 719.440179 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.121459 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 719.377746 Burning in for 450 iterations out of 500 -2 * Loglike = 711.549953 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.722875 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 727.693488 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.003884 Actual update 2100 of 5000, Stored update 2100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 723.510500 Burning in for 500 iterations out of 500 -2 * Loglike = 708.210515 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.354461 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 724.395465 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 705.886302 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.240221 Burning in for 100 iterations out of 500 -2 * Loglike = 719.242941 -2 * Loglike = 715.541509 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 701.581729 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 718.987225 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.116991 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 717.994818 Burning in for 150 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 710.030498 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 697.703378 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 722.603487 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.726467 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 718.645542 Burning in for 200 iterations out of 500 -2 * Loglike = 719.250349 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.534754 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 714.652455 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.547417 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 711.391076 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.537407 Burning in for 250 iterations out of 500 -2 * Loglike = 721.318927 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 693.286017 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.270574 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 714.580146 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.369523 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.240806 Burning in for 300 iterations out of 500 -2 * Loglike = 714.050264 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.729692 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.099220 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.206729 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.998298 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 721.280894 Burning in for 350 iterations out of 500 -2 * Loglike = 721.360082 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.155595 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.747415 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.630920 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.220880 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 726.663343 Burning in for 400 iterations out of 500 -2 * Loglike = 716.839962 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.054902 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.269833 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.709067 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 714.501396 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 719.261902 Burning in for 450 iterations out of 500 -2 * Loglike = 696.517465 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 731.668164 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 708.292658 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.988317 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 712.659291 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 696.551466 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 715.482598 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.338023 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.722936 Burning in for 500 iterations out of 500 -2 * Loglike = 726.231349 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 713.423145 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.745987 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.287800 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 722.831054 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.041824 -2 * Loglike = 713.828805 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 733.382001 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.149137 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.939973 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.950575 Actual update 500 of 5000, Stored update 500 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 712.776798 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 717.091315 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.639077 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 703.765303 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.654400 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 722.710514 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.693362 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.542035 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 721.934211 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.862052 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.355571 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 722.630361 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 717.315857 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 718.827801 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.054347 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 716.507002 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.563114 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.639321 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 723.932295 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 723.213586 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.236547 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.279942 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 722.625236 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.417749 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.637794 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 725.186926 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.277060 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.317370 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 720.801818 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.437559 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.671133 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 717.514209 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.569461 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 722.669888 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 732.534178 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 712.906936 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.362467 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.242237 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 702.896430 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 718.138373 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.861853 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.776192 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 723.662306 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.898749 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.819754 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.876365 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.383570 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 719.041665 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 719.811281 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.687519 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.893512 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.516777 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 713.074035 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 725.447205 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.876040 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.381661 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.299382 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.991141 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.422249 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 731.350712 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.228678 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.146777 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 706.322821 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 716.329518 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.170427 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 727.825493 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.025792 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 719.442604 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.343235 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 722.750162 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.321548 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.260333 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 715.997642 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 724.212290 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.090479 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.935690 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.613365 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 717.923288 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.989642 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.096194 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.702971 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 719.474843 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.255636 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 722.370605 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.379405 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 721.362899 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.192667 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.767732 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.524619 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.067235 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.007615 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.344620 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 706.565897 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.553500 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.712099 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.651875 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.350097 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.808134 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 706.196053 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 720.919199 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 713.767145 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.979944 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 719.226511 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.307596 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.175289 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 708.363619 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.712905 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.195014 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.828973 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 724.708360 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 721.432594 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.923280 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.014747 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 729.114145 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 699.271125 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 718.466397 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 719.069917 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.795589 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 723.547948 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.104781 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.159670 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 717.695749 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 719.515446 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 717.584925 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 722.790144 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.427038 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.350352 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.586019 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.402536 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.806209 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 729.543240 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.161079 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.333486 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.393028 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 721.368663 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 708.565840 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 726.694869 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.438668 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 715.030934 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.905580 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.636316 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 714.756196 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 727.420532 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 711.060098 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.810214 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 711.622850 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.487305 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 700.590707 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 729.924210 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.984144 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 721.773948 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.628280 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.947967 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.381332 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 719.290457 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 718.785579 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.696081 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.374969 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 722.893609 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 719.442948 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 716.608490 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.096085 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.993663 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.882957 Actual update 1400 of 5000, Stored update 1400 of 5000 /nogui option ignored -2 * Loglike = 713.885752 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.851909 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.844728 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 719.776542 Actual update 1450 of 5000, Stored update 1450 of 5000 /nogui option ignored -2 * Loglike = 699.725837 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 721.119585 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 706.961517 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 717.504528 Actual update 1950 of 5000, Stored update 1950 of 5000 ECHO 0 -2 * Loglike = 699.357900 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.408393 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.885874 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 713.287682 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.012535 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.950720 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 719.234903 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.865506 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 720.194382 Actual update 4850 of 5000, Stored update 4850 of 5000 ECHO 0 -2 * Loglike = 728.873597 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.864220 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.172415 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.719437 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 720.155307 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 732.302378 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.992829 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.446007 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.286310 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 for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 718.413845 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 713.501401 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 713.813670 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.924576 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 735.737277 Burning in for 100 iterations out of 500 -2 * Loglike = 726.167227 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 717.859898 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 722.429938 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.768873 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.213088 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 733.311380 Burning in for 150 iterations out of 500 ECHO 0 -2 * Loglike = 724.543186 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 708.260291 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 726.030567 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.003769 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.552843 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 695.157652 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 736.721030 Burning in for 200 iterations out of 500 -2 * Loglike = 714.039841 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 719.308049 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 = 718.845988 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.678669 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.108803 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.495171 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.122152 Actual update 2250 of 5000, Stored update 2250 of 5000 ECHO 0 -2 * Loglike = 737.392098 Burning in for 250 iterations out of 500 -2 * Loglike = 720.455640 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 713.124026 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.082779 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 702.398288 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.228104 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 734.885189 Burning in for 300 iterations out of 500 -2 * Loglike = 710.515537 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.802370 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.540482 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 711.652472 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.274719 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 739.067792 Burning in for 350 iterations out of 500 -2 * Loglike = 712.963005 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 700.294258 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 720.622150 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.852760 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 729.978918 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 741.004972 Burning in for 400 iterations out of 500 -2 * Loglike = 722.272884 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.166632 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 720.167680 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.419491 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.356236 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 733.774668 Burning in for 450 iterations out of 500 -2 * Loglike = 717.366176 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.868398 Actual update 2800 of 5000, Stored update 2800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 717.141979 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.653403 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.390029 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 735.744754 Burning in for 500 iterations out of 500 -2 * Loglike = 722.343634 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.547760 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 719.378701 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.452707 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.683052 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 735.747696 -2 * Loglike = 710.516632 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 698.737209 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 722.566701 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.824666 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 706.354993 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 = 721.937628 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.705969 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 720.730984 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 717.128309 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.708495 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 740.406564 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 723.119182 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.397350 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 721.224366 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.082448 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.451137 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 739.931950 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.160155 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.523748 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 716.204088 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.61 S.D. = 4.4427 S.E.M. = 0.062830 ECHO 0 Execution completed -2 * Loglike = 722.395776 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.558416 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 725.286489 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 736.458351 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.241327 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.859216 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 719.534581 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 708.741851 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 718.653855 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 740.211714 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.264350 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 719.589800 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.821418 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 719.896534 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 739.005298 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 699.676458 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.551088 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.200179 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.846818 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 747.991653 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.493952 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 718.746532 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.985358 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.604808 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.057469 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.654921 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 714.855004 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.815187 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 736.836206 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.213636 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.045997 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 725.031127 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 736.531101 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.859835 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 719.930199 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 720.734346 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.843069 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.034588 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 730.235652 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 720.094877 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.160818 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 722.544255 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.002391 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 736.547949 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 713.928873 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.823758 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 720.925953 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 730.256799 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 720.740944 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.579352 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.314329 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 722.456329 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 731.793361 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 732.107634 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.614460 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.329137 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.949419 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 728.198609 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 720.051657 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 719.100746 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 721.828228 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.393059 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 738.800846 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.796217 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.315097 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.645450 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.781137 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 732.058598 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 721.858134 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 721.620258 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 695.314084 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 709.759688 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 736.032935 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.385097 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.721197 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.096460 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 717.030902 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.204460 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 734.843214 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 715.969760 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.893213 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 714.722699 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.661512 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 742.116332 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 720.657979 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.174951 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.163697 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 736.508377 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.642148 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.40 S.D. = 4.1795 S.E.M. = 0.059108 ECHO 0 Execution completed -2 * Loglike = 724.153034 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 719.013621 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.114622 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 720.357835 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 736.872701 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.956582 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 718.304300 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.625132 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 710.501711 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 733.259311 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.970747 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.284653 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.789868 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 717.936409 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 733.407894 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 723.835284 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.657695 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 717.371862 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.007186 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 734.131503 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 736.864589 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.151601 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.857665 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.234152 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 735.890826 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 723.945752 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 717.398180 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.667703 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 727.254570 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 738.709188 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 716.968412 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.041487 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.458266 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.887573 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 736.128676 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 716.466515 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 696.264523 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.527018 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 737.359887 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.149729 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 725.792277 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 701.889173 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.471096 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 739.474023 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.637195 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 717.125116 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.336331 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 718.763817 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 736.095276 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 717.609214 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 715.363777 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.061130 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.873583 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 736.625933 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.533321 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.881422 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.817840 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.377469 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 737.052154 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 721.393440 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 717.306955 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 697.643063 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 726.423333 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 736.125574 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.566963 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.541994 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.630932 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 729.031372 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 739.951696 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 718.898604 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.834278 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.860298 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.471996 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 732.571372 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.312157 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 724.534906 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.002444 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 734.663146 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.725081 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.185887 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 723.351062 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 737.866451 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.656364 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 717.331196 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.867175 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 732.405257 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.233675 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 719.023547 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 718.063986 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 743.551840 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.610947 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.274092 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.141286 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 736.721548 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 703.290348 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.922350 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.261933 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 729.623761 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.316845 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 721.488120 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 718.334673 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 738.213523 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 701.450189 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 726.903747 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 722.180692 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 739.457454 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.302769 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 717.504897 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 737.589520 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 722.682269 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 725.177347 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 738.621872 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.411044 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 735.516872 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 719.408793 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 735.584490 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 721.367714 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 737.836071 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 722.249104 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 736.453954 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.951827 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 735.377291 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.803023 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.62 S.D. = 4.3736 S.E.M. = 0.061852 ECHO 0 Execution completed -2 * Loglike = 721.527489 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 742.680370 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 718.377150 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 738.117983 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.659217 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 737.853072 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.587925 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 734.882921 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 724.140545 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 739.515259 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 718.933526 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 742.184124 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 720.886736 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 736.152416 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 738.451718 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 735.821729 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 730.091790 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 735.190359 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 736.588953 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 730.871052 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.270350 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.15 S.D. = 3.9806 S.E.M. = 0.056294 ECHO 0 Execution completed -2 * Loglike = 734.920992 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 739.045190 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 740.160167 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 730.513584 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.423272 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.35 S.D. = 4.4696 S.E.M. = 0.063209 ECHO 0 Execution completed -2 * Loglike = 735.955433 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 734.915445 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 737.111622 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 733.392431 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 733.051858 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 730.400307 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 742.568682 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 736.106638 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.000158 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 720.37 S.D. = 2.2793 S.E.M. = 0.032235 ECHO 0 Execution completed -2 * Loglike = 736.187034 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 742.326156 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 738.608405 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 735.811014 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 734.706450 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 732.872480 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 737.449137 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 737.844298 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 734.431213 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 739.815491 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 735.142348 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 738.153307 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 740.181796 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 736.892681 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 738.286677 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 740.967926 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 732.300769 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 737.791651 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 735.417434 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 735.699370 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 732.064802 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 743.343538 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 736.901929 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 739.083647 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 731.696115 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 736.66 S.D. = 3.1631 S.E.M. = 0.044733 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 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 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 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 for 50 iterations out of 500 -2 * Loglike = 708.608799 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 for 50 iterations out of 500 ECHO 0 -2 * Loglike = 707.825443 Burning in for 100 iterations out of 500 -2 * Loglike = 710.320106 Burning in for 150 iterations out of 500 -2 * Loglike = 695.819267 Burning in for 100 iterations out of 500 -2 * Loglike = 704.424025 Burning in for 150 iterations out of 500 -2 * Loglike = 710.642392 Burning in for 200 iterations out of 500 -2 * Loglike = 689.181511 Burning in for 150 iterations out of 500 -2 * Loglike = 704.863259 Burning in for 200 iterations out of 500 -2 * Loglike = 714.081969 Burning in for 250 iterations out of 500 -2 * Loglike = 690.700518 Burning in for 200 iterations out of 500 -2 * Loglike = 712.489796 Burning in for 250 iterations out of 500 -2 * Loglike = 713.758394 Burning in for 300 iterations out of 500 -2 * Loglike = 693.392220 Burning in for 250 iterations out of 500 -2 * Loglike = 708.865552 Burning in for 300 iterations out of 500 -2 * Loglike = 712.379553 Burning in for 350 iterations out of 500 -2 * Loglike = 695.777996 Burning in for 300 iterations out of 500 -2 * Loglike = 718.067887 Burning in for 400 iterations out of 500 -2 * Loglike = 715.271417 Burning in for 350 iterations out of 500 -2 * Loglike = 693.617599 Burning in for 350 iterations out of 500 -2 * Loglike = 717.387852 Burning in for 400 iterations out of 500 -2 * Loglike = 714.847491 Burning in for 450 iterations out of 500 -2 * Loglike = 698.367363 Burning in for 400 iterations out of 500 -2 * Loglike = 706.851153 Burning in for 450 iterations out of 500 -2 * Loglike = 710.476569 Burning in for 500 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 = 693.335691 Burning in for 450 iterations out of 500 -2 * Loglike = 707.932358 Burning in for 500 iterations out of 500 -2 * Loglike = 712.054126 -2 * Loglike = 697.178694 Burning in for 500 iterations out of 500 -2 * Loglike = 703.292083 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.516875 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.205900 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.058263 Actual update 100 of 5000, Stored update 100 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 718.874439 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.495714 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.787399 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.052317 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.406566 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 716.545103 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.760207 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.521332 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.262737 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.309628 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.431923 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 726.801794 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 719.769422 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.978314 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.067734 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 707.950212 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.453652 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.512368 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.934614 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.425667 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.566275 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.105114 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 686.620223 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.311404 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.728023 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.317209 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.307685 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.832992 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.010044 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 711.619846 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.312989 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 689.492824 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.027752 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.640072 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 688.758036 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.276143 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.464509 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.096607 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 715.799061 Actual update 800 of 5000, Stored update 800 of 5000 ECHO 0 -2 * Loglike = 715.311938 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.162660 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.507329 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.290137 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.009743 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 686.630927 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 711.853168 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.219447 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 694.905037 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 704.372480 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 723.502986 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.654190 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 717.841844 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.839940 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.049824 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 710.497336 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.986156 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.183118 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 713.506164 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.613820 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.905829 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.768818 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 706.301298 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.047223 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 715.812702 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 705.829626 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 695.746288 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 714.178749 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 691.047127 Actual update 1150 of 5000, Stored update 1150 of 5000 /nogui option ignored -2 * Loglike = 709.377341 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 714.599846 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.099426 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 712.964704 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.193905 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.060302 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.961632 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 716.822234 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 689.277238 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.840911 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 714.089244 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.871133 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 713.340862 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 713.883248 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.765067 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 715.215799 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.529592 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.759118 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 712.598414 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.518164 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 714.143017 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 712.758500 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.092749 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.178054 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 712.519066 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 690.934887 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.085653 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.783630 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 709.447653 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 690.451471 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 710.025770 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.180942 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.199989 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 714.431619 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.090710 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.481812 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.736542 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.618385 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.589018 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.970061 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.898597 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.354598 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.116291 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.704027 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.695664 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.787949 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 693.464200 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.625496 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 715.662545 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 691.292926 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.309928 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.574312 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 709.732373 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.185725 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.902240 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 714.761489 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.903294 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.189570 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.600929 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.868778 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.482612 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.989948 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.978070 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 692.001552 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 714.976781 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.798809 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.703791 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 711.269466 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.336466 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.965335 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 711.553082 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.527198 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 ECHO 0 -2 * Loglike = 689.514073 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.249646 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 713.105615 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.774976 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 707.024354 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 713.921959 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.414146 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.359207 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.003148 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.929735 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.239671 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.986949 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.531047 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.919996 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.594786 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 691.561581 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 = 711.739291 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 714.758640 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 696.283337 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.002423 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.980945 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.902817 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.295882 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.465146 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.369795 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 717.210284 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 724.531052 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 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.728490 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 711.774584 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.085063 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 688.187858 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 706.960546 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.090904 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.097712 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.636242 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.564895 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 690.516100 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.281087 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 713.537481 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.315392 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.953821 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.140701 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.983825 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.473475 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.504372 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 691.303143 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.978080 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.314392 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.294103 Actual update 3300 of 5000, Stored update 3300 of 5000 /nogui option ignored -2 * Loglike = 704.553223 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.680451 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.203416 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.286884 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.945853 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.160303 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 716.203110 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 722.311305 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.820819 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.468807 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 709.923761 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.274138 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 707.434907 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.613275 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.321251 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.726144 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 712.500171 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.289941 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.604753 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 716.682168 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 689.397713 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.721072 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.673942 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 708.355114 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.689197 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.090302 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.724043 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.994299 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 690.441673 Actual update 3800 of 5000, Stored update 3800 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 = 710.234673 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 712.682578 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.853198 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.428740 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.224279 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.604473 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.474000 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.719336 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.843300 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 730.336685 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.656054 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 735.613017 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.157328 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.259985 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 689.196210 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 732.037605 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.156783 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 691.281460 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.022259 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.083863 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.474559 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.239013 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 690.359741 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.994579 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 710.653929 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.092350 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.089011 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.962679 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.266767 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.784943 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.082006 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 711.779255 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 690.384087 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.101568 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 710.140359 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 696.286955 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 712.349247 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.809293 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.892477 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.101166 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 729.534318 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 691.637668 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.675868 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 718.667900 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.590395 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 713.305900 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 719.462311 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.973152 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.328842 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 713.202457 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 690.298415 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 716.178598 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 717.690772 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.166276 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.035255 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.724511 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 689.504476 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.931017 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.347937 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 688.166873 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.030244 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.660434 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 692.235859 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.386181 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 709.175880 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.671573 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.228089 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.845034 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.217217 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.469585 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.029228 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.852783 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.994594 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.376720 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.982962 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.599370 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 724.373845 Actual update 5000 of 5000, Stored update 5000 of 5000 /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 -2 * Loglike = 687.935445 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.37 S.D. = 4.3064 S.E.M. = 0.060902 ECHO 0 Execution completed -2 * Loglike = 709.264838 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 715.41 S.D. = 5.5885 S.E.M. = 0.079033 ECHO 0 Execution completed -2 * Loglike = 703.921528 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.05 S.D. = 4.2073 S.E.M. = 0.059500 ECHO 0 Execution completed /nogui option ignored ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 719.820859 Burning in for 100 iterations out of 500 -2 * Loglike = 715.332177 Burning in for 150 iterations out of 500 -2 * Loglike = 718.890390 Burning in for 200 iterations out of 500 -2 * Loglike = 719.284636 Burning in for 250 iterations out of 500 -2 * Loglike = 714.827055 Burning in for 300 iterations out of 500 -2 * Loglike = 722.742227 Burning in for 350 iterations out of 500 -2 * Loglike = 725.429159 Burning in for 400 iterations out of 500 -2 * Loglike = 725.029327 Burning in for 450 iterations out of 500 -2 * Loglike = 717.675152 Burning in for 500 iterations out of 500 -2 * Loglike = 721.649650 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.391129 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 725.331621 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.081172 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 725.516159 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 724.668433 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 732.544003 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 717.488129 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.837388 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.194906 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 714.755219 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.587153 Actual update 600 of 5000, Stored update 600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 717.147483 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 702.837625 Burning in for 100 iterations out of 500 -2 * Loglike = 723.338730 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.524891 Burning in for 150 iterations out of 500 -2 * Loglike = 713.191607 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 704.124008 Burning in for 200 iterations out of 500 -2 * Loglike = 723.545738 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.250791 Burning in for 250 iterations out of 500 -2 * Loglike = 718.545932 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 706.318434 Burning in for 300 iterations out of 500 -2 * Loglike = 720.629337 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.243993 Burning in for 350 iterations out of 500 -2 * Loglike = 721.087282 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.913670 Burning in for 400 iterations out of 500 -2 * Loglike = 726.985045 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.079734 Burning in for 450 iterations out of 500 -2 * Loglike = 721.964556 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.094885 Burning in for 500 iterations out of 500 -2 * Loglike = 721.279907 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.485479 -2 * Loglike = 722.658725 Actual update 1150 of 5000, Stored update 1150 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 716.140999 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 707.250371 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.742461 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.690365 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.571426 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.313952 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 723.399886 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.265942 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 722.212598 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 704.108197 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 723.073291 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 719.513232 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.522628 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.676939 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 721.393443 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 718.880920 Actual update 450 of 5000, Stored update 450 of 5000 /nogui option ignored -2 * Loglike = 722.017723 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.155735 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 724.264872 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.455294 Actual update 550 of 5000, Stored update 550 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 723.138272 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.005816 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 725.445470 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 703.360045 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 717.864686 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.626559 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.890110 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.130856 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 722.598014 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 706.130521 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 for 50 iterations out of 500 -2 * Loglike = 716.835110 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.279640 Actual update 850 of 5000, Stored update 850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 697.489387 Burning in for 100 iterations out of 500 -2 * Loglike = 722.491432 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.766505 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 for 50 iterations out of 500 -2 * Loglike = 714.138840 Burning in for 100 iterations out of 500 -2 * Loglike = 695.286741 Burning in for 150 iterations out of 500 -2 * Loglike = 722.207365 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.161516 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.877911 Burning in for 100 iterations out of 500 -2 * Loglike = 709.478070 Burning in for 150 iterations out of 500 -2 * Loglike = 697.466028 Burning in for 200 iterations out of 500 -2 * Loglike = 714.816630 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.904800 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.701952 Burning in for 150 iterations out of 500 -2 * Loglike = 713.652336 Burning in for 200 iterations out of 500 -2 * Loglike = 699.972705 Burning in for 250 iterations out of 500 -2 * Loglike = 717.122369 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.688221 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.475145 Burning in for 200 iterations out of 500 -2 * Loglike = 709.764637 Burning in for 250 iterations out of 500 -2 * Loglike = 697.277870 Burning in for 300 iterations out of 500 -2 * Loglike = 723.729567 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.588746 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.167022 Burning in for 250 iterations out of 500 -2 * Loglike = 716.061563 Burning in for 300 iterations out of 500 -2 * Loglike = 696.689976 Burning in for 350 iterations out of 500 -2 * Loglike = 721.217832 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 705.886981 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 697.217604 Burning in for 300 iterations out of 500 -2 * Loglike = 718.237230 Burning in for 350 iterations out of 500 -2 * Loglike = 703.655763 Burning in for 400 iterations out of 500 -2 * Loglike = 724.000156 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.328169 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.551285 Burning in for 400 iterations out of 500 -2 * Loglike = 700.081847 Burning in for 450 iterations out of 500 -2 * Loglike = 695.999210 Burning in for 350 iterations out of 500 -2 * Loglike = 719.074933 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 706.244583 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.124802 Burning in for 450 iterations out of 500 -2 * Loglike = 698.340648 Burning in for 500 iterations out of 500 -2 * Loglike = 703.817826 Burning in for 400 iterations out of 500 -2 * Loglike = 716.807805 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.461019 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.936898 Burning in for 500 iterations out of 500 -2 * Loglike = 700.388060 -2 * Loglike = 699.148424 Burning in for 450 iterations out of 500 -2 * Loglike = 719.782165 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.131224 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 715.477465 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.872182 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.427384 Burning in for 500 iterations out of 500 -2 * Loglike = 704.905876 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 = 701.526061 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 722.972873 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.251960 -2 * Loglike = 719.194206 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 713.312095 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 698.650348 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 727.811397 Actual update 2600 of 5000, Stored update 2600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 706.173073 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.294152 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.069748 Actual update 200 of 5000, Stored update 200 of 5000 ECHO 0 -2 * Loglike = 719.862694 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.253740 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 703.485764 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 716.085968 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.429737 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 716.039323 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.719149 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 703.456318 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 720.310377 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.418499 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 716.411647 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.550419 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.191862 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 715.885613 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.639412 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.112041 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.544293 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.260209 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 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 for 50 iterations out of 500 -2 * Loglike = 725.142393 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.287340 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.755779 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.236135 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.418541 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 729.010026 Burning in for 100 iterations out of 500 -2 * Loglike = 712.735645 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 722.639154 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.586553 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 708.260920 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.231953 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 700.797067 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.179860 Burning in for 150 iterations out of 500 -2 * Loglike = 721.490270 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 692.748614 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 694.707138 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 719.979227 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 700.270306 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 725.989124 Burning in for 200 iterations out of 500 -2 * Loglike = 714.987657 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.924339 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.940145 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.804264 Burning in for 250 iterations out of 500 -2 * Loglike = 709.725571 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.432801 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.201819 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.400399 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 717.025723 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 724.797599 Burning in for 300 iterations out of 500 -2 * Loglike = 716.779946 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.234731 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.798130 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.665754 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.109474 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 732.070729 Burning in for 350 iterations out of 500 -2 * Loglike = 714.447997 Actual update 2000 of 5000, Stored update 2000 of 5000 /nogui option ignored -2 * Loglike = 711.409946 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.013082 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.965407 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 728.493102 Burning in for 400 iterations out of 500 -2 * Loglike = 706.124354 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.611538 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.940452 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.631338 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.026151 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 723.157655 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 702.424110 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.396603 Actual update 3250 of 5000, Stored update 3250 of 5000 /nogui option ignored -2 * Loglike = 706.040491 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.255516 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 726.034734 Burning in for 500 iterations out of 500 -2 * Loglike = 708.258304 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.327208 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 695.274693 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 729.723978 -2 * Loglike = 722.969404 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.876554 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.865902 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.838529 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 ECHO 0 -2 * Loglike = 721.894649 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.441717 Actual update 2250 of 5000, Stored update 2250 of 5000 ECHO 0 -2 * Loglike = 698.158989 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.851259 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 715.736275 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 724.425765 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.584900 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.432073 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.457831 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 720.755707 Actual update 900 of 5000, Stored update 900 of 5000 /nogui option ignored -2 * Loglike = 733.822974 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 701.881953 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.558570 Actual update 2350 of 5000, Stored update 2350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.621877 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.379884 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.984102 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 730.300270 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.950921 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.708405 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 -2 * Loglike = 721.148474 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.705044 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 722.405947 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 734.457873 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.594494 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.418716 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.962333 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.856304 Actual update 1100 of 5000, Stored update 1100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 716.975765 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 730.403899 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.478395 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.166644 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 714.349972 Actual update 3600 of 5000, Stored update 3600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 716.626030 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 735.370806 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.577021 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 719.246657 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 739.619715 Burning in for 100 iterations out of 500 -2 * Loglike = 713.100198 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.379041 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.638905 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 698.842943 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 737.699461 Burning in for 150 iterations out of 500 -2 * Loglike = 722.039326 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.536760 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.412471 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 697.619302 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 739.554536 Burning in for 200 iterations out of 500 -2 * Loglike = 729.132529 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.095277 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.934368 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.655892 Actual update 2550 of 5000, Stored update 2550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 698.655172 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 730.587410 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 740.894565 Burning in for 250 iterations out of 500 -2 * Loglike = 720.218858 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.378354 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.411263 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 707.947555 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 697.895580 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.121714 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 737.624087 Burning in for 300 iterations out of 500 -2 * Loglike = 721.878810 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.095755 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.017931 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.449840 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.510615 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.829317 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 741.272798 Burning in for 350 iterations out of 500 -2 * Loglike = 727.462924 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.750803 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.617977 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 700.222224 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.829685 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.256308 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 745.530638 Burning in for 400 iterations out of 500 -2 * Loglike = 723.503742 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.566482 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.673122 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.130170 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.341314 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.828878 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 741.885063 Burning in for 450 iterations out of 500 -2 * Loglike = 719.865305 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 718.629655 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.705608 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.233014 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.461132 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.629904 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 741.125674 Burning in for 500 iterations out of 500 -2 * Loglike = 722.733929 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.969550 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.520715 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.960161 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.131752 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.743208 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 739.440905 -2 * Loglike = 718.662243 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 716.693359 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.856055 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.202569 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 726.334283 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.184576 Actual update 1600 of 5000, Stored update 1600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 720.738562 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.948921 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.871441 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.989921 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 719.725081 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 701.675624 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 743.693600 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 722.870647 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 716.485139 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.024307 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.776139 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.206464 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 730.475947 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 742.714174 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 713.388424 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.069142 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 720.307588 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 706.814793 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 697.877418 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 722.336589 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 739.379947 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 725.141104 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.490797 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.384097 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 732.434358 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.028063 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 694.029608 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 743.154769 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.700723 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.737248 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.634316 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 731.225004 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.469215 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.453020 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 741.707025 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.675981 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 695.881915 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.309611 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.933155 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.464488 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.276895 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 751.649177 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.104094 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.628626 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 713.100796 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 720.808388 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 706.921565 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.413422 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 738.454844 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.057036 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.821068 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.512271 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 712.862896 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.033460 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.390131 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 739.739158 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.238383 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.207135 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 722.228824 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 718.651349 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 723.369438 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.736463 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 739.105184 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.399939 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.503444 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 720.158835 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.818023 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 727.417580 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 694.664831 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 736.659919 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.705984 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.820264 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 710.158033 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 732.199919 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 722.205928 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.231564 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 739.923260 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.518169 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 714.592653 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 731.380525 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 724.881423 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 739.460229 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.064955 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.201098 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.412660 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.338761 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 732.109915 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 721.709952 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 739.764232 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.739307 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.239821 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.436680 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 719.076518 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.946420 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 736.943509 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.783986 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 730.186449 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.027815 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.368460 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.189617 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 715.692594 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 741.632794 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 730.220906 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 731.760208 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.991569 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 734.222713 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.496688 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.043920 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 737.929806 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 699.123725 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 697.011907 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.795469 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.121898 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 726.740195 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 730.353672 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.000458 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 744.183412 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.877760 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.061512 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.934170 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 704.802940 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 739.206842 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 707.633413 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 733.869685 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.209337 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 722.189102 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.905637 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 745.017160 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 717.490124 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 717.563273 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.020867 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.214295 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.674717 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 739.540921 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.309942 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.250612 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.173025 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 725.495668 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.950227 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 722.602848 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 717.169330 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.474950 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.118565 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.804368 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.516173 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.762013 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.414410 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.188367 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 708.417695 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 697.149351 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.732167 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 709.968259 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 706.146651 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.497222 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.321982 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.297699 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.952105 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 712.839769 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.485682 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 699.516342 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 721.633737 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.367397 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 739.362591 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.158237 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.648075 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.478715 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 731.486336 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.393142 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.317760 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.747478 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.727909 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 740.475781 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 723.198879 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.337945 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.691385 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.404085 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.278224 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 738.151872 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 720.942685 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 705.769533 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.416681 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.174686 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 741.363063 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.977047 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.230141 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.851152 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.815348 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 721.30 S.D. = 3.4909 S.E.M. = 0.049368 ECHO 0 Execution completed -2 * Loglike = 709.356487 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.572541 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 741.062722 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 722.560360 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.364031 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.844356 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.609293 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.409165 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 743.966191 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.727050 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 715.718264 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.613149 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.022359 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 739.355595 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.392275 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 713.599427 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 731.142426 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.223346 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.296102 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 740.005696 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.037914 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.842701 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 724.490722 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.626222 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.430447 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 741.385750 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.589828 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 733.305501 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.642091 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 704.165481 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.616952 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 738.947690 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.859638 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 732.071182 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.970259 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.870454 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.236327 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 739.557946 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.212524 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.335297 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 702.425282 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.561355 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 727.890025 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.612956 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.036925 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.137825 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 741.694209 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.866487 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 724.850287 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.123828 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.471620 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 736.076036 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 738.939285 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 712.313639 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 715.909956 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.051029 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.379856 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.977154 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 742.983119 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.811087 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 703.248082 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 694.909204 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 708.621693 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 721.947974 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 739.280890 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 716.243986 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 705.578701 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.724284 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 710.396695 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 719.885317 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 738.992080 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.550561 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.309101 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.156982 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.119399 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 740.422179 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.562904 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.242798 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.128554 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 724.490521 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 721.856503 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 739.445397 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.954587 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.029399 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.334048 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 739.565656 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 723.897747 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.418687 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.341456 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 741.636593 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.226338 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.500271 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 727.437574 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.535296 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 739.760958 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 721.759375 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 739.607768 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 724.635030 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.300001 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.526897 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 718.263537 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.384894 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 740.915928 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 696.069369 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.405304 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.544751 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 720.594678 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 738.282460 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.504260 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.920010 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.003488 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.166709 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 741.513192 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.724837 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.380325 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 714.592152 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 722.266773 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 739.184438 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.997638 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.226074 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 723.874609 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.821520 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.36 S.D. = 4.2437 S.E.M. = 0.060015 ECHO 0 Execution completed -2 * Loglike = 731.108476 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 739.512611 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 702.908025 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.959878 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 717.618628 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 730.136291 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 741.023923 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 703.526121 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.698846 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.960336 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 730.359370 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 739.939690 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.919046 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.052636 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.899124 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.480436 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 739.156089 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 705.375649 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.709179 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.136257 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 727.702881 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 745.414704 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.083285 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.769263 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 715.890479 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.859429 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 741.759546 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.579953 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.605546 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.968379 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 723.233049 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 738.274025 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.274671 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.194253 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.433342 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.195962 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 740.967689 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 695.168082 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.600599 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 718.439559 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 719.828431 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 742.420117 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.326763 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.875793 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.569376 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.713814 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 740.100289 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.871499 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.751211 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 717.094731 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 728.772432 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 740.908706 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.071158 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.027268 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 719.699643 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 725.017282 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 741.215354 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.884597 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.794646 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.780806 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 724.910994 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 738.746022 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 712.358297 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.962573 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.379068 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 736.061861 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 739.814880 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 703.412333 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 715.474392 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 739.538697 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.789430 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.165710 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 731.880917 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 738.475764 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.431583 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 717.075122 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 726.684049 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 740.165224 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.087127 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.753054 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.989421 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 741.879635 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.771322 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 722.437118 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 743.495515 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.516495 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 729.017803 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 739.382101 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.570214 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.661232 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 738.565056 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.674104 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.118164 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 739.461025 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 698.698020 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 733.314340 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 742.658769 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.212634 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 721.207361 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 743.024546 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 726.339842 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 739.134053 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 727.947477 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.264176 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 729.937865 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 740.824611 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 693.546897 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.23 S.D. = 4.3488 S.E.M. = 0.061502 ECHO 0 Execution completed -2 * Loglike = 722.639923 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 739.316623 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 720.162104 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 747.347812 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 730.462991 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 737.641055 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 727.881012 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 738.994130 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 719.489265 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 744.774316 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 720.446449 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 741.459899 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 731.706819 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 737.463078 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.233404 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 738.851553 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 726.725918 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 739.305792 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 740.735508 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 740.979847 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 739.208928 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.036307 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.89 S.D. = 5.0394 S.E.M. = 0.071268 ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 742.423726 Actual update 4300 of 5000, Stored update 4300 of 5000 /nogui option ignored -2 * Loglike = 740.046730 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 745.299552 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 ECHO 0 -2 * Loglike = 742.939517 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 739.781493 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 740.423636 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 742.949903 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 739.277795 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 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 for 50 iterations out of 500 -2 * Loglike = 742.219712 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 734.717064 Burning in for 100 iterations out of 500 -2 * Loglike = 695.033074 Burning in for 100 iterations out of 500 -2 * Loglike = 739.391874 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 733.118354 Burning in for 150 iterations out of 500 -2 * Loglike = 716.601797 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.20 S.D. = 3.3336 S.E.M. = 0.047144 ECHO 0 Execution completed -2 * Loglike = 690.128279 Burning in for 150 iterations out of 500 -2 * Loglike = 738.832163 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 734.282242 Burning in for 200 iterations out of 500 -2 * Loglike = 690.713664 Burning in for 200 iterations out of 500 -2 * Loglike = 741.268919 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 733.525437 Burning in for 250 iterations out of 500 -2 * Loglike = 692.642545 Burning in for 250 iterations out of 500 -2 * Loglike = 743.283342 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 734.775168 Burning in for 300 iterations out of 500 -2 * Loglike = 694.718975 Burning in for 300 iterations out of 500 -2 * Loglike = 739.763316 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 735.989926 Burning in for 350 iterations out of 500 -2 * Loglike = 693.232382 Burning in for 350 iterations out of 500 -2 * Loglike = 739.142510 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 742.260475 Burning in for 400 iterations out of 500 -2 * Loglike = 698.823791 Burning in for 400 iterations out of 500 -2 * Loglike = 737.057941 Burning in for 450 iterations out of 500 -2 * Loglike = 692.756559 Burning in for 450 iterations out of 500 -2 * Loglike = 734.182875 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 736.973555 -2 * Loglike = 694.951441 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 = 694.373252 -2 * Loglike = 738.202258 Actual update 100 of 5000, Stored update 100 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 = 738.144836 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 729.413234 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 725.74 S.D. = 4.9366 S.E.M. = 0.069814 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 for 50 iterations out of 500 -2 * Loglike = 694.066450 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 734.306692 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.370138 Burning in for 100 iterations out of 500 -2 * Loglike = 694.119733 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 738.029349 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.673465 Burning in for 150 iterations out of 500 -2 * Loglike = 688.432714 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 736.967357 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 741.069491 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 740.78 S.D. = 2.2352 S.E.M. = 0.031611 ECHO 0 Execution completed -2 * Loglike = 695.451674 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.927355 Burning in for 200 iterations out of 500 -2 * Loglike = 750.060407 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.828330 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.183452 Burning in for 250 iterations out of 500 -2 * Loglike = 733.943235 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.758098 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.215558 Burning in for 300 iterations out of 500 -2 * Loglike = 734.852734 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 687.179934 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.646162 Burning in for 350 iterations out of 500 -2 * Loglike = 734.204112 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 694.152393 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.203408 Burning in for 400 iterations out of 500 -2 * Loglike = 732.731114 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.571603 Burning in for 450 iterations out of 500 -2 * Loglike = 734.908931 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.249490 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.026081 Burning in for 500 iterations out of 500 -2 * Loglike = 732.052787 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 688.003835 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 709.700919 -2 * Loglike = 736.027385 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.564117 Actual update 600 of 5000, Stored update 600 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 = 690.243326 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 730.905159 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 704.945995 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 690.760153 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 736.594190 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 704.898078 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 688.124817 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 733.576496 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.012315 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.238154 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 738.320764 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.460172 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.368312 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 735.845614 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.162189 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.667820 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 740.063307 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.359659 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.465594 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 734.570254 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.207910 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.056077 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 734.427135 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 711.073579 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 697.484723 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.544931 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.686061 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.060203 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 734.163932 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.786457 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.502451 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 734.645220 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.654892 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.800375 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 734.951429 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.936468 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 737.196894 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.025996 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 693.292604 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 734.960933 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.730462 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.151590 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 735.609872 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.199199 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.515537 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 738.260601 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.740532 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.321448 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 733.886180 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.982485 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.184218 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.414356 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 734.749261 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.561182 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.479765 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.325545 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.427530 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 736.524450 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 709.826871 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 693.570246 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 735.554144 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.966994 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 692.956964 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 738.021367 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 706.012094 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 689.389040 Actual update 1800 of 5000, Stored update 1800 of 5000 ECHO 0 -2 * Loglike = 733.466214 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 701.476225 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.492422 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 733.985243 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.741443 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 690.709157 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 735.945781 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.152611 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 690.172366 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 735.408104 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.121337 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.837193 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.528602 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 695.772965 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.789563 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 734.908129 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 690.649972 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.030942 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.662401 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.769276 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 717.931301 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 733.199450 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.494633 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.204529 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 740.319911 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.132232 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.013989 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 736.009506 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.697959 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.545345 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.003972 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 736.737946 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.674284 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.430969 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 733.727890 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.707675 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.734540 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 733.854319 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.631233 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 736.520610 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.899702 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.074942 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 735.129190 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.687724 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.941295 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.356415 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.091379 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.072121 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 740.451784 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 713.320664 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 696.900756 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 735.631087 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.794231 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.900251 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 734.320263 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.082552 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 700.795694 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 734.160514 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.212429 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.275054 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 738.115937 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.536218 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.419211 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 737.178670 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.126354 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 704.532415 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 734.353886 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.710903 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.669103 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 736.904518 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.232906 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.293987 Actual update 2350 of 5000, Stored update 2350 of 5000 /nogui option ignored -2 * Loglike = 734.045616 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.046240 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.854498 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 734.495210 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.657218 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.060117 Actual update 2450 of 5000, Stored update 2450 of 5000 ECHO 0 -2 * Loglike = 735.138134 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.629665 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.622362 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.250769 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 691.061396 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.137808 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 735.916760 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.698216 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.835593 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 736.364734 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.562734 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.454508 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 739.424896 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.606064 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.071174 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 735.301156 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.615311 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.523190 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 733.373095 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.143501 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.000804 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.174651 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.077989 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 = 735.505487 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 695.792357 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.449589 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 736.690728 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 695.200484 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.210740 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 733.730080 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.005214 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.781542 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.184344 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.221904 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.930610 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 733.497941 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.780196 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.324610 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 741.718188 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.193659 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.971133 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 734.094628 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.890861 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.798520 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 734.906160 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 687.849974 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 702.906846 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 740.070286 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.921036 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.532707 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 736.213998 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.198543 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.955375 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 734.181648 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 700.452069 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.196173 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 734.669355 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.710060 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.284341 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 733.889091 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.426029 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.219503 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 736.717054 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.668185 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.438010 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 735.621791 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.159712 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.847329 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 732.237698 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.384856 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.357901 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 737.822460 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 733.464813 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.177229 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.759223 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 739.191412 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 695.656499 Actual update 4300 of 5000, Stored update 4300 of 5000 /nogui option ignored -2 * Loglike = 707.184949 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 737.783212 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.304030 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.345329 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 734.749908 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.020749 Actual update 4400 of 5000, Stored update 4400 of 5000 ECHO 0 -2 * Loglike = 705.773488 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 737.673055 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.313286 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 706.977441 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 738.766071 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.275784 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.450051 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 735.482606 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.530703 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.867268 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 737.350316 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.788716 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 699.664216 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 733.945626 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.994060 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.047554 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 736.383828 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.017697 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.222122 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 732.526343 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 = 690.582013 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.672260 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 739.712486 Actual update 4900 of 5000, Stored update 4900 of 5000 /nogui option ignored -2 * Loglike = 692.127806 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.575892 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 734.969035 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.678044 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.733987 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 735.539596 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.204998 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 697.351329 Actual update 4900 of 5000, Stored update 4900 of 5000 ECHO 0 -2 * Loglike = 706.948764 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 691.399732 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.180129 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.493248 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.649265 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.824425 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 705.288510 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.898025 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 706.614065 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.088775 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.873215 Actual update 4800 of 5000, Stored update 4800 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.203981 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.237603 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.472187 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.163653 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 735.406949 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 735.71 S.D. = 2.3301 S.E.M. = 0.032952 ECHO 0 Execution completed /nogui option ignored ECHO 0 -2 * Loglike = 689.127781 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.15 S.D. = 4.0277 S.E.M. = 0.056960 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 = 697.930981 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.02 S.D. = 4.3531 S.E.M. = 0.061562 ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored 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 for 50 iterations out of 500 -2 * Loglike = 679.430050 Burning in for 100 iterations out of 500 -2 * Loglike = 678.509018 Burning in for 150 iterations out of 500 -2 * Loglike = 687.645822 Burning in for 200 iterations out of 500 -2 * Loglike = 681.138041 Burning in for 250 iterations out of 500 -2 * Loglike = 682.272012 Burning in for 300 iterations out of 500 -2 * Loglike = 679.985096 Burning in for 350 iterations out of 500 -2 * Loglike = 686.726752 Burning in for 400 iterations out of 500 -2 * Loglike = 681.074199 Burning in for 450 iterations out of 500 -2 * Loglike = 680.769738 Burning in for 500 iterations out of 500 -2 * Loglike = 683.027796 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.107551 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.171347 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 688.150698 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.763414 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.735960 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 695.779904 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 676.244250 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.994409 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 677.472743 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 676.703521 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 684.792959 Actual update 600 of 5000, Stored update 600 of 5000 ECHO 0 -2 * Loglike = 676.571686 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.309304 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 675.038262 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 680.999643 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 677.902965 Actual update 850 of 5000, Stored update 850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 680.679977 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.377916 Burning in for 100 iterations out of 500 -2 * Loglike = 682.673860 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.587113 Burning in for 150 iterations out of 500 -2 * Loglike = 687.376321 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.698167 Burning in for 200 iterations out of 500 -2 * Loglike = 677.287556 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.534629 Burning in for 250 iterations out of 500 -2 * Loglike = 681.185421 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.751779 Burning in for 300 iterations out of 500 -2 * Loglike = 681.156684 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 705.920874 Burning in for 350 iterations out of 500 -2 * Loglike = 679.872061 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.330353 Burning in for 400 iterations out of 500 -2 * Loglike = 680.722872 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.998596 Burning in for 450 iterations out of 500 -2 * Loglike = 683.975830 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.688586 Burning in for 500 iterations out of 500 -2 * Loglike = 684.989212 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.894640 -2 * Loglike = 688.058248 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 = 689.519428 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 707.746689 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.860639 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.222984 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.742463 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.824645 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.821370 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 685.809248 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 705.034518 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 687.674999 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.275982 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.177909 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 703.574033 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 691.727367 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.598740 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 677.850643 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.739198 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.322047 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 702.497745 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.625000 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.698996 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.342256 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 679.691021 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.535044 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.308079 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.123125 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 681.371281 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.430253 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 675.285897 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.394898 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 684.420509 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.595526 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.715628 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 691.435277 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.113117 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.130580 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 704.446743 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.391025 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.352120 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 681.939850 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.608410 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 680.382073 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.646484 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 678.832568 Actual update 2450 of 5000, Stored update 2450 of 5000 /nogui option ignored -2 * Loglike = 704.926070 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 679.417289 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.289171 Actual update 1300 of 5000, Stored update 1300 of 5000 ECHO 0 -2 * Loglike = 685.261469 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 707.621262 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 694.246990 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.506832 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.141042 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.194404 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 682.584887 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.014597 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 680.479205 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.531011 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 691.733938 Actual update 2800 of 5000, Stored update 2800 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 704.428004 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.296762 Burning in for 100 iterations out of 500 -2 * Loglike = 689.762436 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.169953 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.449202 Burning in for 150 iterations out of 500 -2 * Loglike = 683.338659 Actual update 2900 of 5000, Stored update 2900 of 5000 /nogui option ignored -2 * Loglike = 704.389237 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 686.621709 Burning in for 200 iterations out of 500 -2 * Loglike = 681.559681 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.811248 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.880794 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.218158 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 678.936358 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 687.396534 Burning in for 250 iterations out of 500 -2 * Loglike = 703.280170 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 696.717610 Burning in for 300 iterations out of 500 -2 * Loglike = 681.509847 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.852159 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 680.908893 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.024896 Burning in for 350 iterations out of 500 -2 * Loglike = 705.827724 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 679.083635 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.178155 Burning in for 400 iterations out of 500 -2 * Loglike = 685.812478 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.454253 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.574053 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.926538 Burning in for 450 iterations out of 500 -2 * Loglike = 705.897159 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 688.319727 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.653271 Burning in for 500 iterations out of 500 -2 * Loglike = 703.380839 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 677.430632 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.667291 -2 * Loglike = 701.818452 Actual update 2150 of 5000, Stored update 2150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 682.683736 Actual update 3450 of 5000, Stored update 3450 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 = 707.160399 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 706.359290 Burning in for 100 iterations out of 500 -2 * Loglike = 680.563275 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.442771 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.435511 Burning in for 150 iterations out of 500 -2 * Loglike = 690.617831 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.416562 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.749221 Burning in for 200 iterations out of 500 -2 * Loglike = 706.604511 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 697.323854 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 675.285858 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.035429 Burning in for 250 iterations out of 500 -2 * Loglike = 703.007101 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 686.342033 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 677.523245 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.683172 Burning in for 300 iterations out of 500 -2 * Loglike = 705.855286 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.559387 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 676.942603 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.028547 Burning in for 350 iterations out of 500 -2 * Loglike = 689.818293 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 706.364010 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.983175 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.598923 Burning in for 400 iterations out of 500 -2 * Loglike = 705.037029 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.002570 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 687.630992 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.884115 Burning in for 450 iterations out of 500 /nogui option ignored -2 * Loglike = 686.111542 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 704.404046 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 688.792987 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.759497 Burning in for 500 iterations out of 500 -2 * Loglike = 691.632517 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.161324 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 694.367539 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 690.564491 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.278764 ECHO 0 -2 * Loglike = 705.674230 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 690.186169 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.846937 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 = 704.885092 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 685.132362 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.946345 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 702.092734 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.732202 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 688.295487 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 683.898004 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.296431 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 711.084803 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.285425 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.811990 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 702.729779 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 675.562929 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 686.316209 Actual update 750 of 5000, Stored update 750 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 Burning in for 50 iterations out of 500 -2 * Loglike = 704.631680 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 684.259772 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.540701 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 707.290729 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.891620 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 677.634281 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.777597 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 704.097454 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 693.652877 Burning in for 150 iterations out of 500 -2 * Loglike = 676.532341 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 693.230542 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.050233 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.276266 Burning in for 200 iterations out of 500 -2 * Loglike = 692.480821 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.810315 Actual update 950 of 5000, Stored update 950 of 5000 ECHO 0 -2 * Loglike = 694.094618 Burning in for 250 iterations out of 500 -2 * Loglike = 699.591668 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 686.410548 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.903466 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.251031 Burning in for 300 iterations out of 500 -2 * Loglike = 707.482387 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.667955 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 703.979854 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 685.026186 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 696.644190 Burning in for 350 iterations out of 500 -2 * Loglike = 694.170913 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.228758 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.720207 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.021995 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.587129 Burning in for 400 iterations out of 500 -2 * Loglike = 684.125515 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.538995 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.770686 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 705.564493 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.973007 Burning in for 450 iterations out of 500 -2 * Loglike = 678.061423 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.996372 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 692.502149 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 for 50 iterations out of 500 -2 * Loglike = 709.054578 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.053986 Burning in for 500 iterations out of 500 -2 * Loglike = 690.991588 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.474938 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 712.829881 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 695.551253 Burning in for 100 iterations out of 500 -2 * Loglike = 707.084550 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 697.755635 -2 * Loglike = 695.915399 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.322953 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.819060 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.435015 Burning in for 150 iterations out of 500 -2 * Loglike = 704.645422 Actual update 3400 of 5000, Stored update 3400 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.908225 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.448326 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.005079 Burning in for 200 iterations out of 500 -2 * Loglike = 681.522377 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 705.732892 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.961791 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.566959 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.704336 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.778726 Burning in for 250 iterations out of 500 -2 * Loglike = 703.783367 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.129146 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.621600 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.607669 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 700.906513 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.904768 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 689.306784 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.019294 Burning in for 300 iterations out of 500 -2 * Loglike = 691.889689 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 675.046035 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.868870 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.898772 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 691.484081 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.203869 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.926471 Burning in for 350 iterations out of 500 -2 * Loglike = 683.061273 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.142161 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.078442 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.730295 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.033471 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.466364 Burning in for 400 iterations out of 500 -2 * Loglike = 709.811389 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.727352 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.901038 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 703.496082 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 699.165506 Burning in for 450 iterations out of 500 -2 * Loglike = 709.552465 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.300954 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 692.001240 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.515335 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.890752 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.387614 Burning in for 500 iterations out of 500 -2 * Loglike = 690.976878 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.961926 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 687.282907 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 702.980207 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.832259 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 699.389135 -2 * Loglike = 699.199399 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.808917 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.054834 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.209531 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 704.900517 Actual update 3850 of 5000, Stored update 3850 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 694.462544 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.000421 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.016780 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.443710 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.062288 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.443895 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 706.281582 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 689.661098 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.931216 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.391353 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.786897 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.591649 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 700.729325 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.697363 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 706.507443 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 693.115601 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.003633 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.617148 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.073527 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.829672 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.937883 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 705.949500 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.371917 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.767992 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.599238 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.882829 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.502891 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.929480 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.553157 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.688335 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.652175 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.254505 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.332523 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.031452 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.485026 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 692.692529 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.328914 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.169403 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.895874 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 693.970848 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.628694 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.968001 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.511359 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 707.469102 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.181349 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 692.865471 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.910396 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.363214 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.448075 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.788072 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 691.616223 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.742731 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.804858 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.315829 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.193468 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.154507 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.022666 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.545888 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 676.744795 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.39 S.D. = 4.9746 S.E.M. = 0.070351 ECHO 0 Execution completed -2 * Loglike = 698.053233 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.634189 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 717.353703 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 687.662618 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.825625 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 695.193241 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 695.550510 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 707.513033 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.458057 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.594584 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.552999 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.513305 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 714.695071 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.961926 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.325752 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.205023 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.132914 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.907059 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.936057 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.189813 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.335850 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.804121 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.506882 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.518833 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.133515 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.991477 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.445693 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 701.074094 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.658543 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 704.119184 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.749417 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.973620 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.684784 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.207989 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.634850 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.470124 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.033716 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 704.011723 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.721595 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.169131 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.674453 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 689.223557 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.867495 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.865070 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.431172 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.591432 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 695.931944 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.546752 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.505447 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 704.548997 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.799045 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.234798 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.022152 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.131574 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.181940 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.658097 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.676187 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.576833 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.870240 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.758346 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.702117 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.825892 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.938387 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.079533 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 690.957200 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.061790 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 695.280877 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.016247 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.789528 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.372252 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.609143 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.625472 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.029905 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.506148 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.838735 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.580175 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 695.006981 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.245262 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.833232 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.308638 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 701.063650 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.434101 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.490824 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.639437 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.432390 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.814353 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.582924 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.973626 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 694.334323 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.049681 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 695.304825 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.848593 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 690.742084 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.579298 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.731164 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 696.611485 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.297137 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 723.400510 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.416710 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 696.431773 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 688.152995 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.496760 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.653254 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.856874 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 686.869434 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.690628 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.286063 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.612650 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 687.317005 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.473301 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 695.730168 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 696.271456 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.345717 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.583573 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.783101 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.859645 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 688.071655 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.883712 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.137484 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.410952 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.889171 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.591438 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.41 S.D. = 2.3037 S.E.M. = 0.032579 ECHO 0 Execution completed -2 * Loglike = 702.388323 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.796369 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.808069 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.144967 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.162253 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.355772 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.596162 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.927528 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.647195 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 695.780636 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.596741 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 697.513587 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.573863 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.103410 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.772224 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 686.341219 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.630075 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.319707 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.911683 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.342234 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.503858 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.815954 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.970768 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 696.445970 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.238894 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.560557 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.359868 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.613872 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.241953 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.674784 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.588446 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.348805 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.222587 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.450228 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.024963 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.512415 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.854921 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.891348 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.621729 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.545621 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.628788 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 696.552812 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.802619 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.948475 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.316233 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.077027 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.914339 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.810777 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.117562 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.332896 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.440529 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 696.028390 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.966311 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.418412 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.540503 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.358745 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.313022 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.795042 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.003679 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 700.543814 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.225729 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 697.995521 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.450213 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.081042 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 691.053749 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.782674 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.786075 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.244946 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.118078 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 705.743081 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 697.125425 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.371159 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.984760 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.751929 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.380423 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.698731 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 723.682544 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.122428 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.853316 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.786416 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.605619 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 698.235070 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 717.470975 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.372231 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.128754 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.619499 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.066362 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.000301 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.646815 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.707300 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.534288 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.920799 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.099738 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 712.511178 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.248497 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.830201 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.091694 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.328259 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.025616 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.171666 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.106874 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 702.305614 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 711.438703 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.593071 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.962971 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 714.553616 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.405387 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.716720 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.008846 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.447517 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.048223 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.786448 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.164573 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.780245 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.140441 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.196789 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.738514 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 700.641300 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.287183 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.080822 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.870406 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 696.900422 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 718.915129 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.101551 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 704.638474 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.942089 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.093853 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.242979 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 705.370363 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 702.710046 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.794874 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.720017 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 696.594778 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.708790 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.410246 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.072925 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.347170 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.190927 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.288897 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.377139 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.873225 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.707009 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.657257 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.115522 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.942790 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 700.108161 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.938347 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.359571 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.793468 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 718.807864 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 696.561972 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.204912 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 706.725844 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.498369 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.980913 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 705.436679 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.611370 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.517146 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.229889 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 696.015419 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.259371 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.176539 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.675494 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.00 S.D. = 4.2776 S.E.M. = 0.060494 ECHO 0 Execution completed -2 * Loglike = 702.914425 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.075890 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.104661 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.904706 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.828363 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.827826 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.935929 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.114573 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.027206 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.373814 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.581369 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.770488 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.295837 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 706.332717 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.143464 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.157689 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.295455 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 708.77 S.D. = 5.6619 S.E.M. = 0.080072 ECHO 0 Execution completed -2 * Loglike = 692.891400 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 697.83 S.D. = 3.9966 S.E.M. = 0.056520 ECHO 0 Execution completed -2 * Loglike = 694.567681 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.18 S.D. = 4.1285 S.E.M. = 0.058386 ECHO 0 Execution completed > > for(i in 1:ns){ + if (Actual[1] > r[[i]]$quantiles[1,1] & Actual[1] < r[[i]]$quantiles[1,2]) { + CounterMCMC[1] <- CounterMCMC[1] + 1 + } + if (Actual[2] > r[[i]]$quantiles[2,1] & Actual[2] < r[[i]]$quantiles[2,2]) { + CounterMCMC[2] <- CounterMCMC[2] + 1 + } + if (Actual[3] > r[[i]]$quantiles[3,1] & Actual[3] < r[[i]]$quantiles[3,2]) { + CounterMCMC[3] <- CounterMCMC[3] + 1 + } + MCMC_array[, , i] <- r[[i]]$MCMCarray + MCMC_median[i, ] <- r[[i]]$MCMCmed + IGLS_array[, , i] <- r[[i]]$IGLSarray + } > > aa <- sapply(1:ns, function(x) na.omit(stack(as.data.frame(IGLS_array[, , x])))$values) > counterIGLS <- rep(0, 3) > for (i in 1:ns) { + if (Actual[1] > aa[1, i] - 1.96 * sqrt(aa[4, i]) && Actual[1] < aa[1, i] + 1.96 * sqrt(aa[4, i])) + { + counterIGLS[1] <- counterIGLS[1] + 1 + } + if (Actual[2] > aa[2, i] - 1.96 * sqrt(aa[5, i]) && Actual[2] < aa[2, i] + 1.96 * sqrt(aa[5, i])) + { + counterIGLS[2] <- counterIGLS[2] + 1 + } + if (Actual[3] > aa[3, i] - 1.96 * sqrt(aa[6, i]) && Actual[3] < aa[3, i] + 1.96 * sqrt(aa[6, i])) + { + counterIGLS[3] <- counterIGLS[3] + 1 + } + } > Percent_interval_coverage <- (counterIGLS/ns) * 100 > Mean_across_simus <- round(c(mean(aa[1, ]), mean(aa[2, ]), mean(aa[3, ])), 2) > Percent_bias <- round(-100 * (1 - Mean_across_simus/Actual), 2) > IGLS_results <- cbind(Mean_across_simus, Actual, Percent_bias, Percent_interval_coverage) > rownames(IGLS_results) <- c("beta0", "sigma2_u", "sigma2_e") > Percent_interval_coverage <- (CounterMCMC/ns) * 100 > bb <- sapply(1:ns, function(x) na.omit(stack(as.data.frame(MCMC_array[, , x])))$values) > Mean_across_simus <- round(c(mean(bb[1, ]), mean(bb[2, ]), mean(bb[3, ])), 2) > Percent_bias <- round(-100 * (1 - Mean_across_simus/Actual), 2) > MCMC_results <- cbind(Mean_across_simus, Actual, Percent_bias, Percent_interval_coverage) > rownames(MCMC_results) <- c("beta0", "sigma2_u", "sigma2_e") > > # 8.5 Analysing the simulation results . . . . . . . . . . . . . . . . . 109 > > cat("Simulation results using IGLS\n") Simulation results using IGLS > IGLS_results Mean_across_simus Actual Percent_bias Percent_interval_coverage beta0 29.97 30 -0.1 84 sigma2_u 8.26 10 -17.4 72 sigma2_e 40.16 40 0.4 92 > cat("Simulation results using MCMC\n") Simulation results using MCMC > MCMC_results Mean_across_simus Actual Percent_bias Percent_interval_coverage beta0 29.92 30 -0.27 88 sigma2_u 15.18 10 51.80 87 sigma2_e 41.54 40 3.85 90 > > # 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.18 10 1.80 87 sigma2_e 40.95 40 2.38 90 > > # Chapter learning outcomes . . . . . . . . . . . . . . . . . . . . . . . 96 > > > > > > ############################################################################ > > proc.time() user system elapsed 3.26 0.28 18.84