R version 4.3.2 (2023-10-31 ucrt) -- "Eye Holes" Copyright (C) 2023 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-2024 Zhengzheng Zhang, Christopher M. J. Charlton, Richard M. A. Parker, William J. Browne and George Leckie Support provided by the Economic and Social Research Council (ESRC) (Grants RES-149-25-1084, RES-576-25-0032 and ES/K007246/1) To cite R2MLwiN in publications use: Zhengzheng Zhang, Richard M. A. Parker, Christopher M. J. Charlton, George Leckie, William J. Browne (2016). R2MLwiN: A Package to Run MLwiN from within R. Journal of Statistical Software, 72(10), 1-43. doi:10.18637/jss.v072.i10 A BibTeX entry for LaTeX users is @Article{, title = {{R2MLwiN}: A Package to Run {MLwiN} from within {R}}, author = {Zhengzheng Zhang and Richard M. A. Parker and Christopher M. J. Charlton and George Leckie and William J. Browne}, journal = {Journal of Statistical Software}, year = {2016}, volume = {72}, number = {10}, pages = {1--43}, doi = {10.18637/jss.v072.i10}, } The MLwiN_path option is currently set to C:/Program Files/MLwiN v3.09/ 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 /nogui option ignored ECHO 0 ECHO 0 /nogui option ignored /nogui option ignored ECHO 0 /nogui option ignored /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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 ECHO 0 ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode 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 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 701.823509 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 704.151377 Burning in for 150 iterations out of 500 -2 * Loglike = 706.899346 Burning in for 200 iterations out of 500 -2 * Loglike = 702.767767 Burning in for 250 iterations out of 500 -2 * Loglike = 708.949003 Burning in for 300 iterations out of 500 -2 * Loglike = 710.218651 Burning in for 350 iterations out of 500 -2 * Loglike = 713.234187 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 703.478849 Burning in for 450 iterations out of 500 -2 * Loglike = 703.865467 Burning in for 500 iterations out of 500 -2 * Loglike = 701.720744 ECHO 0 /nogui option ignored ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 709.192196 Actual update 100 of 5000, Stored update 100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 711.943153 Actual update 150 of 5000, Stored update 150 of 5000 /nogui option ignored -2 * Loglike = 703.435073 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 700.241202 Burning in for 150 iterations out of 500 -2 * Loglike = 707.219850 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.252133 Burning in for 200 iterations out of 500 -2 * Loglike = 711.636432 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.880691 Burning in for 250 iterations out of 500 -2 * Loglike = 706.575400 Burning in for 300 iterations out of 500 -2 * Loglike = 707.902035 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 703.239173 Burning in for 350 iterations out of 500 -2 * Loglike = 716.827999 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.741807 Burning in for 400 iterations out of 500 /nogui option ignored ECHO 0 -2 * Loglike = 704.293432 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 707.489339 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.867271 Burning in for 450 iterations out of 500 -2 * Loglike = 700.150270 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.686965 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... /nogui option ignored -2 * Loglike = 703.138929 Burning in for 50 iterations out of 500 -2 * Loglike = 703.557815 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 711.819756 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... Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 712.059820 Burning in for 150 iterations out of 500 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 = 708.342273 Actual update 600 of 5000, Stored update 600 of 5000 Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 712.776856 Burning in for 200 iterations out of 500 -2 * Loglike = 702.886885 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.278100 Burning in for 100 iterations out of 500 -2 * Loglike = 700.470140 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.930847 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 718.422626 Burning in for 250 iterations out of 500 -2 * Loglike = 710.004425 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 687.270245 Burning in for 150 iterations out of 500 -2 * Loglike = 679.693421 Burning in for 150 iterations out of 500 -2 * Loglike = 705.745108 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.504297 Burning in for 300 iterations out of 500 -2 * Loglike = 698.442260 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.177839 Burning in for 200 iterations out of 500 -2 * Loglike = 682.308313 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 698.160257 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.318265 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 709.312397 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 683.501131 Burning in for 250 iterations out of 500 -2 * Loglike = 688.497969 Burning in for 250 iterations out of 500 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 710.398138 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.775541 Burning in for 400 iterations out of 500 -2 * Loglike = 701.347840 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 686.278306 Burning in for 300 iterations out of 500 -2 * Loglike = 700.407731 Burning in for 100 iterations out of 500 -2 * Loglike = 693.006375 Burning in for 300 iterations out of 500 -2 * Loglike = 701.835901 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 716.496440 Burning in for 450 iterations out of 500 -2 * Loglike = 690.686120 Burning in for 350 iterations out of 500 -2 * Loglike = 715.630870 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.547196 Burning in for 150 iterations out of 500 -2 * Loglike = 689.137113 Burning in for 350 iterations out of 500 -2 * Loglike = 707.150743 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 715.848145 Burning in for 500 iterations out of 500 -2 * Loglike = 691.901768 Burning in for 400 iterations out of 500 -2 * Loglike = 697.879715 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.786854 Burning in for 200 iterations out of 500 -2 * Loglike = 695.296124 Burning in for 400 iterations out of 500 -2 * Loglike = 702.194637 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 713.551786 -2 * Loglike = 684.630929 Burning in for 450 iterations out of 500 -2 * Loglike = 705.744978 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.236764 Burning in for 250 iterations out of 500 -2 * Loglike = 693.270682 Burning in for 450 iterations out of 500 -2 * Loglike = 711.603339 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 = 686.191765 Burning in for 500 iterations out of 500 -2 * Loglike = 700.533999 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 705.746922 Burning in for 300 iterations out of 500 -2 * Loglike = 689.186249 Burning in for 500 iterations out of 500 -2 * Loglike = 708.135471 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.312419 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 698.096340 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 682.945709 ECHO 0 -2 * Loglike = 702.680951 Burning in for 350 iterations out of 500 -2 * Loglike = 706.305837 Burning in for 400 iterations out of 500 -2 * Loglike = 691.492569 -2 * Loglike = 702.085029 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 718.197655 Actual update 150 of 5000, Stored update 150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 708.176910 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.898167 Burning in for 450 iterations out of 500 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 ERAS G30 LINK 0 G30 ERAS 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.127166 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.591515 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.789081 Burning in for 500 iterations out of 500 -2 * Loglike = 703.215635 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 677.596255 Burning in for 100 iterations out of 500 -2 * Loglike = 689.349730 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 688.617685 Actual update 100 of 5000, Stored update 100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 702.524088 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.247071 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.343811 -2 * Loglike = 674.720447 Burning in for 150 iterations out of 500 -2 * Loglike = 704.922362 Actual update 1200 of 5000, Stored update 1200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 691.405362 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 697.062657 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.491658 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.686722 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 675.568578 Burning in for 200 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 704.781093 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 = 729.650155 Burning in for 100 iterations out of 500 -2 * Loglike = 687.379565 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 685.613245 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.129370 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 676.530664 Burning in for 250 iterations out of 500 -2 * Loglike = 673.938056 Burning in for 100 iterations out of 500 -2 * Loglike = 701.786770 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 722.247421 Burning in for 150 iterations out of 500 -2 * Loglike = 699.550117 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.066379 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.152396 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.030374 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 680.426600 Burning in for 300 iterations out of 500 -2 * Loglike = 670.118572 Burning in for 150 iterations out of 500 -2 * Loglike = 706.555191 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.194093 Burning in for 200 iterations out of 500 -2 * Loglike = 705.245868 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.729501 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.297181 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 687.946817 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 727.748916 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 669.852324 Burning in for 200 iterations out of 500 -2 * Loglike = 677.556201 Burning in for 350 iterations out of 500 -2 * Loglike = 698.812553 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 728.223560 Burning in for 250 iterations out of 500 -2 * Loglike = 706.754997 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.238326 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.707591 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 695.328524 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 670.892682 Burning in for 250 iterations out of 500 -2 * Loglike = 708.961256 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 683.763960 Burning in for 400 iterations out of 500 -2 * Loglike = 715.238926 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 721.866837 Burning in for 300 iterations out of 500 -2 * Loglike = 708.605391 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 686.404521 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.570972 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.581790 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 675.508690 Burning in for 300 iterations out of 500 -2 * Loglike = 721.072414 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 679.577629 Burning in for 450 iterations out of 500 -2 * Loglike = 697.938693 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.597997 Burning in for 350 iterations out of 500 -2 * Loglike = 710.969894 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 688.346389 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 729.942072 Burning in for 400 iterations out of 500 -2 * Loglike = 672.952634 Burning in for 350 iterations out of 500 -2 * Loglike = 719.785482 Actual update 1050 of 5000, Stored update 1050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 709.714770 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.306414 Burning in for 500 iterations out of 500 -2 * Loglike = 713.046772 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.330052 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.399895 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 687.409272 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 725.396197 Burning in for 450 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 703.885634 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 677.386832 Burning in for 400 iterations out of 500 -2 * Loglike = 709.937753 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 681.806832 -2 * Loglike = 695.103353 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.712973 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.784767 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 679.600844 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.161595 Burning in for 500 iterations out of 500 -2 * Loglike = 681.822084 Burning in for 100 iterations out of 500 -2 * Loglike = 701.875862 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.005287 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 674.320041 Burning in for 450 iterations out of 500 -2 * Loglike = 706.410899 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 = 685.739601 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.463099 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 687.541754 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.666911 -2 * Loglike = 672.444427 Burning in for 150 iterations out of 500 -2 * Loglike = 703.991431 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.426719 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 673.973002 Burning in for 500 iterations out of 500 -2 * Loglike = 699.166140 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 678.571812 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.660220 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.188937 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 682.533785 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 679.691298 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 = 706.162618 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.936065 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 673.842611 -2 * Loglike = 696.498561 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 680.315796 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 688.430017 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.611174 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.031890 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 682.546412 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 728.957929 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.925783 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 709.754035 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 675.314204 Burning in for 250 iterations out of 500 -2 * Loglike = 673.225476 Actual update 200 of 5000, Stored update 200 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 696.094673 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 698.541833 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.024676 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 678.381107 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 724.622208 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.237778 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 717.582709 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 675.841663 Burning in for 300 iterations out of 500 -2 * Loglike = 673.339472 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 684.903957 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 677.650210 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 702.613786 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 698.405743 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 690.679140 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.502095 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.046725 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.727854 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 683.510623 Burning in for 350 iterations out of 500 -2 * Loglike = 677.280411 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 691.988500 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.851445 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.522920 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 676.215968 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 685.918925 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 735.477379 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 719.346315 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 714.968816 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 680.215606 Burning in for 400 iterations out of 500 -2 * Loglike = 668.421654 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.713587 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.409627 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.415440 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.630240 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.870620 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 735.757202 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 718.895143 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.576804 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 677.071020 Burning in for 450 iterations out of 500 -2 * Loglike = 679.333289 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.634465 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.929120 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 698.063241 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 672.057747 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.140899 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 738.584083 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.128547 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.552479 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.079643 Burning in for 500 iterations out of 500 -2 * Loglike = 671.267253 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 689.169504 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.798327 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.886527 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 687.526973 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 692.880658 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 731.419638 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 677.379673 -2 * Loglike = 713.727381 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 685.532773 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 702.327756 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 701.261969 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 699.836048 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 675.859501 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.190754 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 733.286529 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.508447 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.644527 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.429427 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.116196 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 691.769652 Actual update 1050 of 5000, Stored update 1050 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 673.941360 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.469001 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.085617 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.820414 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 667.662917 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 714.539393 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.667693 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.075249 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 680.688189 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 674.103711 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.385256 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 684.385405 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 703.136648 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 678.366208 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.862259 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 708.231351 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 714.516252 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 690.516850 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 720.257804 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 674.773579 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 703.856306 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 681.649129 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.498649 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 670.601342 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 685.165297 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.323657 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 717.543704 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 727.404847 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 677.868671 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.356634 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.143127 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.076725 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.864223 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 668.042487 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.417602 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.882568 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 724.250742 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.291987 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 672.344194 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.128463 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.008781 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.709002 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.462841 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.788209 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 671.385406 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 716.169474 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 723.224500 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 681.259586 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 679.734242 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 702.041109 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.286710 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 688.092088 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.462749 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.532312 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.511856 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 671.633453 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 720.418947 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.564529 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.773183 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 675.530143 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 680.090992 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 691.000242 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.964485 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.284920 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.284878 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 672.839060 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 735.095958 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 687.379775 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.192086 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 677.822354 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 682.521596 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.765808 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.577047 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 668.314841 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.738099 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 715.055369 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 721.353229 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.535907 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 716.320408 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 677.720263 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 681.663922 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 700.241684 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 708.126778 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 679.673251 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 714.238259 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.666581 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 670.405402 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.144686 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.551320 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 682.853192 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 672.428015 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.925707 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.526470 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.483039 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 728.495144 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.742521 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 674.539999 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 687.654457 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 718.545059 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 680.936404 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 677.620577 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 702.950501 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 687.489926 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 706.332725 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 724.234646 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 716.076661 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 668.902121 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 688.173043 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 719.399042 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 679.325957 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 703.336406 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 674.542718 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 687.314579 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.693318 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 732.566878 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.536039 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.999464 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 691.040889 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 697.120140 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 677.024453 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.269335 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 675.451468 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 694.332045 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 711.522248 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 733.104842 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 716.543810 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 678.523399 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 685.193809 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 703.704622 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 678.421550 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 704.337172 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 671.342410 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 706.753843 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.446646 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 727.235696 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.691057 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 673.931728 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 690.452145 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 696.471477 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 678.290083 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.148608 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 684.729638 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.857055 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 691.664682 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 724.833512 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.527865 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 671.960596 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 680.366137 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 702.175931 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 675.333397 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 717.927766 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 674.445550 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.783446 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.709528 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 724.392127 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 673.957750 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 712.065256 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.794125 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 695.204430 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 679.852881 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 703.850533 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 686.730692 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.700725 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 685.526810 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 726.403127 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 675.395761 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.135179 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.520286 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 698.509626 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 678.109082 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 673.169888 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 702.486928 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.662221 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.886012 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 735.135760 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 672.414464 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 722.207090 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 681.958442 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.936513 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.200720 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.890817 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.708324 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.210647 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.653605 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 731.943568 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 677.559504 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 718.904538 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.378056 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.801981 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 677.884946 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 682.603728 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.662796 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.100651 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 697.931317 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 733.038252 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 673.875763 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.242463 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 688.805127 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.904816 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 674.208759 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 677.358561 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.388519 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.434883 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 692.569822 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 733.627611 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 679.116723 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 725.020933 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 687.358278 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.842599 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 676.982710 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 674.893301 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.462008 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 700.081180 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 687.648234 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 733.954042 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 672.424291 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.432387 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 685.151426 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 674.983574 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 676.721377 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.053962 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.698176 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.820907 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 732.692857 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.991621 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.405085 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 681.621367 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 671.884310 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 677.107076 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 684.303730 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 707.297696 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.775517 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 693.764968 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 733.243985 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.138829 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.594719 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 680.892318 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 676.436675 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 680.405263 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 705.810049 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 680.706228 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 714.089743 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.816628 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 734.606917 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.229413 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.662206 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 690.494914 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 672.900547 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 682.310366 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.973659 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 677.086675 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.405524 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.650414 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 732.442528 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.824799 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 687.310836 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 686.895355 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 675.979752 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 695.047780 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.613420 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 672.949576 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.428475 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.139613 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 736.507850 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 682.534542 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 700.414777 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.904521 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 669.633266 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.721531 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.163746 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.474053 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 672.040620 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 704.825963 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 726.318100 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 682.928178 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.275377 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 668.183306 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.925286 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 687.684745 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.080994 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 675.715176 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.828855 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 707.842881 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 722.051977 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 680.021742 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.585554 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.684642 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 671.144186 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 684.729634 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 702.518934 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 676.451447 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.957463 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 701.301290 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.596086 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 681.780483 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 696.726253 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 697.127074 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 671.040236 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.260181 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.072158 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 687.468037 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 719.527706 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.954569 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 729.949575 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 682.918724 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.573910 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 699.299886 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 679.960000 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 690.226440 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 678.153238 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.780888 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.464250 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.498083 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.438738 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 685.626954 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 691.699838 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 727.198299 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 678.074229 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 684.013516 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.797253 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 674.949523 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.804498 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.542607 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.811923 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 680.750023 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.042051 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 722.804266 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 674.181105 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 682.464748 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.315384 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 714.880964 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 677.541195 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.561612 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.256684 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 684.182154 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.432464 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 726.686697 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 672.339473 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.467550 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.926365 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 678.959855 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 713.522418 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 673.826317 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.176523 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 689.373598 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 672.478756 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.927834 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 726.900963 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.125224 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 679.106863 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 725.447913 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 710.114988 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 680.657744 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.671373 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.216099 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 678.516183 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 723.223887 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.725106 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 704.064390 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 671.655617 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.758435 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.422515 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 700.083991 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 672.976682 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 684.344691 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 714.511301 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 735.026851 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 704.711374 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.396688 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 674.163080 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 675.016524 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.568084 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 689.440273 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 673.842876 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.843580 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.285492 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 729.487776 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.168961 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 704.676356 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 672.397473 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.197765 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.930763 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.171109 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 677.019100 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 687.162379 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.174950 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 728.964193 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.092223 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.818264 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.712235 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 675.604717 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 711.305074 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.710521 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 679.870507 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.477187 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 714.394171 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 729.944743 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.330076 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.336464 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 673.644659 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 675.448777 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.147738 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 692.075385 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 676.640043 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 680.813476 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.970103 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 724.170108 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.717481 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.685225 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 682.244368 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 672.654590 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.651884 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 679.616534 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 673.238256 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 699.903382 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.528823 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 730.931413 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 683.265726 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.937939 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.793463 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 679.729008 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.674679 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 674.739208 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 675.877436 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.965950 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.870317 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 738.518229 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.356138 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 698.789229 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 688.324981 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 680.519599 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 712.634825 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 678.180589 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 673.709853 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.088895 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.284589 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 730.899904 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.093440 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.466539 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 689.540106 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 717.818122 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 679.990092 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 676.823615 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 684.563532 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.450638 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 708.394266 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 724.856250 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 692.544351 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.708490 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.178597 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 726.240537 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 673.547583 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.278206 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 678.728712 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 708.809177 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.064252 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 725.986502 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 683.641167 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.486232 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.750905 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.920183 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 672.655931 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 680.627153 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.818352 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.486087 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.380425 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 728.893401 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 684.024855 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.190926 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.184277 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.607723 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 677.188734 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 677.289514 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 683.643803 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 711.268294 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.888319 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 680.404934 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.972849 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 713.816166 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 688.088071 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.858518 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 674.339857 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 679.798066 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 735.129341 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.959248 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.330161 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 681.497800 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 686.150006 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 698.412760 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.599137 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.917879 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 673.431637 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 675.785295 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.008916 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.676297 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.287522 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.121613 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 688.286360 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.506370 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 688.116379 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.185813 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 676.052096 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 678.600810 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.269570 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.248897 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.416715 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 682.126001 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.781848 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.191881 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.986826 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 676.416775 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 676.511725 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 729.863068 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 706.688182 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.887135 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 674.538460 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.748785 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.412683 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 712.714919 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.203665 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 675.969291 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 676.314057 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 725.166519 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.779162 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.516127 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 674.653193 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 696.420377 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 686.479566 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 720.578844 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 683.668274 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 671.817027 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 677.017640 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.625735 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.092890 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.450112 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.768911 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.491602 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.734500 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.589756 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 696.432811 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 670.646569 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 678.649242 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 721.907026 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 706.489693 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.905740 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 675.344136 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.587113 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 695.191069 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 716.609315 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 679.397774 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 682.226928 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 726.505104 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 683.204108 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.247207 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 677.824440 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 734.396183 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 687.702670 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 720.958596 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.365556 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 674.983207 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 687.685132 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.386465 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.207237 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 677.867797 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 728.303953 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.682039 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.355520 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 728.792777 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 673.785553 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 675.238537 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.450255 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.413554 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 731.042309 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.475470 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.611166 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 695.203211 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 718.087533 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 677.548365 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.409922 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.097255 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.455758 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 721.842250 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 677.932014 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 682.133290 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.284759 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.329496 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 681.209244 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.896935 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 693.977580 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.140900 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 727.309376 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 677.533644 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.623623 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 673.889681 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 680.874411 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.751855 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 714.010766 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 690.232723 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.345535 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 679.922665 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 670.984927 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 730.679282 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 721.578171 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 676.626287 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 683.576660 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.825803 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.374679 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.316761 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 673.042605 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 727.302236 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 674.314470 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.062330 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 678.169209 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.506338 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.173768 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.705791 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.208739 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.702174 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 673.724780 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.725330 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 672.615417 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 681.852963 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.741794 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 674.638640 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 698.705229 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.174061 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.541092 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 674.755834 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.477385 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 709.026989 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 681.084847 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 669.638193 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 684.556607 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.328001 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 728.710939 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 686.546114 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.299451 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 715.529614 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.838175 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 706.421375 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 669.511867 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.181412 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.545525 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 731.612011 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.363754 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 674.795279 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.811145 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 675.163667 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.134361 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.00 S.D. = 3.8149 S.E.M. = 0.053951 ECHO 0 Execution completed -2 * Loglike = 700.850295 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 670.197680 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.067871 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.483352 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 726.882586 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.720445 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 682.372670 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 724.811235 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 680.630137 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.374702 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 680.043316 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 688.563122 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.454220 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.332387 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 731.944991 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.774107 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.905982 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 678.898670 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 667.775326 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.766920 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.287092 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.425346 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 738.568156 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 680.625138 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 715.630370 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 677.036621 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 677.443522 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.031708 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 691.636861 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.408338 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 735.136314 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 682.131773 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 719.092867 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 681.882988 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 675.538940 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.443205 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 696.613656 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.125358 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 727.462041 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 675.019949 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 713.734829 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 684.328019 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 678.466813 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.666329 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 689.356638 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.385485 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.693749 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 677.222480 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 677.309154 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 717.193208 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.590779 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 681.936142 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 682.933326 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 706.455892 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 723.221532 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 685.834542 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 668.691271 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 711.054511 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 694.542631 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 690.360086 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 688.390940 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.806115 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 675.653525 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 673.591878 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.362846 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 686.981653 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 671.317593 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 688.213026 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 700.732203 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 690.267792 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 681.266458 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 718.833253 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 677.633957 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 673.732703 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 681.322282 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 727.629304 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 701.081418 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 693.402087 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.299965 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 671.919410 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.360718 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 685.544531 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 734.384328 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.307286 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.812760 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 684.320917 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.643656 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 670.323687 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 716.913863 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 726.315969 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.806653 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.83 S.D. = 5.3079 S.E.M. = 0.075065 ECHO 0 Execution completed -2 * Loglike = 676.975748 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 687.091984 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.494412 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 676.337629 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 691.273291 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.483348 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.856254 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 676.347351 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.212833 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.060523 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 735.810400 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 672.531337 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 692.171506 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.268539 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 675.103067 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.303326 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 678.524889 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 733.629271 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 676.767530 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 699.725208 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 682.694444 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 676.351612 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 730.458630 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 677.949373 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.584855 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 681.693944 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 686.107718 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 733.882561 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 679.171196 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 681.540418 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.637523 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 723.312873 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 676.280188 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 673.890170 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 726.687043 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 682.778954 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 685.157319 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 674.990395 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 676.409860 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 735.272864 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 676.774065 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 677.474786 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 683.590634 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 674.954585 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.457412 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 727.016737 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 680.484152 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 672.691043 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 678.273136 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 734.660567 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 681.327410 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 682.372078 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 682.992598 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 723.119800 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 671.494453 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 680.717723 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.633233 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 672.605564 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 679.329364 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 678.106095 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 726.471368 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 675.297895 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 675.956284 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 730.904428 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.240517 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 716.07 S.D. = 4.3059 S.E.M. = 0.060895 ECHO 0 Execution completed -2 * Loglike = 673.260211 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 671.633734 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 726.995546 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 686.114384 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.16 S.D. = 4.1409 S.E.M. = 0.058561 ECHO 0 Execution completed -2 * Loglike = 685.797643 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 673.774634 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 732.307941 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 689.384392 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.15 S.D. = 3.7199 S.E.M. = 0.052607 ECHO 0 Execution completed -2 * Loglike = 683.319666 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 674.195199 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 678.278776 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.875648 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.63 S.D. = 5.9059 S.E.M. = 0.083522 ECHO 0 Execution completed -2 * Loglike = 676.437963 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 679.790970 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 673.098233 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 678.60 S.D. = 4.0837 S.E.M. = 0.057752 ECHO 0 Execution completed -2 * Loglike = 679.656739 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 669.469368 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 674.71 S.D. = 4.2624 S.E.M. = 0.060280 ECHO 0 Execution completed -2 * Loglike = 722.156345 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 729.17 S.D. = 4.8509 S.E.M. = 0.068603 ECHO 0 Execution completed -2 * Loglike = 683.460395 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 679.89 S.D. = 4.1939 S.E.M. = 0.059311 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 ECHO 0 ECHO 0 /nogui option ignored /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 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 ECHO 0 /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 Echoing is ON BATC 1 Batch mode 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 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 721.407619 Burning in for 100 iterations out of 500 -2 * Loglike = 720.379064 Burning in for 150 iterations out of 500 -2 * Loglike = 720.686163 Burning in for 200 iterations out of 500 -2 * Loglike = 717.547255 Burning in for 250 iterations out of 500 -2 * Loglike = 724.082021 Burning in for 300 iterations out of 500 -2 * Loglike = 723.120000 Burning in for 350 iterations out of 500 -2 * Loglike = 727.325282 Burning in for 400 iterations out of 500 -2 * Loglike = 723.489660 Burning in for 450 iterations out of 500 -2 * Loglike = 720.718118 Burning in for 500 iterations out of 500 -2 * Loglike = 721.667043 ERAS G30 LINK 0 G30 ERAS 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.617306 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 725.148612 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.854247 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 724.983949 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.987573 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.166452 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.611318 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 721.716371 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 720.545645 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.751488 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 721.769849 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 718.363456 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.511135 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.959413 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 723.629401 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 720.577425 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 725.376311 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 720.744174 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 727.365618 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 686.603248 Burning in for 100 iterations out of 500 -2 * Loglike = 721.619964 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.209901 Burning in for 150 iterations out of 500 -2 * Loglike = 686.497779 Burning in for 200 iterations out of 500 -2 * Loglike = 721.443611 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 687.431505 Burning in for 250 iterations out of 500 -2 * Loglike = 721.474541 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 694.186171 Burning in for 300 iterations out of 500 -2 * Loglike = 722.206796 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 690.426592 Burning in for 350 iterations out of 500 -2 * Loglike = 721.304350 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.086972 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 691.907039 Burning in for 450 iterations out of 500 -2 * Loglike = 690.733132 Burning in for 500 iterations out of 500 -2 * Loglike = 719.526788 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.854031 -2 * Loglike = 723.144909 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 688.399261 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 721.496099 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 696.105035 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 722.295046 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.160220 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... -2 * Loglike = 724.572893 Actual update 1500 of 5000, Stored update 1500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 692.222526 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.811774 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 684.844119 Burning in for 100 iterations out of 500 -2 * Loglike = 720.715368 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 685.434662 Burning in for 150 iterations out of 500 -2 * Loglike = 703.224782 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.477249 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 685.447916 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 723.876403 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.524860 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 688.862767 Burning in for 250 iterations out of 500 -2 * Loglike = 721.542706 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored -2 * Loglike = 690.054020 Burning in for 300 iterations out of 500 -2 * Loglike = 696.836167 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 725.029139 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.417349 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 687.812944 Burning in for 350 iterations out of 500 -2 * Loglike = 693.658748 Burning in for 400 iterations out of 500 -2 * Loglike = 716.638173 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.070872 Burning in for 450 iterations out of 500 -2 * Loglike = 685.291709 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 686.864136 Burning in for 500 iterations out of 500 -2 * Loglike = 687.079034 -2 * Loglike = 685.756407 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 720.080375 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.258943 Actual update 650 of 5000, Stored update 650 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 = 689.818222 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.148165 Actual update 1900 of 5000, Stored update 1900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 687.268240 Actual update 100 of 5000, Stored update 100 of 5000 ECHO 0 -2 * Loglike = 684.855311 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.769612 Actual update 150 of 5000, Stored update 150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 721.715191 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 700.514506 Burning in for 100 iterations out of 500 -2 * Loglike = 683.688254 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.219063 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.524868 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.359481 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.472098 Burning in for 150 iterations out of 500 -2 * Loglike = 687.704101 Actual update 850 of 5000, Stored update 850 of 5000 /nogui option ignored -2 * Loglike = 686.535105 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.321764 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.406810 Burning in for 200 iterations out of 500 -2 * Loglike = 722.950919 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 702.107995 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.189328 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.534972 Burning in for 250 iterations out of 500 -2 * Loglike = 718.994081 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 682.510852 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.154958 Actual update 1000 of 5000, Stored update 1000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 704.932610 Burning in for 300 iterations out of 500 -2 * Loglike = 719.916200 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.015320 Actual update 450 of 5000, Stored update 450 of 5000 /nogui option ignored Burning in for 50 iterations out of 500 -2 * Loglike = 692.954369 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.745935 Burning in for 350 iterations out of 500 -2 * Loglike = 724.437239 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 683.752399 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 709.135238 Burning in for 100 iterations out of 500 -2 * Loglike = 690.979597 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 708.123562 Burning in for 400 iterations out of 500 -2 * Loglike = 722.701947 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.776531 Burning in for 150 iterations out of 500 -2 * Loglike = 683.292481 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 689.253550 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... ECHO 0 -2 * Loglike = 705.688685 Burning in for 450 iterations out of 500 -2 * Loglike = 723.793649 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.225300 Burning in for 200 iterations out of 500 -2 * Loglike = 685.140709 Actual update 600 of 5000, Stored update 600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 690.604509 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.550217 Burning in for 500 iterations out of 500 ECHO 0 -2 * Loglike = 719.668875 Actual update 2350 of 5000, Stored update 2350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 709.147198 Burning in for 250 iterations out of 500 -2 * Loglike = 686.133063 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.623604 Burning in for 100 iterations out of 500 -2 * Loglike = 704.181561 -2 * Loglike = 692.165075 Actual update 1250 of 5000, Stored update 1250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 723.338289 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.622131 Burning in for 300 iterations out of 500 -2 * Loglike = 686.457192 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.403303 Burning in for 150 iterations out of 500 -2 * Loglike = 688.234075 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.097602 Burning in for 100 iterations out of 500 -2 * Loglike = 683.380032 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.292901 Burning in for 350 iterations out of 500 -2 * Loglike = 723.818484 Actual update 2450 of 5000, Stored update 2450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 706.093013 Burning in for 200 iterations out of 500 -2 * Loglike = 692.323259 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.423331 Burning in for 150 iterations out of 500 -2 * Loglike = 691.690743 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 713.202122 Burning in for 400 iterations out of 500 -2 * Loglike = 702.852071 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 722.349638 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.942951 Burning in for 250 iterations out of 500 -2 * Loglike = 698.074284 Burning in for 200 iterations out of 500 -2 * Loglike = 688.244864 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 684.412329 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.013354 Burning in for 450 iterations out of 500 -2 * Loglike = 708.087774 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 721.378458 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.446649 Burning in for 300 iterations out of 500 -2 * Loglike = 709.842396 Burning in for 500 iterations out of 500 -2 * Loglike = 697.453528 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 688.883653 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 698.833182 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 702.027730 Burning in for 250 iterations out of 500 -2 * Loglike = 713.710699 -2 * Loglike = 710.336627 Burning in for 350 iterations out of 500 -2 * Loglike = 684.886569 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.297706 Actual update 1500 of 5000, Stored update 1500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 702.432725 Burning in for 300 iterations out of 500 -2 * Loglike = 727.401133 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.746826 Burning in for 400 iterations out of 500 -2 * Loglike = 697.160459 Actual update 1000 of 5000, Stored update 1000 of 5000 Burning in for 50 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 687.639662 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.706343 Burning in for 350 iterations out of 500 -2 * Loglike = 706.928409 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 722.667178 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 687.940914 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 686.897462 Burning in for 100 iterations out of 500 -2 * Loglike = 716.402526 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 687.585056 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.772974 Burning in for 450 iterations out of 500 -2 * Loglike = 705.851552 Burning in for 400 iterations out of 500 -2 * Loglike = 701.459598 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.308247 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 713.418865 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.608273 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 700.122401 Burning in for 450 iterations out of 500 -2 * Loglike = 713.381643 Burning in for 500 iterations out of 500 -2 * Loglike = 716.606733 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.732426 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.254525 Actual update 1650 of 5000, Stored update 1650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 712.622564 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.931938 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 686.597594 Burning in for 150 iterations out of 500 -2 * Loglike = 703.667973 Burning in for 500 iterations out of 500 -2 * Loglike = 710.313333 -2 * Loglike = 725.931853 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 711.887580 Burning in for 100 iterations out of 500 -2 * Loglike = 690.850228 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 697.752119 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 714.477863 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.253573 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.571078 Burning in for 200 iterations out of 500 -2 * Loglike = 704.157451 -2 * Loglike = 703.057835 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 = 691.332130 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.089864 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 719.415210 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.855249 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.798664 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.369076 Burning in for 250 iterations out of 500 /nogui option ignored -2 * Loglike = 703.382642 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 = 708.889477 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.742810 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 698.481189 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 720.693304 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 721.012300 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.404317 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 691.689590 Burning in for 300 iterations out of 500 -2 * Loglike = 703.990219 Burning in for 250 iterations out of 500 -2 * Loglike = 702.812877 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.538724 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.535575 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 725.442825 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.734110 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 702.779975 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.893415 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 689.988154 Burning in for 350 iterations out of 500 -2 * Loglike = 710.627800 Burning in for 300 iterations out of 500 -2 * Loglike = 701.108100 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 721.371036 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 703.289754 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 699.907073 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 713.285274 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.365141 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.667391 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 720.244458 Burning in for 350 iterations out of 500 -2 * Loglike = 694.781389 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.600657 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.931659 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.268890 Actual update 250 of 5000, Stored update 250 of 5000 ECHO 0 -2 * Loglike = 688.363334 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.503366 Burning in for 400 iterations out of 500 -2 * Loglike = 711.475931 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.296056 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 723.614958 Burning in for 400 iterations out of 500 -2 * Loglike = 699.648286 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 692.564475 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.504910 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.353305 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.040872 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.866357 Burning in for 450 iterations out of 500 -2 * Loglike = 703.704289 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 693.944358 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 704.934294 Burning in for 450 iterations out of 500 -2 * Loglike = 697.926951 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 689.160561 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.446195 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.170363 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.304825 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.199459 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 702.749421 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 721.112978 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.541630 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.614186 Burning in for 500 iterations out of 500 -2 * Loglike = 713.450178 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.913445 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.160892 Burning in for 500 iterations out of 500 -2 * Loglike = 688.452944 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.643661 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.016924 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.066031 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 685.306114 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.348733 -2 * Loglike = 693.589826 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.268406 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 686.777393 -2 * Loglike = 691.181801 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.858623 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 725.905930 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.014845 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 689.080525 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.854374 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.501871 Actual update 900 of 5000, Stored update 900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.386409 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.216190 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 = 724.847149 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.766629 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.369611 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 689.919015 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 699.842266 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.393241 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 707.094500 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 704.203984 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 720.509041 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 688.300414 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 714.931290 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.097522 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 689.656989 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.089215 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.658863 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.264446 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.340001 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 721.630309 Actual update 3450 of 5000, Stored update 3450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 694.813278 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.593909 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 695.093838 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 684.543506 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.766039 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.079871 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.487721 Actual update 700 of 5000, Stored update 700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 701.445392 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.913720 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.763133 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 707.218496 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.456848 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.203350 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.160594 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.949184 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 702.588066 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 691.865040 Burning in for 100 iterations out of 500 -2 * Loglike = 711.725439 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.325723 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 692.653665 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.203692 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 696.640968 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 685.894693 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 703.060502 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 712.333715 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 689.661669 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 689.731148 Burning in for 150 iterations out of 500 -2 * Loglike = 704.994909 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 700.631911 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.115697 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.465114 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 693.584192 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 720.263867 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.432796 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.986927 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.158117 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.026356 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.719476 Burning in for 200 iterations out of 500 -2 * Loglike = 702.480647 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 684.763549 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.792817 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.197017 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.465760 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.333479 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.749893 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.593087 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 701.120274 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.257254 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.509248 Burning in for 250 iterations out of 500 -2 * Loglike = 695.393165 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.837052 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.324398 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 702.711841 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 729.058904 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.520989 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.091713 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.528569 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 691.929472 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 696.388780 Burning in for 300 iterations out of 500 -2 * Loglike = 690.540903 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.904713 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.841502 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.033618 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 715.918939 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.253410 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 691.770690 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.636643 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.942496 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.807541 Burning in for 350 iterations out of 500 -2 * Loglike = 684.333747 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 706.751167 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 700.343802 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.977482 Burning in for 400 iterations out of 500 -2 * Loglike = 707.113590 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 702.332701 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 691.830470 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 722.436737 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 684.487198 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.067192 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 693.509195 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.055217 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.804952 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.579484 Burning in for 450 iterations out of 500 -2 * Loglike = 712.815117 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.460263 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.670486 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 726.708849 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 699.255667 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 704.770598 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 692.538509 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.008451 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.640380 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.319808 Burning in for 500 iterations out of 500 -2 * Loglike = 706.867604 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.023287 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.654651 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 723.206378 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.527757 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.451187 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 688.239586 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.775702 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 703.108957 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.662211 -2 * Loglike = 709.148580 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.456491 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 693.924033 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 724.502723 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.601822 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.353524 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 688.117764 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 686.871540 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.278783 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 = 709.796221 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.428467 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.392773 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.609172 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.665869 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 708.297427 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.582643 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.744916 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.061640 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 693.668787 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.790198 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.635889 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.083993 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 692.826851 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.760328 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.411728 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 695.627187 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.119601 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 721.804470 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 711.005088 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.395965 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.247803 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.220452 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 690.585632 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.425494 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.687863 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.413007 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 696.861664 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.124294 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 704.909447 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 687.496682 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.830488 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.132747 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.043809 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.259552 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.633644 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 690.411211 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 700.521016 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.440246 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 700.778733 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.553831 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.131228 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.630256 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.009227 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.842623 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.473987 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.856400 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.654383 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.336704 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.168772 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 719.184450 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 714.393515 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 690.786420 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 713.275658 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.512679 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.300755 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.047731 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.814988 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.768847 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.421187 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 724.735569 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.859048 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 720.224003 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 711.749666 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.627553 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 701.122786 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.975980 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 688.488402 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 705.999241 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 690.632050 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.579409 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 713.880205 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 724.135166 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.333715 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 699.317234 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 710.656850 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.961233 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.943446 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 711.057484 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.326363 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.124143 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.767027 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.721500 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.685706 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.025405 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.300346 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.237653 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 691.520481 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.731580 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 703.592991 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.754922 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.062365 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.403707 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.928396 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.633765 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 687.202308 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.398835 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.615643 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 689.487645 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 691.301687 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.317711 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 725.301169 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.290938 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.511182 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.071300 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.865801 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 686.879649 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.316461 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 688.887679 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 706.257980 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.530389 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.605639 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.293921 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.347937 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.880156 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.407741 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.253461 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 707.633236 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 688.609610 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.035439 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.956405 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.542000 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.991633 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.055629 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.002902 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.242071 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.783678 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 706.225046 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 692.379353 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.987928 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 689.627279 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 724.309725 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 694.071019 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.018204 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.793877 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.179347 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.799616 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.148327 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.186664 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.121850 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.786570 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 720.932232 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 697.580881 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.431802 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 685.787629 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.211181 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.297718 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.912140 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.291348 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 686.211039 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.870368 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.320879 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.884428 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.808574 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 687.043036 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.785636 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 718.000451 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 712.636613 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.238183 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 688.721404 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.032168 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.927662 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.110183 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.013069 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 695.595004 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.347847 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 717.417864 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.197675 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 701.524469 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 686.505325 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 725.964478 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.092845 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.859766 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.665758 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 686.539347 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 714.820105 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.287604 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 711.257991 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 703.840997 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.809113 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 721.642329 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.399935 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.553854 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.323152 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.212891 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 711.500819 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 695.084348 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 708.081163 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.636066 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.947858 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 721.578644 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 708.546508 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.565015 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.002097 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.065377 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.458796 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.296527 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.233909 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.588902 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.914972 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.467926 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.091798 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 708.038791 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.418588 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 708.906002 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 699.642583 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 708.233720 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.498863 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.574924 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.901142 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.743532 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 706.130658 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 690.967636 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 694.952215 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.655288 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.445276 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 687.931472 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.420441 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.664692 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.889833 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.882603 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 686.170240 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.751709 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 705.095041 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 721.802670 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 691.371716 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.616664 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.566455 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.659567 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 692.483396 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 689.380480 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 718.633185 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.609777 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.990916 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 683.691149 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 685.995532 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.822676 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.108829 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 693.196581 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.802453 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 704.187175 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 711.026931 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 705.592338 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 688.499523 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 683.840644 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 703.128529 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.597335 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.508608 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.233928 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.970644 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.722860 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.165122 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.865255 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 684.480041 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.394356 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.389428 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 688.789099 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 686.850820 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.293474 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.763062 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.915061 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 707.332756 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.409721 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.610483 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.269811 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.228254 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.921962 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.582809 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.260078 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.721825 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 715.935605 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 685.449928 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 706.770458 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.141958 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 690.631223 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.602749 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 722.20 S.D. = 2.5474 S.E.M. = 0.036025 ECHO 0 Execution completed -2 * Loglike = 690.708871 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.698626 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.139804 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.907783 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 713.266230 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 706.553234 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.276897 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.333296 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 705.118643 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.188830 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.925811 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.252517 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.425880 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 712.288359 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.933433 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.941903 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.719683 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 693.120447 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.624780 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.577934 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.122896 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.087840 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.130785 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.951057 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 703.890210 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 701.936126 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 693.866488 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.802517 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.964200 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.866157 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 712.558032 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.452619 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.708271 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.997990 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.265050 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.412404 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.408222 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.837830 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.449154 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.725050 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.036860 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.356140 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.299744 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.799181 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 696.939934 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.884353 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 724.320367 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.056761 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.902718 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.559311 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.132901 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 705.127752 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 693.988403 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 692.911381 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 706.387852 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.680963 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.495342 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.385598 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 691.794543 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 703.718362 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.899515 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 691.819307 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.528057 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.760976 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.054087 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.674858 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.101830 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 707.542515 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 697.377487 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 706.154232 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.307815 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 687.057046 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.467311 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.097516 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.818493 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.982583 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 695.105329 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.289450 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 724.148992 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.841627 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.830343 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.872636 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 685.433338 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.115677 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.838079 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.877772 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.562977 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 711.162191 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.986194 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.244614 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 689.188090 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.034585 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.678712 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 716.668841 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.532413 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.221064 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.056630 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.020125 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 692.413892 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.851202 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.186285 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.118545 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 704.120556 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.560100 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.145278 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 699.382224 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.315013 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.179434 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.847417 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.484835 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.312644 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.121937 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.821842 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 720.814952 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.508236 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.380582 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.639411 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.888961 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 690.969707 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.830771 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 708.798727 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.586865 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.422364 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.088952 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 687.744104 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.204618 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.063160 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.361704 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.824596 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 689.532848 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.148732 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.052159 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.574418 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 694.512168 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.313495 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.182733 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.976847 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 708.964707 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.176373 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.228309 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 711.885795 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.174219 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.502971 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 715.945576 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 700.398582 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.832876 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.486176 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 693.928423 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 688.357626 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.823647 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.227429 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.663264 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 688.054850 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.158005 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.768782 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 692.829382 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 691.588848 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 710.562140 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.291300 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.910214 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 706.911877 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.846438 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.325297 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 690.791116 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 684.253468 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 704.575530 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.076807 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.992779 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.610247 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.142637 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.556429 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.047208 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.264595 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.163367 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.230192 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 687.696001 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.515561 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 708.345858 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.216263 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.913863 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 692.335083 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.501079 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 718.540519 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 690.108788 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 694.334514 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.192058 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.439669 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.00 S.D. = 3.9954 S.E.M. = 0.056504 ECHO 0 Execution completed -2 * Loglike = 711.557700 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 696.948066 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.634523 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 713.336222 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 687.435096 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 714.662521 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.570810 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 711.148060 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.777645 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.382836 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.325914 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 688.950975 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 695.479740 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.679409 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 710.254211 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.288728 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.276594 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 700.294481 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 687.023370 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 690.606681 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 706.284494 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 708.197121 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.639272 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.316929 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 709.236838 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.958000 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 694.432536 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.249342 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.671630 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 709.471103 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 691.912835 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 705.263147 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.615630 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.499995 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.618179 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.378708 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.307345 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.118355 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.975460 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 685.730598 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.602027 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.948854 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.535032 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.035289 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.607346 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.882565 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 689.464006 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.204414 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.353301 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.158388 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.102892 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.981891 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.159373 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 689.069319 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.401051 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.123573 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.271850 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 693.763359 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.816067 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 706.520508 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.176879 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.684358 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.891125 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.957960 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 706.977786 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 703.800266 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.528606 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 684.766022 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.995436 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.205665 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 710.062363 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.446139 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.564832 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.792206 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.424691 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 691.135524 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.125793 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.226915 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.715567 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 709.856559 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.078315 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.666112 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.931501 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.407831 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.927353 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.068547 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.808290 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 694.651840 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.111097 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.247781 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.550644 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.948121 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.020136 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 686.429313 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 723.791136 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.289355 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 717.770089 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.134392 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.190872 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.029325 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 720.633555 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.989540 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.555683 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 705.190851 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.663674 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.052685 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.033186 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.648718 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.275843 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.449414 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.037226 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 695.610515 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 703.639313 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.985136 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.639559 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.038069 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.421864 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.696768 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 703.554175 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.479799 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.94 S.D. = 4.7879 S.E.M. = 0.067712 ECHO 0 Execution completed -2 * Loglike = 706.125660 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 708.049520 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.374408 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 690.779088 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.525501 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.529461 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 713.584716 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 706.526525 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 714.064694 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 695.556721 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.678909 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 719.587174 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.457676 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.603196 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.761930 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 686.151973 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.270635 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.383104 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.126966 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 717.328540 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.475933 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.983022 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.411823 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.478506 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 713.401699 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.991042 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.852753 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 687.590121 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.459511 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.907101 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.019007 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.879435 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.167594 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.973437 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 706.097405 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 704.527176 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.997550 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 699.965650 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 723.861250 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.496298 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 700.645910 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.210886 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.945998 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 695.767056 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.845839 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.573461 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.903134 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 715.242039 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.362084 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.969041 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 704.318179 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.115102 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.648968 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.401371 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 695.994907 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.449870 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.630730 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.064246 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 695.294987 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.597364 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 713.080008 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 692.807316 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 713.406045 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.958404 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.770130 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.959967 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 693.834315 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.498855 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.107269 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.468876 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 700.456894 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.619416 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 709.271437 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 684.575850 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.950002 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 708.223988 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.087607 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 690.229746 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.401001 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.525944 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.382293 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.538770 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.520217 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.47 S.D. = 4.0642 S.E.M. = 0.057477 ECHO 0 Execution completed -2 * Loglike = 690.376038 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 698.643203 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 688.187628 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 688.490396 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.822271 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.270323 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.992013 Actual update 4350 of 5000, Stored update 4350 of 5000 /nogui option ignored -2 * Loglike = 696.187290 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.518671 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 692.034620 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.026677 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.52 S.D. = 4.4081 S.E.M. = 0.062340 ECHO 0 Execution completed -2 * Loglike = 702.671196 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.233578 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 692.010124 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.657275 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 709.57 S.D. = 4.3346 S.E.M. = 0.061300 ECHO 0 Execution completed -2 * Loglike = 694.442400 Actual update 4700 of 5000, Stored update 4700 of 5000 ECHO 0 -2 * Loglike = 689.229005 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 691.243426 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.097345 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.787394 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 694.317912 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 713.392742 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.01 S.D. = 5.5686 S.E.M. = 0.078752 ECHO 0 Execution completed -2 * Loglike = 695.099523 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.74 S.D. = 4.6553 S.E.M. = 0.065836 ECHO 0 Execution completed -2 * Loglike = 698.336802 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.802050 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.08 S.D. = 5.9012 S.E.M. = 0.083455 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 = 688.258532 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 693.88 S.D. = 4.4356 S.E.M. = 0.062729 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 /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 Echoing is ON BATC 1 Batch mode 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 /nogui option ignored ECHO 0 ECHO 0 /nogui option ignored ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode 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 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 705.468786 Burning in for 100 iterations out of 500 -2 * Loglike = 705.262812 Burning in for 150 iterations out of 500 -2 * Loglike = 705.520295 Burning in for 200 iterations out of 500 -2 * Loglike = 706.780453 Burning in for 250 iterations out of 500 -2 * Loglike = 703.283642 Burning in for 300 iterations out of 500 -2 * Loglike = 706.809730 Burning in for 350 iterations out of 500 -2 * Loglike = 712.141870 Burning in for 400 iterations out of 500 -2 * Loglike = 708.144656 Burning in for 450 iterations out of 500 -2 * Loglike = 705.916352 Burning in for 500 iterations out of 500 -2 * Loglike = 707.026564 ERAS G30 LINK 0 G30 ERAS 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.570828 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.663945 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.389666 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 708.906938 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 708.108806 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.332216 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.545155 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.724210 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.821445 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.904886 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.706285 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 704.977214 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 707.021495 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.681978 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 707.315036 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 704.659313 Actual update 850 of 5000, Stored update 850 of 5000 /nogui option ignored -2 * Loglike = 709.726750 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.927814 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 710.820789 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.319144 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.982617 Actual update 1100 of 5000, Stored update 1100 of 5000 ECHO 0 -2 * Loglike = 708.132445 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.621597 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored -2 * Loglike = 706.680052 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.764049 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.489712 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 705.417981 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 706.103600 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 708.646899 Actual update 1500 of 5000, Stored update 1500 of 5000 ECHO 0 -2 * Loglike = 704.764815 Actual update 1550 of 5000, Stored update 1550 of 5000 ECHO 0 -2 * Loglike = 705.412812 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.415175 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 705.935148 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.801370 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 704.887796 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.856931 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.315204 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 705.620115 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... Burning in for 50 iterations out of 500 -2 * Loglike = 699.780292 Burning in for 100 iterations out of 500 -2 * Loglike = 705.806676 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.349097 Burning in for 150 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 699.110628 Burning in for 200 iterations out of 500 -2 * Loglike = 706.591035 Actual update 2050 of 5000, Stored update 2050 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 696.979671 Burning in for 250 iterations out of 500 -2 * Loglike = 704.180889 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.335085 Burning in for 100 iterations out of 500 -2 * Loglike = 700.841660 Burning in for 300 iterations out of 500 -2 * Loglike = 684.732234 Burning in for 150 iterations out of 500 -2 * Loglike = 701.006730 Burning in for 350 iterations out of 500 -2 * Loglike = 705.764776 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 685.427994 Burning in for 200 iterations out of 500 -2 * Loglike = 707.027606 Burning in for 400 iterations out of 500 -2 * Loglike = 709.330810 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.028409 Burning in for 250 iterations out of 500 -2 * Loglike = 701.905605 Burning in for 450 iterations out of 500 -2 * Loglike = 705.913993 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.654813 Burning in for 500 iterations out of 500 -2 * Loglike = 690.602927 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... Burning in for 50 iterations out of 500 -2 * Loglike = 702.320096 -2 * Loglike = 689.488685 Burning in for 350 iterations out of 500 -2 * Loglike = 685.701268 Burning in for 100 iterations out of 500 -2 * Loglike = 707.332098 Actual update 2300 of 5000, Stored update 2300 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 692.685430 Burning in for 400 iterations out of 500 -2 * Loglike = 683.831315 Burning in for 150 iterations out of 500 -2 * Loglike = 688.385997 Burning in for 450 iterations out of 500 -2 * Loglike = 704.574556 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 684.120600 Burning in for 200 iterations out of 500 -2 * Loglike = 703.064770 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 690.415403 Burning in for 500 iterations out of 500 -2 * Loglike = 686.574261 Burning in for 250 iterations out of 500 -2 * Loglike = 703.262553 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 686.192766 -2 * Loglike = 699.203264 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.335829 Burning in for 300 iterations out of 500 -2 * Loglike = 703.084078 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.642713 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 = 704.342324 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 688.415995 Burning in for 350 iterations out of 500 -2 * Loglike = 714.395255 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.234961 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 698.860388 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 691.798305 Burning in for 400 iterations out of 500 -2 * Loglike = 706.981524 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 690.225238 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.859496 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 706.195998 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 682.680686 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.168643 Burning in for 450 iterations out of 500 -2 * Loglike = 699.341653 Actual update 500 of 5000, Stored update 500 of 5000 /nogui option ignored -2 * Loglike = 690.828171 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.658355 Burning in for 500 iterations out of 500 -2 * Loglike = 697.689433 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.251859 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 685.345408 Actual update 300 of 5000, Stored update 300 of 5000 /nogui option ignored -2 * Loglike = 711.221214 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.001709 Actual update 350 of 5000, Stored update 350 of 5000 /nogui option ignored -2 * Loglike = 699.991947 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 681.696291 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 707.203727 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.745897 -2 * Loglike = 696.711700 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 691.555692 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.324336 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.030707 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.851033 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 683.598398 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.420063 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 = 695.902015 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.724681 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 698.378320 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 707.545798 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.930145 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 682.624782 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.550066 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.371808 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.693817 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.848778 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 700.650113 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.842457 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 681.762326 Actual update 200 of 5000, Stored update 200 of 5000 ECHO 0 -2 * Loglike = 685.779327 Actual update 650 of 5000, Stored update 650 of 5000 ECHO 0 -2 * Loglike = 705.163315 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.681800 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 689.258300 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 683.486233 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.713511 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.777695 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.381279 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 682.260537 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.587505 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.380294 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 691.373022 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 699.569076 Actual update 350 of 5000, Stored update 350 of 5000 /nogui option ignored -2 * Loglike = 700.045020 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.474743 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.221959 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 700.509977 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.246260 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.809931 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.744951 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 688.234704 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.894058 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 696.025785 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 699.697735 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.425329 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 683.731855 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 710.384962 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.686835 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 682.312037 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.832166 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.684398 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.234087 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.006863 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 682.168258 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.115140 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 700.771050 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.646383 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 684.790915 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.760659 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 702.909284 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 706.105255 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 684.732191 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 687.603840 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.912199 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.320762 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 681.236341 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 690.007281 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 709.328449 Actual update 3550 of 5000, Stored update 3550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 699.917470 Actual update 1600 of 5000, Stored update 1600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 690.303699 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 686.161516 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.915055 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 704.697200 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 684.777082 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 729.768091 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 689.581567 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 700.574682 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 706.026515 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 686.882972 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 718.322725 Burning in for 150 iterations out of 500 -2 * Loglike = 682.719113 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.227618 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 726.030559 Burning in for 200 iterations out of 500 -2 * Loglike = 685.144070 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 687.109371 Actual update 1450 of 5000, Stored update 1450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 721.881983 Burning in for 250 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 703.108011 Actual update 1750 of 5000, Stored update 1750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 697.017580 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 687.212785 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.075343 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.603192 Burning in for 100 iterations out of 500 -2 * Loglike = 724.703217 Burning in for 300 iterations out of 500 -2 * Loglike = 712.844478 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.659658 Burning in for 100 iterations out of 500 -2 * Loglike = 688.165557 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.896856 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.116532 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 680.330047 Burning in for 150 iterations out of 500 -2 * Loglike = 704.434798 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 731.037398 Burning in for 350 iterations out of 500 -2 * Loglike = 711.037697 Burning in for 150 iterations out of 500 -2 * Loglike = 683.732548 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.139171 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 689.039668 Actual update 1100 of 5000, Stored update 1100 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 681.385913 Burning in for 200 iterations out of 500 -2 * Loglike = 705.060930 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 735.549091 Burning in for 400 iterations out of 500 -2 * Loglike = 710.687728 Burning in for 200 iterations out of 500 -2 * Loglike = 685.796545 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.702772 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.687678 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 714.192323 Burning in for 100 iterations out of 500 -2 * Loglike = 685.719240 Burning in for 250 iterations out of 500 -2 * Loglike = 712.807448 Burning in for 250 iterations out of 500 -2 * Loglike = 710.771831 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 722.072491 Burning in for 450 iterations out of 500 -2 * Loglike = 687.520600 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 683.908783 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.468002 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.506488 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 706.779283 Burning in for 150 iterations out of 500 -2 * Loglike = 710.295730 Burning in for 300 iterations out of 500 -2 * Loglike = 707.135400 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 687.171716 Burning in for 300 iterations out of 500 -2 * Loglike = 713.019876 Burning in for 350 iterations out of 500 -2 * Loglike = 725.520931 Burning in for 500 iterations out of 500 -2 * Loglike = 700.074229 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.232354 Burning in for 200 iterations out of 500 -2 * Loglike = 683.705006 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.929085 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 703.616089 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.194498 Burning in for 350 iterations out of 500 -2 * Loglike = 717.118540 Burning in for 400 iterations out of 500 -2 * Loglike = 724.342686 -2 * Loglike = 696.101667 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.206697 Burning in for 250 iterations out of 500 -2 * Loglike = 683.128048 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.021627 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.048720 Actual update 4050 of 5000, Stored update 4050 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 712.140979 Burning in for 450 iterations out of 500 -2 * Loglike = 686.193481 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.401988 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 688.394032 Burning in for 400 iterations out of 500 -2 * Loglike = 711.208181 Burning in for 300 iterations out of 500 -2 * Loglike = 683.445981 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 725.652563 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 704.818545 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.471251 Burning in for 500 iterations out of 500 -2 * Loglike = 686.384796 Burning in for 450 iterations out of 500 -2 * Loglike = 709.309547 Burning in for 350 iterations out of 500 -2 * Loglike = 684.828070 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.886521 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.242966 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 733.018415 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.209368 -2 * Loglike = 706.625107 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 688.051710 Burning in for 500 iterations out of 500 -2 * Loglike = 685.129539 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.646711 Burning in for 400 iterations out of 500 -2 * Loglike = 729.159062 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.095607 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.714333 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 695.513284 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 686.544763 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 = 685.681178 /nogui option ignored -2 * Loglike = 709.397878 Burning in for 450 iterations out of 500 -2 * Loglike = 733.341093 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 701.920407 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 682.625049 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.649903 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.321794 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 712.459441 Burning in for 500 iterations out of 500 -2 * Loglike = 703.936179 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 731.726598 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.796910 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 = 684.099925 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.463064 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.880261 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.380024 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 737.529820 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 712.365951 -2 * Loglike = 699.619371 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.198463 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 692.291598 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.056723 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.370207 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.330359 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.595528 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 701.728824 Actual update 2450 of 5000, Stored update 2450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 688.569001 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 683.843019 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 684.867992 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 685.725233 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.356910 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.919075 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.117610 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.733043 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 678.422204 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 686.463305 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 728.829667 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 686.739238 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.146239 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.591264 Actual update 2550 of 5000, Stored update 2550 of 5000 ECHO 0 -2 * Loglike = 710.570419 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.510551 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 686.528071 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 681.922228 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 724.414960 Actual update 500 of 5000, Stored update 500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 705.504156 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 689.880383 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.177153 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.235104 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 707.148490 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 681.039734 Actual update 300 of 5000, Stored update 300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 721.435203 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 681.984682 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.454021 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.685777 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.828740 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 712.179503 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.295609 Burning in for 100 iterations out of 500 -2 * Loglike = 695.738138 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.793985 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 729.788809 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 684.831265 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.791758 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 684.497891 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.577840 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.677228 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 688.802306 Burning in for 150 iterations out of 500 -2 * Loglike = 677.820830 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.843439 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 719.730936 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.727943 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.616473 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.607352 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.113665 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 687.250702 Burning in for 200 iterations out of 500 -2 * Loglike = 692.733152 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 723.593830 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.437600 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 685.690181 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 695.551191 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 710.816815 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.360994 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.435911 Burning in for 250 iterations out of 500 -2 * Loglike = 705.045212 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.044143 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 703.912505 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.297022 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.970676 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 691.136269 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 700.211054 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.986632 Burning in for 300 iterations out of 500 -2 * Loglike = 718.613104 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 679.177051 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.085957 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.115990 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.876191 Burning in for 350 iterations out of 500 -2 * Loglike = 709.980865 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 686.910107 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 699.189563 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.743255 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 729.383026 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 679.137907 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 709.439415 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 710.160254 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.618241 Burning in for 400 iterations out of 500 -2 * Loglike = 687.953020 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.664113 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.279848 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 681.335120 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.333625 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 705.348199 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 718.864001 Actual update 850 of 5000, Stored update 850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 705.907341 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.743154 Burning in for 450 iterations out of 500 -2 * Loglike = 686.470765 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.210577 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 680.515828 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.735361 Actual update 600 of 5000, Stored update 600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 687.703488 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 708.192690 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 727.622069 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.554615 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.576820 Burning in for 500 iterations out of 500 -2 * Loglike = 685.639591 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.523888 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.687791 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 677.752253 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 690.532159 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.339456 Burning in for 100 iterations out of 500 -2 * Loglike = 706.436660 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 727.311103 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.144716 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.005344 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.450861 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 691.827571 -2 * Loglike = 686.696844 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.458312 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.224602 Burning in for 150 iterations out of 500 -2 * Loglike = 699.570395 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 684.009134 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.769148 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 732.152265 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.413900 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 681.199144 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.294469 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 = 687.183896 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.414932 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.197044 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 712.605750 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 713.525808 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 729.899578 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 683.709973 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 710.988301 Burning in for 250 iterations out of 500 -2 * Loglike = 687.835017 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 728.423589 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 701.155685 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 684.239553 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 708.964861 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 706.126033 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.427123 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 681.989960 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 711.704483 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 688.142211 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 721.353951 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.283848 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 685.282537 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 714.851291 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.091673 Burning in for 300 iterations out of 500 -2 * Loglike = 701.142464 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 693.699066 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.055903 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 684.763527 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 704.467565 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.266034 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.200831 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.809737 Burning in for 350 iterations out of 500 -2 * Loglike = 724.090979 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.557837 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 714.926148 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.297076 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.074599 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.729194 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.742185 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 716.170391 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 715.745015 Burning in for 400 iterations out of 500 -2 * Loglike = 723.481508 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.153308 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.503265 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 685.987258 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 707.748820 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.850274 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.719726 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.373284 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.696271 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 727.908700 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 682.334675 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 711.820607 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 685.990805 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.417823 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.471024 Burning in for 450 iterations out of 500 -2 * Loglike = 701.319724 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 710.674058 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 686.198842 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 706.339628 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.70 S.D. = 2.2122 S.E.M. = 0.031285 ECHO 0 Execution completed -2 * Loglike = 733.932197 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.063398 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 708.406592 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.975167 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.837201 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.599902 Burning in for 500 iterations out of 500 -2 * Loglike = 699.816639 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.478504 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 691.293730 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 730.299066 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.879913 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 686.946336 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 712.132812 -2 * Loglike = 710.559509 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.882072 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 700.683555 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 708.604600 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.260999 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 730.577495 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 699.674685 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.599092 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.947374 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 680.276997 Actual update 1300 of 5000, Stored update 1300 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.337051 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.039147 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 686.860004 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 730.000372 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 684.572251 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 689.755648 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 685.756586 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 688.901491 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 710.192663 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.561272 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.167464 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 729.193030 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.728834 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.455291 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 689.089801 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.823698 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 684.995219 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.606706 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.701049 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 697.834429 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 730.948000 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 714.201849 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.392486 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.772015 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.152912 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.119588 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.285013 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.597964 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 706.833750 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 731.914971 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 713.731930 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.990006 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 690.223763 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.855442 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 682.719090 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 684.951400 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 710.973700 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 698.890754 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 729.307547 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.196349 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 694.168299 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.098638 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.103193 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 681.710241 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 713.398307 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 685.522397 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.274536 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 733.130594 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.055050 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.100645 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.623253 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.723177 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.597775 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 709.922831 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 685.776410 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.691540 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 708.599710 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 724.603451 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.220403 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.326987 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 689.864806 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.210186 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 684.771322 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.583441 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.349450 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.851024 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.269535 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.912511 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 679.797613 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.298402 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.889762 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.370124 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.331156 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.210622 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 695.088339 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.379635 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 683.753583 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.801474 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 709.244760 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.889151 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 720.435313 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.661192 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.389959 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.870851 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 686.891398 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 678.359756 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.084627 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.870608 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 684.941844 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.739216 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.790839 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.027101 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.800113 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 705.489217 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 708.854898 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.632073 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.907747 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.647605 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 729.578860 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.537042 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 681.120850 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.509700 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 702.206957 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.514627 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 692.956756 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.860836 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 693.544352 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 725.075562 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.652792 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 682.319374 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 705.935921 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 700.613163 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.230033 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.679580 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 689.052744 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 690.672466 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 720.852543 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 709.657350 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 704.749678 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.255393 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.339844 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.630182 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.574129 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 682.644562 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 692.773002 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 721.564485 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.965644 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 710.038462 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.120301 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 702.936210 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.343240 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 683.585458 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 688.155515 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 723.986673 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.708935 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 708.519334 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 711.803114 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.750413 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.388603 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.681663 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 684.183323 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.191463 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 727.626672 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.641942 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.859153 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.866961 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.766639 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.355147 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.339293 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.622687 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.220833 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.812370 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 732.001942 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.050518 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.390201 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 719.087180 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 702.797870 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 684.450439 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 682.011348 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 685.823003 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.926397 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 725.720067 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.106952 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.846870 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 711.584752 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.632460 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.376520 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 681.846560 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 684.376366 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.630156 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 733.745244 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.901306 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.180198 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 707.598979 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 703.995283 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 689.295842 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 683.331416 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.765774 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 731.216532 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.382398 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.394469 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.328066 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.651311 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 703.154527 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 695.579395 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 682.060487 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 687.640282 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 727.992369 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 711.293879 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.729348 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.942783 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.389222 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 690.394207 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 691.921921 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 696.174875 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.298012 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 724.978105 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 692.555793 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.482181 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 709.877817 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 710.230448 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.643935 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 683.480783 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.762365 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 735.495680 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.048779 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 679.818036 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.133415 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.671483 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.629218 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 690.607532 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.985616 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.295098 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 727.592668 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 687.635298 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 681.903548 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.552401 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.566607 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 710.883708 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.326972 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 701.526376 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.209696 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 688.775109 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 723.287966 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 682.233885 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.278223 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.150192 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.191956 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 685.070189 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.630922 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.428841 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.064291 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 723.461281 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 716.533355 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.150411 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.130727 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.972459 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.899143 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.679161 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 685.853537 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.276814 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.425555 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 722.827351 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.116574 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 690.688878 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.525592 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.782292 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 685.075731 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.301296 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.954931 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 711.236396 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 726.504784 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.667294 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 686.596030 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.696650 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 682.751050 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 683.782164 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.556554 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 709.125973 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 695.990075 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 722.473236 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 691.022474 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.463771 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 687.384773 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.674972 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 713.582809 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.772380 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 727.358710 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 686.359514 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.237378 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 713.731312 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 684.633634 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 694.263058 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 691.319401 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.369233 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 728.637159 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 712.078734 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.313840 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.074215 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 683.742596 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.773534 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.580156 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.314389 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 724.224964 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.172868 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 691.797322 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 714.872953 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 684.534068 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 692.590369 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 687.561682 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.914286 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 724.463990 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.107915 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.479396 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 710.116960 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 680.577550 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 690.920375 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.243181 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.535282 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 709.663854 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 680.327858 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.087796 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.142000 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 681.138923 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.431078 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.401747 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 713.990283 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 725.575266 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 682.002874 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 687.197321 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.604210 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.422016 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 709.541187 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 682.105042 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.194335 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 725.857528 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.198935 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 706.417374 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 711.959733 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 681.546916 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 683.880952 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 730.811660 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.454972 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.126769 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.404580 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 685.959838 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 731.744147 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 684.912613 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.239442 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 706.541299 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.910824 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.462623 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 695.228999 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 727.863642 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 719.102065 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.206223 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 712.594630 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.942496 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.316480 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 681.966833 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.772147 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.76 S.D. = 2.3326 S.E.M. = 0.032987 ECHO 0 Execution completed -2 * Loglike = 709.988257 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.971817 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.899866 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.503007 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 726.614065 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 686.764968 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 707.682516 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 691.978912 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.189728 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 705.592634 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 726.000760 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.586159 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 683.333315 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 710.432930 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 723.970234 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 686.647580 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.553173 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.858398 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.751211 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.553917 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 687.015239 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 712.082331 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 729.059513 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 716.821904 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 723.311089 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 679.397424 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.998914 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.411860 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.025851 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 712.275267 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 723.468739 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 680.881067 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 693.661349 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.324173 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.989457 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 709.937697 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.064525 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 681.582738 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 691.307097 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 706.172133 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.218938 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.422346 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 736.032257 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 689.021569 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.695789 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.085487 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.596530 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 713.724511 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 727.260862 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.472786 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 708.280932 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.956313 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.235605 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.791950 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.029909 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 688.84 S.D. = 4.3835 S.E.M. = 0.061992 ECHO 0 Execution completed -2 * Loglike = 691.501519 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 728.226377 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.865782 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.874907 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.338561 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 711.351794 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.045977 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.863266 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 714.679880 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 735.064013 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.118533 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.076216 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.080916 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.989324 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.589400 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 731.710985 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.762961 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.873371 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.489089 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.954010 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 712.497790 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 728.720087 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.886702 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.065729 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.246273 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.862989 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 690.380566 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 719.003811 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 680.885554 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 715.347780 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.692506 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.131535 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 723.157399 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 714.123954 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 682.389727 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.640333 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.437682 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.072754 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.159759 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 727.814007 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.053062 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 713.453460 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 720.202850 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 681.764528 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 711.613258 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 690.155494 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 730.915304 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 715.902093 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 708.890473 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 679.406171 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 711.811912 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.639560 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 717.018671 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.631198 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.152017 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.786146 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 685.148348 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 731.861311 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 709.280611 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.561832 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.810066 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 713.633278 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 683.032810 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 683.121356 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.62 S.D. = 4.0582 S.E.M. = 0.057392 ECHO 0 Execution completed -2 * Loglike = 727.968477 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.463772 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.580641 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.150562 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 690.145256 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 687.210506 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 733.540306 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.300037 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 709.965674 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 709.819440 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 693.401786 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 693.769217 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 729.015625 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 689.654741 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.619044 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.576195 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 714.096477 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 684.355160 Actual update 4500 of 5000, Stored update 4500 of 5000 /nogui option ignored -2 * Loglike = 727.639853 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.089913 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.047172 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 708.982927 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 711.043310 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 687.522677 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.590444 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 729.139525 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 688.814291 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 711.531708 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.512444 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.648494 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 717.464944 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 728.142493 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 688.064629 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 714.756762 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.355679 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 682.293249 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 710.672375 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.463793 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 689.166071 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 708.803856 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.098511 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.571665 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.213362 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 712.823803 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.160592 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 680.552553 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 731.175252 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.545239 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 709.458619 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 679.929824 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.063370 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 729.642663 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 688.593576 Actual update 3800 of 5000, Stored update 3800 of 5000 ECHO 0 -2 * Loglike = 712.367296 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.953501 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.711780 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.597542 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 722.204219 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 696.402214 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.870768 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.257169 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.858134 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 716.280528 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 724.214370 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.473798 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 716.216491 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.549524 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 710.841170 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 726.144111 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.808796 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.853103 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.944276 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.757584 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 726.177185 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.373169 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.782183 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 721.132106 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 729.869258 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 707.320262 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.605695 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.475735 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.588803 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 714.398692 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 691.470662 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 708.321890 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 710.908323 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.832399 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.771285 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.169240 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 711.105276 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.133122 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 727.897380 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 690.489287 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 708.438827 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 718.008820 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 714.960484 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.971820 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 713.090359 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.758131 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 712.495143 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 692.015008 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 712.237300 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 707.483583 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.098537 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 716.762992 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 697.112485 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.051745 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 707.644286 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.450009 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.185454 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 693.553822 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.246546 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.108590 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.974118 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 696.171226 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 731.115638 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 727.30 S.D. = 4.2244 S.E.M. = 0.059741 ECHO 0 Execution completed -2 * Loglike = 679.617476 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 684.49 S.D. = 4.5466 S.E.M. = 0.064299 ECHO 0 Execution completed -2 * Loglike = 713.922215 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.620773 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 708.050138 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 689.629723 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 721.234220 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 691.830767 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.340024 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.29 S.D. = 4.7798 S.E.M. = 0.067597 ECHO 0 Execution completed -2 * Loglike = 716.024468 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.114665 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.102881 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.117935 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.44 S.D. = 2.4815 S.E.M. = 0.035094 ECHO 0 Execution completed -2 * Loglike = 713.110230 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 706.343862 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.065660 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.588949 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 689.521435 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 693.654395 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.860817 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 727.365507 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.124498 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 724.025842 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 688.571905 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 695.12 S.D. = 5.4762 S.E.M. = 0.077445 ECHO 0 Execution completed -2 * Loglike = 705.559849 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 711.48 S.D. = 4.7240 S.E.M. = 0.066808 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /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... Burning in for 50 iterations out of 500 -2 * Loglike = 711.221954 Burning in for 100 iterations out of 500 -2 * Loglike = 709.993287 Burning in for 150 iterations out of 500 ECHO 0 -2 * Loglike = 710.087321 Burning in for 200 iterations out of 500 -2 * Loglike = 711.292242 Burning in for 250 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.138828 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 711.591225 Burning in for 350 iterations out of 500 -2 * Loglike = 717.465326 Burning in for 400 iterations out of 500 -2 * Loglike = 715.057827 Burning in for 450 iterations out of 500 -2 * Loglike = 711.656141 Burning in for 500 iterations out of 500 -2 * Loglike = 713.653844 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 712.890720 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.808971 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.385218 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 717.307594 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.053541 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 725.905156 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 707.291480 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 721.085570 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.482978 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.959244 Actual update 550 of 5000, Stored update 550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 709.949909 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 711.572208 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.572938 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 708.059048 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.072444 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.633478 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.300962 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.923694 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.065937 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 716.829550 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 712.788610 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.435849 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.090473 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.045395 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 712.373592 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.166076 Actual update 1350 of 5000, Stored update 1350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 713.015643 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 720.391599 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 712.908036 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.595468 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 711.108109 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 718.590037 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 714.724918 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 715.490595 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 709.370120 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.889208 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 710.736759 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.594836 Actual update 1950 of 5000, Stored update 1950 of 5000 /nogui option ignored -2 * Loglike = 719.948163 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.031009 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.371672 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.793469 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 713.112138 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 711.255729 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 713.617325 Actual update 2300 of 5000, Stored update 2300 of 5000 ECHO 0 -2 * Loglike = 711.328649 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 724.960390 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.819627 Actual update 2450 of 5000, Stored update 2450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 713.436603 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.637745 Actual update 2550 of 5000, Stored update 2550 of 5000 /nogui option ignored -2 * Loglike = 718.543194 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 718.234928 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.090215 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 712.439586 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.019204 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 716.577927 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... Burning in for 50 iterations out of 500 ECHO 0 -2 * Loglike = 712.951758 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.770319 Burning in for 100 iterations out of 500 -2 * Loglike = 714.915423 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.366253 Burning in for 150 iterations out of 500 -2 * Loglike = 685.379581 Burning in for 200 iterations out of 500 -2 * Loglike = 714.490807 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 687.005703 Burning in for 250 iterations out of 500 -2 * Loglike = 716.448122 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.633925 Burning in for 300 iterations out of 500 -2 * Loglike = 711.706345 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.026894 Burning in for 350 iterations out of 500 -2 * Loglike = 710.282143 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.722528 Burning in for 400 iterations out of 500 -2 * Loglike = 714.002590 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.279510 Burning in for 450 iterations out of 500 -2 * Loglike = 689.972225 Burning in for 500 iterations out of 500 -2 * Loglike = 713.804749 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.473402 -2 * Loglike = 717.597765 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 = 721.658669 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 687.234490 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 692.338252 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.368817 Actual update 3400 of 5000, Stored update 3400 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 683.463190 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 713.229182 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 691.575088 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 725.667724 Burning in for 100 iterations out of 500 -2 * Loglike = 712.107402 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 685.932195 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 719.211490 Burning in for 150 iterations out of 500 -2 * Loglike = 714.999815 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.069516 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.911072 Burning in for 200 iterations out of 500 -2 * Loglike = 708.766315 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.743314 Actual update 400 of 5000, Stored update 400 of 5000 /nogui option ignored -2 * Loglike = 721.792230 Burning in for 250 iterations out of 500 -2 * Loglike = 709.143466 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.737481 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 724.203519 Burning in for 300 iterations out of 500 -2 * Loglike = 710.089128 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 683.525371 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.791190 Burning in for 350 iterations out of 500 -2 * Loglike = 719.338320 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 683.572738 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 726.833363 Burning in for 400 iterations out of 500 -2 * Loglike = 707.920737 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.108268 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.452801 Burning in for 450 iterations out of 500 -2 * Loglike = 718.041243 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 686.752277 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 725.642333 Burning in for 500 iterations out of 500 -2 * Loglike = 716.725468 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 688.464465 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.928867 -2 * Loglike = 722.407843 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.049219 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 716.268629 Actual update 4000 of 5000, Stored update 4000 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 = 692.015010 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.415991 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.740943 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.700135 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 713.031542 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.186340 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.927027 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 720.951500 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 717.649866 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 685.558281 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.670353 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.487439 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.649383 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 720.469495 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 709.914991 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 691.748505 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.617947 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 734.679351 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 689.337102 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.708256 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 687.659441 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 715.096065 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 688.860923 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 732.087432 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.216207 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.350957 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 717.677775 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.047586 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 685.952997 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 716.512045 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 718.062384 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.325005 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 690.649745 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 720.267364 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... /nogui option ignored Burning in for 50 iterations out of 500 -2 * Loglike = 686.104587 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 716.092883 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.555325 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 693.595192 Burning in for 100 iterations out of 500 -2 * Loglike = 694.949545 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 712.895704 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.447324 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 687.089483 Burning in for 150 iterations out of 500 -2 * Loglike = 720.580095 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 688.312298 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.213134 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 689.365125 Burning in for 200 iterations out of 500 -2 * Loglike = 710.631179 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 686.123498 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.250631 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.096858 Burning in for 250 iterations out of 500 -2 * Loglike = 712.659653 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.400663 Burning in for 300 iterations out of 500 -2 * Loglike = 685.649174 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 720.130942 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 717.636574 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.177731 Burning in for 350 iterations out of 500 -2 * Loglike = 693.766628 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 716.393691 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.551577 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.985259 Burning in for 400 iterations out of 500 -2 * Loglike = 687.255241 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.952572 Burning in for 450 iterations out of 500 -2 * Loglike = 712.727167 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.825113 Burning in for 500 iterations out of 500 -2 * Loglike = 689.630796 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.616421 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 712.582743 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.775255 ECHO 0 -2 * Loglike = 683.897115 Actual update 1800 of 5000, Stored update 1800 of 5000 ECHO 0 -2 * Loglike = 733.479934 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 = 683.277942 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 692.530988 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 728.619811 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 686.325256 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 724.160279 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 686.803351 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.319163 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 721.239215 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 685.670910 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 706.801624 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 723.225056 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 695.853643 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.437681 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 692.955349 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 723.483369 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 701.903734 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 688.682367 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 720.486384 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 685.419069 Actual update 400 of 5000, Stored update 400 of 5000 /nogui option ignored -2 * Loglike = 688.931549 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.020585 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.789172 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 688.391026 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 691.485083 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 723.978072 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 686.637341 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.945789 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 731.564337 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 688.781041 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.963534 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 721.449207 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 688.924331 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.425960 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 726.141841 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.155378 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 688.419819 Actual update 2450 of 5000, Stored update 2450 of 5000 ECHO 0 -2 * Loglike = 690.103638 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 687.802276 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.251399 Actual update 1600 of 5000, Stored update 1600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 685.214837 Actual update 750 of 5000, Stored update 750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.016679 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 691.820923 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 695.043592 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 736.181198 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.532763 Burning in for 100 iterations out of 500 ECHO 0 -2 * Loglike = 688.267216 Actual update 850 of 5000, Stored update 850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 691.073638 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.465973 Burning in for 150 iterations out of 500 -2 * Loglike = 721.105226 Actual update 1700 of 5000, Stored update 1700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 689.344054 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.843801 Burning in for 200 iterations out of 500 -2 * Loglike = 692.601373 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 723.693024 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.508683 Burning in for 100 iterations out of 500 /nogui option ignored -2 * Loglike = 687.670797 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.099939 Burning in for 250 iterations out of 500 -2 * Loglike = 681.945478 Burning in for 150 iterations out of 500 -2 * Loglike = 686.958990 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 718.153314 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.806376 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.569449 Burning in for 300 iterations out of 500 -2 * Loglike = 702.097089 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 683.092160 Burning in for 200 iterations out of 500 -2 * Loglike = 716.243336 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.282288 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 703.558568 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 696.303517 Burning in for 350 iterations out of 500 -2 * Loglike = 684.354163 Burning in for 250 iterations out of 500 -2 * Loglike = 719.993923 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 688.389824 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 691.380291 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.737630 Burning in for 400 iterations out of 500 -2 * Loglike = 685.945495 Burning in for 300 iterations out of 500 -2 * Loglike = 720.741945 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 690.467613 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.324537 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.969883 Burning in for 450 iterations out of 500 -2 * Loglike = 730.051196 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.136942 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.114520 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 714.12 S.D. = 4.0952 S.E.M. = 0.057915 ECHO 0 Execution completed -2 * Loglike = 683.072777 Burning in for 350 iterations out of 500 -2 * Loglike = 726.574805 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.569962 Burning in for 500 iterations out of 500 -2 * Loglike = 723.752704 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 688.274052 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.916452 Burning in for 400 iterations out of 500 -2 * Loglike = 690.914361 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.974600 -2 * Loglike = 721.523571 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 685.612674 Burning in for 450 iterations out of 500 -2 * Loglike = 686.555470 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 691.709816 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.693163 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 ECHO 0 -2 * Loglike = 685.564067 Burning in for 500 iterations out of 500 -2 * Loglike = 686.408899 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 688.412635 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 720.639499 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.238990 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 688.104082 -2 * Loglike = 697.783124 Actual update 100 of 5000, Stored update 100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 687.794253 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 698.865048 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.733333 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.981326 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.233650 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.554687 Actual update 1450 of 5000, Stored update 1450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 723.089360 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.764160 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.658288 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 692.162991 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 686.247255 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 721.649163 Actual update 2350 of 5000, Stored update 2350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 696.127772 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.601697 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.427233 Actual update 3350 of 5000, Stored update 3350 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 735.911796 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 687.510568 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.556722 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 686.545666 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 689.479706 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 720.114005 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 676.081856 Burning in for 100 iterations out of 500 -2 * Loglike = 680.717726 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 691.382716 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.503277 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 690.314807 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 685.125322 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 677.598937 Burning in for 150 iterations out of 500 -2 * Loglike = 688.268255 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.196599 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 720.892146 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 686.895136 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 678.067726 Burning in for 200 iterations out of 500 -2 * Loglike = 684.082168 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.014008 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.773655 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 690.559853 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 729.611661 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 681.986618 Burning in for 250 iterations out of 500 -2 * Loglike = 699.701878 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 686.432021 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.012542 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 679.104217 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 725.221831 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.569814 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 683.733152 Burning in for 300 iterations out of 500 -2 * Loglike = 684.564116 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 684.891012 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.619636 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 692.926315 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.783213 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.013585 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.149093 Burning in for 350 iterations out of 500 -2 * Loglike = 686.110559 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 682.982059 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 688.543125 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.270953 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.464958 Burning in for 400 iterations out of 500 -2 * Loglike = 722.006724 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.432595 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.007776 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 695.843851 Actual update 2000 of 5000, Stored update 2000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 684.633521 Burning in for 450 iterations out of 500 -2 * Loglike = 695.885995 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 721.076254 Actual update 2750 of 5000, Stored update 2750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 681.972230 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 726.187041 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 695.070209 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 682.297673 Burning in for 500 iterations out of 500 -2 * Loglike = 692.297507 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 684.702639 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 681.514437 -2 * Loglike = 681.086959 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.768840 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 729.040814 Burning in for 100 iterations out of 500 -2 * Loglike = 723.167277 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.070536 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.190695 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 692.759723 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 684.991267 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 = 724.172480 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 719.796637 Burning in for 150 iterations out of 500 -2 * Loglike = 694.028289 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.958104 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 688.801187 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 679.702899 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 679.161424 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 721.677762 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 722.683917 Burning in for 200 iterations out of 500 -2 * Loglike = 697.438544 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 686.864898 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 687.868012 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.524750 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.443517 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.955115 Burning in for 250 iterations out of 500 -2 * Loglike = 692.686574 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 694.739809 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 685.585150 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 687.812381 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 720.069169 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 681.611987 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 722.692788 Burning in for 300 iterations out of 500 -2 * Loglike = 702.837781 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 675.750785 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 690.857236 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 719.908644 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 685.048383 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 685.456339 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 735.864567 Burning in for 350 iterations out of 500 /nogui option ignored -2 * Loglike = 696.784784 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 682.860267 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.777358 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.511381 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 684.466232 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 677.799763 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 727.558562 Burning in for 400 iterations out of 500 -2 * Loglike = 696.447358 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 687.875269 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.908103 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 693.578585 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.144553 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 724.710554 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 722.784742 Burning in for 450 iterations out of 500 -2 * Loglike = 696.869769 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.256176 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 674.827366 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.401685 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.513091 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 725.614840 Burning in for 500 iterations out of 500 -2 * Loglike = 697.203378 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 686.730649 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 690.663868 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.011677 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 731.408306 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 685.438998 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.644154 -2 * Loglike = 696.632315 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.846176 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.000988 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 675.170048 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 721.570275 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 684.384242 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.579082 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.769290 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 ECHO 0 -2 * Loglike = 708.973646 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 676.123870 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 725.860963 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 726.204221 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 684.855109 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.442043 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 697.461170 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 697.632950 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 675.148751 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.495922 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.029308 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.852761 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.610005 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 698.441752 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 678.819804 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 689.562380 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 718.448611 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 723.906337 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.944095 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.458850 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.342526 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.673401 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 732.192292 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 718.839845 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.453348 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 691.063299 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.705760 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 674.868727 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 706.674138 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 734.066408 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 686.916867 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 719.437765 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.950836 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 693.593413 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 697.891306 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 681.770488 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 701.597037 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 734.786611 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 692.089424 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.805162 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.471235 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.670808 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 679.834716 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 685.079840 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 717.517220 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.150698 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 728.830724 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 691.325764 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 694.939977 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 679.522351 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.432176 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.244069 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 727.430356 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 717.373180 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 691.676966 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 680.092706 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.720617 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.464630 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.592048 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 724.656733 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 724.750004 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 691.469443 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.843855 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.205964 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 699.782075 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 687.442078 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.329648 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.912473 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 680.149611 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.139778 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 689.483259 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 697.546468 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.581046 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 687.558120 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 722.371906 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 729.939763 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.110754 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 684.625840 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.421848 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.580902 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 686.412789 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 720.975896 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 693.411434 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 726.024846 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 680.609384 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 680.698571 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 690.827040 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.377545 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.715335 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 680.569549 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.572524 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.640688 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 680.157157 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.946976 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 686.873509 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 718.050757 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 694.134080 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... -2 * Loglike = 682.255516 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 727.746707 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.595169 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 682.520744 Actual update 1900 of 5000, Stored update 1900 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 722.769531 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.978398 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 677.104201 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 719.266253 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 698.160647 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 682.473024 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 687.805234 Burning in for 100 iterations out of 500 -2 * Loglike = 730.020708 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.994459 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 726.767486 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 680.642557 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 690.801769 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 682.100308 Burning in for 150 iterations out of 500 -2 * Loglike = 694.500209 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.044613 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.663621 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.821341 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 676.494068 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.489683 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 685.824044 Burning in for 200 iterations out of 500 -2 * Loglike = 684.683929 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.785906 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.944070 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.134241 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 730.847331 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 691.111702 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 686.835156 Burning in for 250 iterations out of 500 -2 * Loglike = 680.690130 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.340465 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 699.425790 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 735.552814 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 681.013058 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.682381 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 684.819273 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 681.815318 Burning in for 300 iterations out of 500 -2 * Loglike = 723.989906 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 725.059754 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.765253 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 679.464506 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.367070 Burning in for 350 iterations out of 500 -2 * Loglike = 686.778668 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.339335 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 726.709882 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.644147 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 676.241820 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.125078 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 689.456085 Burning in for 400 iterations out of 500 -2 * Loglike = 723.346870 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.460975 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 729.005108 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 687.912332 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 683.968465 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.540404 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.166116 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.704153 Burning in for 450 iterations out of 500 -2 * Loglike = 724.217140 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 692.321506 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.293988 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 679.551252 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.650212 Burning in for 500 iterations out of 500 -2 * Loglike = 685.402583 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 704.698450 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 724.885216 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.519296 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 727.180203 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.995423 -2 * Loglike = 681.474196 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 728.748422 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.436975 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.586429 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.281545 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.237686 Actual update 4600 of 5000, Stored update 4600 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 675.496894 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 735.228184 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.522162 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 683.400522 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.247749 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 720.347530 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 676.386566 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 735.852547 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.870636 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 682.253125 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 735.647228 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 733.407762 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 691.383040 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.018727 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 689.824099 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 720.601718 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 679.063711 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 701.255375 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 699.983190 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.871357 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 735.770472 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.373055 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.673651 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.19 S.D. = 4.0118 S.E.M. = 0.056735 ECHO 0 Execution completed -2 * Loglike = 688.625969 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 679.344000 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.819511 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 693.242881 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 735.607509 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.495663 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 724.708863 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 683.500258 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.118221 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 698.461992 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.841098 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.121674 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 737.942604 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 724.874130 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 683.487230 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 685.149818 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.314522 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.681490 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.635202 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 733.441654 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 679.572168 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 722.082133 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.652885 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 684.435046 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.673538 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.742471 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 725.708637 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.054412 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 719.539101 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 711.458667 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 688.695777 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.128183 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 681.407659 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.279275 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 686.236682 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.083173 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.713637 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 686.788956 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.034641 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 718.347473 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 683.777599 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 678.972673 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.843995 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.798032 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 720.230219 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.296667 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 682.733785 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.263367 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 695.884831 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.235591 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 719.936327 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 683.855352 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 681.349802 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.336249 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.657523 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 679.569247 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 685.335117 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 698.071743 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 683.779907 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 689.465894 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 729.791943 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 683.085745 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.514489 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.843775 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 697.865660 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 678.931564 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 726.838465 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.750427 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.907563 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.756649 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 687.751398 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 681.056103 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.638919 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.572455 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 708.627084 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 680.072021 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 693.791121 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 683.298826 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.434232 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 689.561318 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 691.992223 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 684.668806 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 684.068469 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 720.898904 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.557992 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 693.401450 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.559252 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 688.486870 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 682.681071 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 720.937032 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 681.714635 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 702.377445 Actual update 4700 of 5000, Stored update 4700 of 5000 /nogui option ignored -2 * Loglike = 682.239659 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.547564 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 724.234660 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 688.659803 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.986624 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.434217 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 718.083354 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 723.63 S.D. = 4.3172 S.E.M. = 0.061054 ECHO 0 Execution completed -2 * Loglike = 725.887890 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 679.754087 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.308465 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 685.707706 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 688.369995 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.890078 Actual update 2800 of 5000, Stored update 2800 of 5000 /nogui option ignored -2 * Loglike = 706.977732 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 734.827261 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 687.658311 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 693.940045 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 693.263108 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.141135 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.532424 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 727.974189 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 684.843846 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 680.161262 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 692.071056 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.497002 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 682.930954 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 721.084045 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 680.227579 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 680.434381 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 690.431755 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 689.231546 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 698.296500 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 727.231599 Actual update 2550 of 5000, Stored update 2550 of 5000 ECHO 0 -2 * Loglike = 688.233792 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.031386 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 680.946390 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 684.239018 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.705875 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 740.510237 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.190147 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 729.135457 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 692.555042 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 681.228851 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 689.030871 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 678.940348 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.179097 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 689.379262 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.330242 Actual update 3650 of 5000, Stored update 3650 of 5000 ECHO 0 -2 * Loglike = 722.285485 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 678.504327 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.686598 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.811675 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 694.171359 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 694.507571 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.147840 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 694.534782 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.533373 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 690.938569 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 678.983613 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 692.752768 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 726.284400 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 693.527143 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.118916 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 679.157384 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.475143 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 723.245296 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 693.023731 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 688.018211 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 678.248860 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.147533 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 723.938489 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 693.180145 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 682.275806 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.397658 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 683.974355 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 727.733247 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.172290 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 683.945539 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.641286 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 693.926343 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 723.253701 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 691.608047 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 692.397346 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.946271 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 722.293039 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.624200 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 679.023308 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 681.303711 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.454487 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.383130 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 682.095448 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.500489 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.903072 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 679.750933 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 694.439461 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 724.646132 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 680.859140 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 724.677167 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 679.092315 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.507314 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 682.736788 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 683.813369 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 726.528763 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.197703 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.046619 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 689.371231 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 = 729.499413 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 675.522334 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 703.853628 Actual update 4150 of 5000, Stored update 4150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 686.028547 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.810701 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 678.264609 Actual update 3650 of 5000, Stored update 3650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 719.778585 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 683.085176 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 695.924490 Burning in for 100 iterations out of 500 -2 * Loglike = 681.419166 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 679.773909 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 685.875065 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 692.92 S.D. = 5.2897 S.E.M. = 0.074808 ECHO 0 Execution completed -2 * Loglike = 695.261402 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 693.024323 Burning in for 150 iterations out of 500 -2 * Loglike = 684.399876 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 725.087108 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 694.521380 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 685.565603 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.476034 Burning in for 200 iterations out of 500 -2 * Loglike = 689.731956 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 727.420361 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.657727 Burning in for 250 iterations out of 500 -2 * Loglike = 687.240357 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 679.031340 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.063176 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 724.239818 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 682.397664 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.497149 Burning in for 300 iterations out of 500 -2 * Loglike = 683.580468 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 682.923261 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 690.506308 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.618549 Burning in for 350 iterations out of 500 -2 * Loglike = 719.479040 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.006024 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 684.654817 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.315349 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 684.536094 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.835149 Burning in for 400 iterations out of 500 -2 * Loglike = 684.407254 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 723.183484 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 688.171605 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 689.205742 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 682.840800 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.247012 Burning in for 450 iterations out of 500 -2 * Loglike = 692.451901 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 721.900942 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.397431 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.413606 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.457366 Burning in for 500 iterations out of 500 -2 * Loglike = 730.693464 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.045225 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.631031 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.310407 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 691.885945 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.203524 -2 * Loglike = 717.045401 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.816857 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 703.594077 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 678.826890 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 724.484559 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.626438 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 688.529419 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 = 682.604962 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 740.391497 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.293170 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 678.508265 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 686.286966 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.905652 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.327611 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 737.433025 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 676.441930 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 694.482619 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.972896 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 724.010208 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 694.793125 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 686.549668 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.251953 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.159571 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.612701 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.084231 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.933272 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.031476 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.767055 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 688.084372 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.047987 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 722.983930 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.187180 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 689.292204 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.269211 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.504918 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.955912 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 728.852482 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 681.590156 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.457080 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.860197 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 683.652389 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 733.747533 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 684.970871 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.119520 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.528593 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 693.964276 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 720.037025 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 690.296116 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.208676 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.985769 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.249502 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 685.347472 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 682.248586 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 731.053023 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.881010 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.944103 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 683.333239 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 727.374423 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 683.014878 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 727.918580 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.067979 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 693.060700 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 680.099436 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.33 S.D. = 4.9073 S.E.M. = 0.069399 ECHO 0 Execution completed -2 * Loglike = 700.316182 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 730.271616 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.964887 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.221409 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 724.302204 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 680.833188 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 676.915661 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.092632 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 685.416143 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 679.656719 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 725.721688 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 683.342221 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 722.463307 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 690.296503 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.918995 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 688.131468 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.570970 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.287332 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.096008 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 689.702314 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.598837 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 737.390650 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 681.066477 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 692.619673 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 699.150922 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.232797 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.364149 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 720.938363 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.763220 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 725.334892 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 691.563542 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.368918 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 724.757976 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.938251 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.382895 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.714416 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 687.852741 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.731883 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 727.826798 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 696.021757 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 679.923096 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.133477 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.24 S.D. = 4.1209 S.E.M. = 0.058278 ECHO 0 Execution completed -2 * Loglike = 695.064252 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.288582 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.218228 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.661100 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.983896 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 700.677007 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.823603 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 685.879380 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.738763 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.026219 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.822461 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 698.842307 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.886542 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.877890 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.847989 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 680.027999 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.876228 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.797021 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.349467 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.495185 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 696.731105 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.201923 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.292800 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 683.320576 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 690.497716 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 676.687653 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 681.50 S.D. = 4.3704 S.E.M. = 0.061807 ECHO 0 Execution completed -2 * Loglike = 680.966783 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.299724 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 696.393269 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 732.086761 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 726.34 S.D. = 5.6275 S.E.M. = 0.079585 ECHO 0 Execution completed -2 * Loglike = 701.895495 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.081399 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 689.099431 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 692.059990 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.290229 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.908109 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.162257 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.979297 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.959552 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.966471 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 689.806807 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.288673 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.490625 Actual update 4700 of 5000, Stored update 4700 of 5000 /nogui option ignored -2 * Loglike = 702.164743 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 683.010446 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.346404 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.924806 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.581569 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.688999 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.032367 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.403675 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 690.675605 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 691.455952 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 699.123692 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.667789 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.157248 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.684256 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.855047 Actual update 2550 of 5000, Stored update 2550 of 5000 ECHO 0 -2 * Loglike = 706.568806 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.630412 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.435925 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.475925 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.735089 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 699.767277 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.263353 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.503588 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.065311 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.935884 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 680.192818 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 688.71 S.D. = 5.0595 S.E.M. = 0.071553 ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 693.552527 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.370525 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.303706 Actual update 3200 of 5000, Stored update 3200 of 5000 /nogui option ignored -2 * Loglike = 692.790794 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.032746 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.008253 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.225078 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.264390 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.311350 Actual update 3500 of 5000, Stored update 3500 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 702.719936 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 699.986775 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.599528 Actual update 3650 of 5000, Stored update 3650 of 5000 ECHO 0 -2 * Loglike = 697.056656 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.979471 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 694.961269 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.553770 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.819934 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 702.513204 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 698.745733 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.708070 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 691.820274 Actual update 4100 of 5000, Stored update 4100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 700.721244 Actual update 4150 of 5000, Stored update 4150 of 5000 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 701.477415 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 717.006810 Burning in for 100 iterations out of 500 -2 * Loglike = 691.536604 Actual update 4250 of 5000, Stored update 4250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.588438 Burning in for 150 iterations out of 500 -2 * Loglike = 703.590913 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.028196 Burning in for 200 iterations out of 500 -2 * Loglike = 698.939131 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 716.140384 Burning in for 250 iterations out of 500 -2 * Loglike = 698.090024 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.533979 Burning in for 300 iterations out of 500 -2 * Loglike = 718.972220 Burning in for 350 iterations out of 500 -2 * Loglike = 724.436229 Burning in for 400 iterations out of 500 -2 * Loglike = 704.208616 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.540049 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 717.097747 Burning in for 450 iterations out of 500 ECHO 0 -2 * Loglike = 700.531887 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.246880 Burning in for 500 iterations out of 500 -2 * Loglike = 704.586591 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.298227 -2 * Loglike = 695.863994 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.599860 Actual update 4700 of 5000, Stored update 4700 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 691.094360 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.919745 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 722.208780 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.378582 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 712.282894 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.579973 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 717.721085 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.022151 Actual update 4900 of 5000, Stored update 4900 of 5000 /nogui option ignored -2 * Loglike = 701.006851 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.511571 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.159149 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 731.113910 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 711.954891 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.789150 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 716.139361 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.154525 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.124089 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.099080 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.509858 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.793582 Actual update 750 of 5000, Stored update 750 of 5000 ECHO 0 -2 * Loglike = 721.641158 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 714.229313 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 718.491551 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 716.352853 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 724.411300 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 717.579839 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 720.724034 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 715.719710 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 718.383727 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 718.842692 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.071825 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 719.860396 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 715.226038 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.559062 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.46 S.D. = 3.8111 S.E.M. = 0.053897 ECHO 0 Execution completed -2 * Loglike = 727.307632 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.203580 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.048488 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.547605 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.754187 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 715.922407 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 716.301897 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.605055 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 715.918758 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.889385 Actual update 1900 of 5000, Stored update 1900 of 5000 ECHO 0 -2 * Loglike = 716.271908 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 727.883140 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 718.267302 Actual update 2050 of 5000, Stored update 2050 of 5000 /nogui option ignored -2 * Loglike = 714.515999 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 719.642340 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.908868 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.263493 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 718.102746 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.948332 Actual update 2350 of 5000, Stored update 2350 of 5000 ECHO 0 -2 * Loglike = 730.805400 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 715.129814 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.571293 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 715.531495 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.795971 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.468231 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 721.121179 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 717.436360 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 = 721.916833 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 722.299290 Actual update 2850 of 5000, Stored update 2850 of 5000 ECHO 0 -2 * Loglike = 716.041568 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 720.652243 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 715.690819 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.095405 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 717.220753 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.631505 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.232983 Actual update 3200 of 5000, Stored update 3200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.567529 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 720.118218 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 730.052585 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 714.214502 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 720.836654 Actual update 3450 of 5000, Stored update 3450 of 5000 /nogui option ignored -2 * Loglike = 716.933709 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.267371 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.492308 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.080252 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 = 713.756266 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 721.783538 Actual update 3750 of 5000, Stored update 3750 of 5000 ECHO 0 -2 * Loglike = 715.395049 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.381070 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 723.036847 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 726.447048 Actual update 3950 of 5000, Stored update 3950 of 5000 ECHO 0 -2 * Loglike = 723.647477 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.795636 Actual update 4050 of 5000, Stored update 4050 of 5000 /nogui option ignored -2 * Loglike = 715.933646 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 725.764218 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 715.124575 Actual update 4200 of 5000, Stored update 4200 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 713.994882 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 725.201027 Burning in for 100 iterations out of 500 -2 * Loglike = 717.815909 Burning in for 150 iterations out of 500 ECHO 0 -2 * Loglike = 723.285855 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.498257 Burning in for 200 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.719195 Burning in for 250 iterations out of 500 -2 * Loglike = 724.764236 Burning in for 300 iterations out of 500 -2 * Loglike = 714.758784 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 730.870321 Burning in for 350 iterations out of 500 -2 * Loglike = 732.672040 Burning in for 400 iterations out of 500 -2 * Loglike = 722.770632 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 721.009466 Burning in for 450 iterations out of 500 -2 * Loglike = 721.346454 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 724.516675 Burning in for 500 iterations out of 500 /nogui option ignored -2 * Loglike = 717.122752 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 720.104670 -2 * Loglike = 725.378675 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 = 720.409436 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 729.281300 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.814714 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 729.256500 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.669191 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 727.379115 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... Burning in for 50 iterations out of 500 -2 * Loglike = 714.000533 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 731.988840 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 681.968350 Burning in for 100 iterations out of 500 -2 * Loglike = 716.913900 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 726.018722 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 679.958950 Burning in for 150 iterations out of 500 -2 * Loglike = 719.596203 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 682.443632 Burning in for 200 iterations out of 500 -2 * Loglike = 730.986005 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 725.291151 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 679.711534 Burning in for 250 iterations out of 500 -2 * Loglike = 721.223633 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.525232 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 683.680676 Burning in for 300 iterations out of 500 -2 * Loglike = 684.684895 Burning in for 350 iterations out of 500 -2 * Loglike = 722.843907 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 723.442697 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 687.383915 Burning in for 400 iterations out of 500 -2 * Loglike = 722.691824 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 686.529838 Burning in for 450 iterations out of 500 -2 * Loglike = 717.422233 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 680.251492 Burning in for 500 iterations out of 500 -2 * Loglike = 725.383191 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 682.330557 -2 * Loglike = 719.530394 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 = 717.992522 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 686.161837 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 715.996674 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 686.977627 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 730.686727 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 725.582700 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.808886 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 732.532452 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 686.835052 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 717.400592 Actual update 950 of 5000, Stored update 950 of 5000 /nogui option ignored -2 * Loglike = 683.781302 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.490158 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 694.651779 Actual update 350 of 5000, Stored update 350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 728.375287 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 682.606745 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 675.675184 Burning in for 100 iterations out of 500 -2 * Loglike = 728.974983 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.881791 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 677.121172 Burning in for 150 iterations out of 500 -2 * Loglike = 719.314855 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 681.323167 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 677.576689 Burning in for 200 iterations out of 500 -2 * Loglike = 721.938684 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 679.650728 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.719721 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.52 S.D. = 4.1306 S.E.M. = 0.058415 ECHO 0 Execution completed -2 * Loglike = 679.294057 Burning in for 250 iterations out of 500 -2 * Loglike = 683.546403 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.197359 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 682.675582 Burning in for 300 iterations out of 500 ECHO 0 ECHO 0 -2 * Loglike = 680.924445 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 679.363207 Burning in for 350 iterations out of 500 -2 * Loglike = 719.426345 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.811597 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 685.598739 Burning in for 400 iterations out of 500 -2 * Loglike = 726.630094 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 678.443994 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 683.312808 Burning in for 450 iterations out of 500 -2 * Loglike = 727.255450 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 685.260917 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 680.421457 Burning in for 500 iterations out of 500 -2 * Loglike = 728.497227 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 682.645389 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 682.399174 -2 * Loglike = 727.708712 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.934932 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 727.621550 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 682.228020 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 = 689.212456 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 728.134670 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 678.852770 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 683.465728 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 730.359000 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.280928 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.813529 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 724.817368 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 675.584075 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... Burning in for 50 iterations out of 500 -2 * Loglike = 683.149704 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 680.328262 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 727.847310 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 733.008980 Burning in for 100 iterations out of 500 -2 * Loglike = 681.324420 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 678.069613 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 726.292341 Burning in for 150 iterations out of 500 -2 * Loglike = 682.882487 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 718.088509 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.912221 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 681.246037 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 723.364592 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 674.383842 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 731.288916 Burning in for 200 iterations out of 500 -2 * Loglike = 683.349252 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.238425 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 729.855957 Burning in for 250 iterations out of 500 -2 * Loglike = 683.148952 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 675.158857 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 728.124298 Burning in for 300 iterations out of 500 -2 * Loglike = 684.090891 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 729.400983 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 675.843139 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 734.644650 Burning in for 350 iterations out of 500 -2 * Loglike = 687.261948 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 736.976158 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.390791 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 675.178663 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 682.576253 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 736.450003 Burning in for 450 iterations out of 500 -2 * Loglike = 723.434021 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 677.935410 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 683.074086 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 731.347851 Burning in for 500 iterations out of 500 -2 * Loglike = 685.696124 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.757970 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 727.467267 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.699244 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 732.770530 -2 * Loglike = 723.682240 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 674.608602 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 686.934360 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 723.203505 Actual update 2150 of 5000, Stored update 2150 of 5000 /nogui option ignored -2 * Loglike = 681.268951 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 = 678.491247 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 719.232248 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 679.123562 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 734.183586 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 680.085574 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 719.108938 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 679.444783 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 736.424943 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 684.935514 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 730.358002 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 680.472522 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 733.164239 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 682.027692 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.325918 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 727.057800 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 737.004033 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 681.612176 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 680.692289 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.313091 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 734.134968 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 680.389188 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 684.951329 Actual update 2050 of 5000, Stored update 2050 of 5000 ECHO 0 -2 * Loglike = 741.427637 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 729.495543 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 680.308484 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 680.616472 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 729.981583 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 680.127070 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 727.033615 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 681.834301 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 734.016850 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.159561 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.698692 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 732.501988 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 720.195862 Actual update 2550 of 5000, Stored update 2550 of 5000 ECHO 0 -2 * Loglike = 677.365418 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 683.867129 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 726.526018 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 734.236418 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.407590 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 685.578434 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 731.027644 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 729.693114 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 680.478891 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 678.602953 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 728.551576 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 723.112172 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 692.610750 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 683.493413 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 733.114825 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 680.872003 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.922081 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 684.477293 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 676.424119 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 724.574185 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 684.917650 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 677.327274 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 735.322020 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 723.553078 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 684.184242 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.126976 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 721.877254 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 684.739862 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 731.366159 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 689.249229 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.401540 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 721.394448 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 737.180060 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.377381 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 675.267737 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 723.974901 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 729.481492 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 675.276642 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 681.731870 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 726.386986 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 738.262460 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 678.669526 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.757129 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 733.482470 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.045787 Actual update 3050 of 5000, Stored update 3050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 687.666372 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 678.763095 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 733.126928 Actual update 1100 of 5000, Stored update 1100 of 5000 Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 719.382974 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.062153 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 730.001433 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.791053 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.669136 Burning in for 100 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 722.796393 Actual update 3150 of 5000, Stored update 3150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 683.199795 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 729.802839 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.521066 Burning in for 150 iterations out of 500 -2 * Loglike = 681.259560 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 720.106993 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 729.443961 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 733.190568 Burning in for 100 iterations out of 500 -2 * Loglike = 685.636082 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 676.827040 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.255116 Burning in for 200 iterations out of 500 -2 * Loglike = 719.373135 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 727.759661 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.308272 Burning in for 250 iterations out of 500 -2 * Loglike = 680.887298 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 727.733066 Burning in for 150 iterations out of 500 -2 * Loglike = 684.076965 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.120511 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 724.187424 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.048610 Burning in for 300 iterations out of 500 -2 * Loglike = 683.541351 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 732.927973 Burning in for 200 iterations out of 500 -2 * Loglike = 683.288764 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 733.352585 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 731.914745 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.543466 Burning in for 350 iterations out of 500 -2 * Loglike = 680.570532 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 731.613054 Burning in for 250 iterations out of 500 -2 * Loglike = 734.125927 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 719.243632 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 679.273137 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 709.707205 Burning in for 400 iterations out of 500 -2 * Loglike = 680.399624 Actual update 2300 of 5000, Stored update 2300 of 5000 ECHO 0 -2 * Loglike = 722.488727 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 731.893072 Burning in for 300 iterations out of 500 -2 * Loglike = 734.324405 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 708.234139 Burning in for 450 iterations out of 500 -2 * Loglike = 682.730270 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 676.230955 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 722.752468 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 732.718207 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 735.077059 Burning in for 350 iterations out of 500 -2 * Loglike = 688.904923 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.748079 Burning in for 500 iterations out of 500 -2 * Loglike = 682.376194 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 733.363177 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 737.273147 Burning in for 400 iterations out of 500 -2 * Loglike = 678.491392 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 722.009159 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.587371 -2 * Loglike = 735.694219 Burning in for 450 iterations out of 500 -2 * Loglike = 682.551882 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 736.612191 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 734.026051 Burning in for 500 iterations out of 500 -2 * Loglike = 679.759758 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 728.290804 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.831752 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 = 732.904433 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 735.289356 -2 * Loglike = 685.259499 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.520038 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 729.273652 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 685.811403 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 736.835954 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 683.353485 Actual update 2600 of 5000, Stored update 2600 of 5000 /nogui option ignored -2 * Loglike = 681.854717 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.855870 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 719.203504 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 = 725.889364 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 678.992469 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 682.040601 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.906726 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 731.818312 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 680.995782 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 730.159115 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.350400 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 705.746366 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 733.910169 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.275005 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 736.747413 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.146601 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.350073 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.280932 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 728.221681 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 684.745694 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 736.175356 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.702479 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 717.986520 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 720.193992 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 730.497072 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 685.301801 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 732.562654 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 680.084169 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 698.746639 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 733.273991 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 679.309418 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 736.398597 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 681.844555 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 735.260672 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 730.383164 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 717.827599 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.390960 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 690.949811 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 734.023404 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 725.804523 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 729.647965 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 699.056393 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.163727 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 680.777572 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 743.536253 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 717.770193 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 726.703732 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 680.815050 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.035767 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 683.926804 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 729.812269 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.615885 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 729.337132 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 678.715430 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.452891 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 688.567061 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 678.525766 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 727.873551 Actual update 4150 of 5000, Stored update 4150 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 733.374121 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 726.547747 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 702.619655 Actual update 650 of 5000, Stored update 650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 679.017887 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 729.488660 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 684.981799 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 732.521237 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 735.452299 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 706.418146 Burning in for 100 iterations out of 500 -2 * Loglike = 678.954609 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.079003 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.439971 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 682.824457 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 728.893488 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 730.934223 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 684.494305 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.111809 Burning in for 150 iterations out of 500 -2 * Loglike = 699.017340 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 731.087157 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 682.652457 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 732.442457 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.646824 Burning in for 200 iterations out of 500 -2 * Loglike = 733.385739 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.549578 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 690.431592 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.146790 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.200674 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 728.315243 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.310238 Burning in for 250 iterations out of 500 -2 * Loglike = 734.797118 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 727.203513 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 687.029135 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 677.901774 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.207309 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 732.945724 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.574100 Burning in for 300 iterations out of 500 -2 * Loglike = 733.834090 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.105039 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 731.736569 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.807622 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 682.631258 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 725.123990 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 705.162018 Burning in for 350 iterations out of 500 -2 * Loglike = 733.682381 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.892424 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 678.695131 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.593022 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 734.844474 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.451225 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.278202 Burning in for 400 iterations out of 500 -2 * Loglike = 739.145287 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 724.115795 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 686.597790 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.854277 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.211450 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 732.340044 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.426816 Burning in for 450 iterations out of 500 -2 * Loglike = 729.607063 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 732.882548 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 675.079608 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.787011 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.455189 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.054215 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.721396 Burning in for 500 iterations out of 500 -2 * Loglike = 719.742357 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 676.656719 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 727.377618 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 684.855306 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.099186 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 732.907170 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 707.354621 -2 * Loglike = 725.969236 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 677.628857 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 725.991170 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.594753 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.338481 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.239423 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 738.288272 Actual update 1000 of 5000, Stored update 1000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 684.598023 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 736.613827 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 = 718.984621 Actual update 4800 of 5000, Stored update 4800 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 683.988122 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.697489 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 732.802406 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.204097 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 728.776598 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 703.453661 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 725.163868 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 702.385858 Burning in for 100 iterations out of 500 -2 * Loglike = 705.869988 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 685.742784 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 733.151107 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 735.277973 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.652235 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 709.052024 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.623753 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.065302 Burning in for 150 iterations out of 500 -2 * Loglike = 701.631981 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 687.117670 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 731.114505 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 733.174799 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.628645 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.933861 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 725.226545 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.362426 Burning in for 200 iterations out of 500 -2 * Loglike = 705.361703 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 731.296209 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 730.021917 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.754012 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 685.427825 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.799938 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.317419 Burning in for 250 iterations out of 500 -2 * Loglike = 721.216816 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.341423 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.485050 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.403463 Burning in for 300 iterations out of 500 -2 * Loglike = 732.178110 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.475950 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 686.290796 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 683.889549 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 715.292675 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 726.807784 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.455388 Burning in for 350 iterations out of 500 -2 * Loglike = 725.532880 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.697312 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.696440 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 682.635241 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.024752 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.907341 Burning in for 400 iterations out of 500 -2 * Loglike = 733.207680 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 728.591629 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 682.274347 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 698.913251 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 678.859508 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.148265 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.145705 Burning in for 450 iterations out of 500 -2 * Loglike = 732.571152 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.780021 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 701.496179 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 729.708311 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 688.406462 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 704.506259 Burning in for 500 iterations out of 500 -2 * Loglike = 683.793661 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.173005 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 733.684416 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.824203 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 677.873922 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 687.857333 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 706.160881 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored -2 * Loglike = 735.029058 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 702.337630 -2 * Loglike = 734.939004 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.448236 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 676.070980 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 683.834836 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 734.330506 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 704.611408 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 732.109139 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 701.656164 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 683.009840 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 731.657106 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 689.032906 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 /nogui option ignored -2 * Loglike = 699.696574 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 732.839832 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 700.591316 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 730.342053 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 679.635883 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.326109 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 699.370697 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 735.586338 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 733.659086 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 701.915586 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 683.779514 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.692199 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 702.500140 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 732.206387 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 731.102247 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.259536 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.784860 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.284748 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 703.059212 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 731.138073 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 679.861711 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.932034 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.327777 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 732.670485 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.792267 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 736.167368 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 706.698015 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 687.937766 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.893667 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 734.131671 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.638197 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.429522 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 724.962333 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 684.850248 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 733.661385 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.800737 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.825593 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 705.508040 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 731.343186 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 680.929073 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 741.108760 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.836385 Actual update 950 of 5000, Stored update 950 of 5000 ECHO 0 -2 * Loglike = 721.295372 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 725.36 S.D. = 4.5439 S.E.M. = 0.064260 ECHO 0 Execution completed -2 * Loglike = 695.940121 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 706.478282 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 734.053526 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 726.769969 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.407669 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.137467 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.583441 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 683.928343 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 730.408648 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 730.945553 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 709.445293 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.567151 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.672674 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 738.432097 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 737.512687 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 676.759650 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 707.915938 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.489935 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.180339 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 734.972908 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 733.496779 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 679.757772 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.670151 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 700.823721 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.050146 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.216494 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 729.202648 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.446259 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.675321 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.669936 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 682.315699 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 683.73 S.D. = 2.7319 S.E.M. = 0.038635 ECHO 0 Execution completed -2 * Loglike = 702.773988 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 729.466451 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 729.178623 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.724948 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 698.753495 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.976924 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 732.032634 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 703.985055 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.865299 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 681.854854 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.430510 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 702.309948 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 731.684013 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 683.697328 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 734.194017 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.892767 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.222009 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.166425 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 734.878368 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 733.164192 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 708.657751 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.387305 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.703188 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 730.636048 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 725.027843 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.761584 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.954525 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 717.785992 Actual update 1450 of 5000, Stored update 1450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 731.844541 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 736.305692 Actual update 4300 of 5000, Stored update 4300 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 699.000356 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.334092 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.267204 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 733.943489 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 733.935403 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.309387 Burning in for 100 iterations out of 500 -2 * Loglike = 710.649222 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.692260 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.384556 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 = 733.191044 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 732.394416 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.579091 Burning in for 150 iterations out of 500 -2 * Loglike = 700.237884 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.973707 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 704.564972 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 731.182649 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.851678 Burning in for 200 iterations out of 500 -2 * Loglike = 736.477290 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.305466 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 738.666571 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.050322 Burning in for 250 iterations out of 500 -2 * Loglike = 709.549562 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 708.821636 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 730.477976 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 699.264614 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 732.144618 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.916057 Burning in for 300 iterations out of 500 -2 * Loglike = 704.251957 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.459572 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 732.954810 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.673284 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 702.886807 Burning in for 350 iterations out of 500 -2 * Loglike = 730.165910 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.918820 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.383544 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 701.534248 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 735.787284 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 707.971367 Burning in for 400 iterations out of 500 -2 * Loglike = 728.487960 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.567380 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 696.713304 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.154600 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 702.814149 Burning in for 450 iterations out of 500 -2 * Loglike = 736.370671 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.701051 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.340407 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 731.233515 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 703.514973 Burning in for 500 iterations out of 500 -2 * Loglike = 702.340065 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.441400 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 736.529046 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.773287 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 733.975176 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.047993 -2 * Loglike = 711.547297 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.840416 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 733.086471 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 734.654618 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 703.249719 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 = 702.730751 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 713.539798 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 731.284842 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 714.221435 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 727.021390 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.148336 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 703.398278 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.435738 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.406202 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 728.857923 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 729.596152 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 675.712426 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 680.89 S.D. = 4.1101 S.E.M. = 0.058126 ECHO 0 Execution completed -2 * Loglike = 703.282046 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.565125 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 727.620599 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 701.594399 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 736.008343 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.522544 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.655873 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.793238 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 732.430325 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.875664 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 733.999527 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 696.696328 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 715.315666 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 704.749855 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 729.340977 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.473958 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 732.416856 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 702.450505 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.619703 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 703.431873 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 732.800767 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.102398 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.075595 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.118002 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.876987 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 735.386302 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.793990 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.400589 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.298668 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 703.118979 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 735.231169 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 694.910849 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.821658 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 701.182091 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 730.114886 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 707.695571 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.124296 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.289018 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 719.036159 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 736.866568 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.134832 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.751267 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.576136 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.230680 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.577622 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 731.207743 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.286896 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.231176 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.117077 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 699.215445 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 733.273711 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.706483 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.389985 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.501140 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.884833 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 732.118736 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.949402 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 709.512922 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 710.220092 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 700.106952 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 733.716159 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.933639 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 701.467535 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 703.081597 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 731.316908 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.406583 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.865216 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.092948 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.329816 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 740.098687 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.877437 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.054851 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 699.415241 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 709.047852 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.070133 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.958352 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.184829 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 730.984973 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.581745 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 709.973455 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.833912 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 731.683135 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.109626 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 709.573556 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.303612 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 708.275648 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 738.053868 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.728372 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 710.922386 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.955570 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 734.376377 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 703.076075 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.230562 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.812765 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.885252 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 731.940564 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.456887 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.656082 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 731.480211 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.259277 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.900817 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.843996 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.302853 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.820892 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 731.576698 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 732.56 S.D. = 3.4645 S.E.M. = 0.048996 ECHO 0 Execution completed -2 * Loglike = 729.708870 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.493191 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.168000 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 734.919576 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.438634 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.095985 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 703.236584 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 734.084455 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 719.188769 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.487120 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.738762 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.317904 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 725.498785 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.748789 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.794929 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.643523 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.629075 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 735.913552 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.656498 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 708.316931 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 731.555641 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.768000 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.543952 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.326451 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 710.895215 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 731.681328 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.240439 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.678812 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.825478 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.742211 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 736.353406 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.673201 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.697122 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.058352 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 733.374305 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 710.654012 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 701.351243 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.561758 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 735.851756 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.045913 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.064774 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 736.772318 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.425262 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.600952 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 729.930946 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.962073 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.454163 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 703.255506 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 734.434797 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.812548 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.566964 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 732.508239 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.542027 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.996601 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 701.336089 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.239479 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.626785 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.353098 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 727.907508 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 699.886011 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.727826 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 727.689363 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.794830 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.472340 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.405722 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.496913 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.736401 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 737.475340 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 706.689691 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 708.687032 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.294140 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 733.454909 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 698.758112 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 711.231979 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.601786 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 732.335865 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.465058 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.480762 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 701.623485 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 698.101249 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.432999 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 702.904235 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.864743 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 702.270426 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 705.421387 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 708.905138 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.684518 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.053292 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.016038 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.198433 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.753308 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 710.514308 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.132307 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 699.263442 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.534765 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 700.113066 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 703.690202 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.218271 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 712.869676 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.176685 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 703.313829 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.051302 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.291982 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.456156 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 700.858349 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.675425 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.532063 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.879172 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.808699 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 699.416654 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.124022 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 702.092879 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.832093 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.679644 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 700.583317 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 704.601720 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.221783 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.075694 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.267339 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.253572 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.048182 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.774620 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.651913 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 702.048192 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 705.045505 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.568528 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 703.153047 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.284718 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.307240 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.133594 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 704.357366 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.984915 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.434689 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 701.370468 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.767563 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 701.620308 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 730.940450 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 732.98 S.D. = 2.9412 S.E.M. = 0.041595 ECHO 0 Execution completed -2 * Loglike = 703.821476 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.364405 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.15 S.D. = 4.0064 S.E.M. = 0.056659 ECHO 0 Execution completed -2 * Loglike = 707.035415 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 703.683434 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 705.478004 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 698.615654 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.529067 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 709.391804 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 695.893030 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.094671 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.786061 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.371058 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.185461 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 709.361517 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.537685 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.513549 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.246478 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.342827 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.568680 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.028981 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 705.389100 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.395612 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.583467 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.390045 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.743991 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.016904 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 699.011691 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.929071 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.771893 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.677228 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.298288 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.608767 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.549330 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.226618 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.886419 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.849683 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.229941 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 700.909523 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 700.453669 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.898380 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 708.830466 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 699.976983 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.990257 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.489318 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.102930 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.013763 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.65 S.D. = 4.2943 S.E.M. = 0.060730 ECHO 0 Execution completed -2 * Loglike = 701.484162 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.996097 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.117704 Actual update 4100 of 5000, Stored update 4100 of 5000 /nogui option ignored -2 * Loglike = 702.946217 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.457329 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.621794 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 696.419393 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.77 S.D. = 5.5872 S.E.M. = 0.079015 ECHO 0 Execution completed -2 * Loglike = 704.167994 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.913919 Actual update 4350 of 5000, Stored update 4350 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 708.935085 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.473359 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.359355 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.209272 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 704.202295 Actual update 4600 of 5000, Stored update 4600 of 5000 ECHO 0 -2 * Loglike = 701.308233 Actual update 4650 of 5000, Stored update 4650 of 5000 ECHO 0 -2 * Loglike = 703.884061 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.880414 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.602387 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.816715 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.424447 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.104237 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.519192 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 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 713.841614 Burning in for 100 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 714.377272 Burning in for 150 iterations out of 500 -2 * Loglike = 714.308686 Burning in for 200 iterations out of 500 -2 * Loglike = 716.176679 Burning in for 250 iterations out of 500 ECHO 0 -2 * Loglike = 719.638640 Burning in for 300 iterations out of 500 -2 * Loglike = 717.076652 Burning in for 350 iterations out of 500 -2 * Loglike = 721.731188 Burning in for 400 iterations out of 500 -2 * Loglike = 719.966507 Burning in for 450 iterations out of 500 -2 * Loglike = 702.919935 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.66 S.D. = 2.1874 S.E.M. = 0.030934 ECHO 0 Execution completed -2 * Loglike = 716.739929 Burning in for 500 iterations out of 500 -2 * Loglike = 717.719061 ERAS G30 LINK 0 G30 ERAS 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.247181 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 722.768905 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 712.573796 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.996799 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 715.009988 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 730.161220 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 /nogui option ignored -2 * Loglike = 711.654135 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 726.759040 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.858326 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.412294 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.295400 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.898566 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 718.111534 Actual update 700 of 5000, Stored update 700 of 5000 ECHO 0 -2 * Loglike = 712.206066 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 721.038471 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.553873 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 717.123355 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 713.873734 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 730.610412 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 719.978359 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 717.360656 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.954109 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 717.445294 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 719.664318 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.777860 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 719.541710 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 715.584674 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 722.811615 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 717.489243 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 716.459775 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 714.530938 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 721.842338 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.979084 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.529126 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 713.231502 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 712.605359 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.236462 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.296397 Actual update 1950 of 5000, Stored update 1950 of 5000 ECHO 0 -2 * Loglike = 724.335698 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.606232 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.036597 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.125038 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 718.283531 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 715.484900 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 717.700490 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 714.956378 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 728.965920 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 718.975902 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.744977 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 723.822985 Actual update 2550 of 5000, Stored update 2550 of 5000 /nogui option ignored -2 * Loglike = 721.925669 Actual update 2600 of 5000, Stored update 2600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 722.106027 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 718.134900 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 716.753737 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 = 721.566924 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 721.156437 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.141822 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 719.090541 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.271152 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 718.584731 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.824574 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 714.975502 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 717.185655 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.538903 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 721.460776 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 727.492226 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.071715 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 717.986877 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 715.841184 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 719.661297 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.886643 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.655373 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 714.890500 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 723.410451 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.255109 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.909953 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 720.977771 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 727.134830 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.052276 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 714.429846 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.783245 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 725.529116 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 715.683916 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 714.062159 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 722.254602 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 718.840990 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.145370 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.655078 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.398488 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.250622 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 721.110684 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 720.337191 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 722.598448 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 714.500373 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.980377 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 722.111886 Actual update 4850 of 5000, Stored update 4850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 721.489121 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 717.444050 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 715.839267 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored ECHO 0 /nogui option ignored /nogui option ignored ECHO 0 -2 * Loglike = 713.615230 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 718.31 S.D. = 4.0654 S.E.M. = 0.057493 ECHO 0 Execution completed ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 699.680289 Burning in for 100 iterations out of 500 -2 * Loglike = 696.405035 Burning in for 150 iterations out of 500 -2 * Loglike = 696.117622 Burning in for 200 iterations out of 500 -2 * Loglike = 697.937762 Burning in for 250 iterations out of 500 -2 * Loglike = 704.359229 Burning in for 300 iterations out of 500 -2 * Loglike = 700.975874 Burning in for 350 iterations out of 500 -2 * Loglike = 704.174322 Burning in for 400 iterations out of 500 -2 * Loglike = 700.440294 Burning in for 450 iterations out of 500 /nogui option ignored ECHO 0 -2 * Loglike = 703.311276 Burning in for 500 iterations out of 500 -2 * Loglike = 701.099225 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 698.577165 Actual update 100 of 5000, Stored update 100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 702.824715 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 737.331523 Burning in for 100 iterations out of 500 -2 * Loglike = 694.266001 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 727.951338 Burning in for 150 iterations out of 500 -2 * Loglike = 702.344943 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 730.767880 Burning in for 200 iterations out of 500 ECHO 0 -2 * Loglike = 697.143897 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 732.919464 Burning in for 250 iterations out of 500 -2 * Loglike = 711.881782 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 733.283642 Burning in for 300 iterations out of 500 -2 * Loglike = 694.039354 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 741.227337 Burning in for 350 iterations out of 500 -2 * Loglike = 704.927047 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 738.164520 Burning in for 400 iterations out of 500 -2 * Loglike = 729.617518 Burning in for 450 iterations out of 500 -2 * Loglike = 697.638222 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 734.977382 Burning in for 500 iterations out of 500 -2 * Loglike = 694.824811 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 733.630010 -2 * Loglike = 695.764571 Actual update 600 of 5000, Stored update 600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ERAS G30 LINK 0 G30 ERAS 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.384372 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 743.027069 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 696.957053 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 742.011422 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.013690 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 738.703854 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 704.277267 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 742.694898 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.026253 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 741.381825 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 700.182423 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 745.149530 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 697.007003 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 726.642523 Actual update 400 of 5000, Stored update 400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 710.509135 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 738.878681 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 684.562648 Burning in for 100 iterations out of 500 -2 * Loglike = 736.555751 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.511597 Burning in for 150 iterations out of 500 -2 * Loglike = 704.236793 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 727.872067 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 702.060724 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 680.296398 Burning in for 200 iterations out of 500 -2 * Loglike = 734.828944 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.900841 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 683.119963 Burning in for 250 iterations out of 500 -2 * Loglike = 726.671417 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.429889 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.189059 Burning in for 300 iterations out of 500 /nogui option ignored -2 * Loglike = 727.449041 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.235668 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 700.606629 Burning in for 350 iterations out of 500 -2 * Loglike = 725.782622 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.754141 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.162035 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 688.232350 Burning in for 400 iterations out of 500 -2 * Loglike = 702.552392 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.575407 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 686.179893 Burning in for 450 iterations out of 500 -2 * Loglike = 697.087164 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 734.220925 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 687.184380 Burning in for 500 iterations out of 500 -2 * Loglike = 706.105525 Actual update 1450 of 5000, Stored update 1450 of 5000 /nogui option ignored -2 * Loglike = 685.923540 -2 * Loglike = 730.225158 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.686923 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 736.069134 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 696.189998 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 = 735.922014 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.310529 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 682.762619 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 740.631277 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.655203 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.233329 Actual update 150 of 5000, Stored update 150 of 5000 ECHO 0 -2 * Loglike = 729.559990 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 678.468239 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.222315 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 731.581790 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 689.733990 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 699.702225 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 681.038953 Actual update 300 of 5000, Stored update 300 of 5000 ECHO 0 -2 * Loglike = 731.463679 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.785120 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.636174 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 731.906423 Actual update 1300 of 5000, Stored update 1300 of 5000 /nogui option ignored -2 * Loglike = 694.731309 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 679.113380 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 697.635692 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 691.405962 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 742.620861 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.298292 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 738.977869 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 684.338510 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.982483 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 739.895613 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 679.878236 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 739.933984 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.864148 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.993031 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 738.593282 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 681.664223 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.266769 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 687.171065 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 678.079698 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.922335 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 700.529304 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 685.490774 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 739.468086 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 698.678369 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.236822 Actual update 900 of 5000, Stored update 900 of 5000 ECHO 0 -2 * Loglike = 740.139639 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.465088 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 682.130801 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 737.901095 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 700.135463 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 696.799817 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.487841 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 741.839435 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.025469 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 715.125444 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.156891 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 686.299045 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 697.217010 Actual update 2450 of 5000, Stored update 2450 of 5000 Burning in for 50 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 733.444724 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 682.391571 Actual update 1150 of 5000, Stored update 1150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 697.297844 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.457273 Burning in for 100 iterations out of 500 -2 * Loglike = 727.911942 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.976861 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 706.799239 Burning in for 100 iterations out of 500 -2 * Loglike = 684.591042 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 703.811569 Burning in for 150 iterations out of 500 -2 * Loglike = 728.620235 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.793698 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.116223 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 699.084470 Burning in for 150 iterations out of 500 -2 * Loglike = 704.047475 Burning in for 200 iterations out of 500 -2 * Loglike = 742.992243 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.231081 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 679.962135 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.778944 Burning in for 200 iterations out of 500 -2 * Loglike = 706.666642 Burning in for 250 iterations out of 500 -2 * Loglike = 730.921897 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.297489 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.471439 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.033113 Burning in for 250 iterations out of 500 -2 * Loglike = 710.671492 Burning in for 300 iterations out of 500 -2 * Loglike = 728.111687 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.931784 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 696.168143 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 706.447557 Burning in for 300 iterations out of 500 -2 * Loglike = 732.820015 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.418740 Burning in for 350 iterations out of 500 -2 * Loglike = 698.540044 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 703.968294 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.232578 Burning in for 350 iterations out of 500 -2 * Loglike = 713.443836 Burning in for 400 iterations out of 500 -2 * Loglike = 732.405361 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.618675 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 699.817435 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 706.408134 Burning in for 450 iterations out of 500 -2 * Loglike = 715.673484 Burning in for 400 iterations out of 500 ECHO 0 -2 * Loglike = 697.220282 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 735.693464 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.445753 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 709.506977 Burning in for 500 iterations out of 500 -2 * Loglike = 681.145455 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.183621 Burning in for 450 iterations out of 500 -2 * Loglike = 741.169309 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.398464 -2 * Loglike = 692.765587 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 702.408590 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.505973 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 = 680.610569 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 734.673580 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.549982 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 701.516648 -2 * Loglike = 706.206913 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 691.388842 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 738.934861 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.931534 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 739.729581 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.690072 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 678.688061 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 697.774831 Actual update 3100 of 5000, Stored update 3100 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 736.578433 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... -2 * Loglike = 701.891947 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 679.111432 Actual update 1850 of 5000, Stored update 1850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 728.968148 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.203533 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 704.086877 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 706.477027 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.370753 Burning in for 100 iterations out of 500 -2 * Loglike = 682.712184 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 745.007616 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 698.759429 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 710.153615 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 705.341930 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.931950 Burning in for 150 iterations out of 500 -2 * Loglike = 737.435393 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 683.161828 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.728144 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 709.514732 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.986248 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.230933 Burning in for 200 iterations out of 500 -2 * Loglike = 733.976685 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.251415 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.591194 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.211529 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 698.628452 Burning in for 250 iterations out of 500 -2 * Loglike = 732.461700 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.887184 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 688.311017 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.468374 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 710.884094 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 698.638662 Burning in for 300 iterations out of 500 -2 * Loglike = 685.833848 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.839208 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 732.210696 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 682.958813 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 738.094766 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.006465 Burning in for 350 iterations out of 500 -2 * Loglike = 697.337717 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.701906 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.766775 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 683.129449 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 730.063432 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.119905 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 702.186602 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.578374 Burning in for 400 iterations out of 500 -2 * Loglike = 703.587793 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 682.480228 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 734.431768 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.500985 Actual update 3450 of 5000, Stored update 3450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 699.508483 Burning in for 450 iterations out of 500 -2 * Loglike = 702.077129 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 684.688597 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 702.621499 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 737.936292 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 697.714737 Burning in for 500 iterations out of 500 -2 * Loglike = 711.451988 Burning in for 100 iterations out of 500 -2 * Loglike = 698.495433 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.394706 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 688.341387 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.661136 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 699.665758 -2 * Loglike = 701.183891 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 727.722349 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 708.572287 Burning in for 150 iterations out of 500 -2 * Loglike = 710.780529 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 697.797838 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.064350 Burning in for 200 iterations out of 500 -2 * Loglike = 695.983483 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.669118 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 = 733.485794 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 681.852634 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 703.390545 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.327682 Burning in for 250 iterations out of 500 -2 * Loglike = 695.976350 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 738.892187 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.006004 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 700.394692 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 682.782248 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.317470 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 696.796923 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 716.253173 Burning in for 300 iterations out of 500 -2 * Loglike = 729.074231 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 685.012503 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 698.504311 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 705.303216 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.690933 Burning in for 350 iterations out of 500 -2 * Loglike = 737.047816 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 710.019428 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 699.660700 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 703.947885 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 714.297540 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 696.212214 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.056010 Burning in for 400 iterations out of 500 -2 * Loglike = 736.749977 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.101924 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 701.521947 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.520652 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.512624 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.534591 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 712.047716 Burning in for 450 iterations out of 500 /nogui option ignored -2 * Loglike = 740.007681 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.682932 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 697.678141 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.587176 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.902188 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 715.643251 Burning in for 500 iterations out of 500 -2 * Loglike = 701.061693 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 727.653882 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.892551 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 696.632171 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 711.205215 -2 * Loglike = 700.564708 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 682.399196 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 734.558106 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 709.653662 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.491301 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.110723 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 704.907995 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 711.034140 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.834237 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 733.851337 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.927170 Actual update 400 of 5000, Stored update 400 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 = 694.600626 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 732.937495 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 688.475074 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.016020 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.677528 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.732554 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.926089 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 699.004457 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.466769 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 693.789619 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 727.169406 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.484584 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.643664 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 707.244884 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.423783 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.053006 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 693.315353 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 732.142087 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.025839 Actual update 1150 of 5000, Stored update 1150 of 5000 ECHO 0 -2 * Loglike = 707.610647 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 683.977768 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.387608 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.846821 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.748222 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 727.355945 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.821963 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 693.436849 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.082743 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.050573 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.959803 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.095501 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 735.691852 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 705.717155 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.170826 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.070286 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.737207 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 736.713292 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 705.058075 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.661981 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 686.254596 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 696.791184 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 723.772265 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 718.795064 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 735.174596 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 681.777689 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 711.619601 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.527928 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.590207 Actual update 750 of 5000, Stored update 750 of 5000 /nogui option ignored -2 * Loglike = 706.513090 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 744.667597 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.814655 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.321738 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 681.267545 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.083659 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 704.760579 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.659801 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 741.118655 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 682.522784 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 715.386643 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.939798 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 706.099207 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 705.371507 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 735.747081 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 682.874616 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.851804 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.724620 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.921908 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.024184 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.914481 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 727.545959 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.845923 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 681.970780 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.386896 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 706.954474 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 710.005373 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.376524 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 728.028704 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.818169 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 687.743072 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.195398 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.205703 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.797009 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 = 702.267490 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 732.319286 Actual update 4150 of 5000, Stored update 4150 of 5000 ECHO 0 -2 * Loglike = 709.169449 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.487297 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 701.241524 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.111620 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 731.972074 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.706595 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 706.907556 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 702.162231 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 683.881820 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.609237 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 728.139287 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.954050 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 703.546293 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.713088 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 703.926280 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 686.601357 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.943067 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 741.023741 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.058332 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 715.517895 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 704.559853 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 696.806065 Actual update 4750 of 5000, Stored update 4750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 682.227369 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 697.508226 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 728.888192 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.102101 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.396890 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 704.379995 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.573999 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.068878 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 719.192243 Burning in for 100 iterations out of 500 -2 * Loglike = 697.742066 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 736.833925 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.014988 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.220187 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 717.307063 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 703.220963 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.941882 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.629653 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.599290 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 737.045101 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.552671 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.561066 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 703.716293 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 680.564248 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.809111 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.109903 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 729.448111 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.025337 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 721.691275 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 698.108772 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.679846 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 681.913834 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.417969 Burning in for 150 iterations out of 500 -2 * Loglike = 698.968320 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 740.264532 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.088348 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.494522 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.623518 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 689.475686 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.289714 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 741.709104 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.784478 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 706.953012 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 697.228432 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 681.713496 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.720177 Burning in for 200 iterations out of 500 -2 * Loglike = 735.039066 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.142894 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 710.311960 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.797066 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.158919 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.074483 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.544118 Burning in for 250 iterations out of 500 -2 * Loglike = 710.915649 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 735.258038 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.898093 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.645871 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.622979 Burning in for 300 iterations out of 500 -2 * Loglike = 704.920253 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.177304 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 737.887134 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.127530 Burning in for 350 iterations out of 500 -2 * Loglike = 713.364183 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.008893 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 698.391465 Actual update 1500 of 5000, Stored update 1500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 718.159303 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 729.838498 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.836311 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 703.236208 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 721.873859 Burning in for 400 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 688.792784 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.642821 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.704870 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 730.357983 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 713.430249 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.312382 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 722.285712 Burning in for 450 iterations out of 500 -2 * Loglike = 715.686261 Burning in for 100 iterations out of 500 -2 * Loglike = 683.080921 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.026030 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 739.297579 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.293429 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 706.350376 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.810693 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.836168 Burning in for 500 iterations out of 500 -2 * Loglike = 711.495363 Burning in for 150 iterations out of 500 -2 * Loglike = 701.129720 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 683.255545 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 738.707702 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.650552 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 712.474877 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.985754 -2 * Loglike = 705.244459 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.279520 Burning in for 200 iterations out of 500 -2 * Loglike = 701.447315 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.357200 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 740.181449 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.446447 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.874183 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.542130 Burning in for 250 iterations out of 500 -2 * Loglike = 716.448909 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.324860 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 682.094229 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 704.372420 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.071704 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 = 715.961958 Burning in for 300 iterations out of 500 -2 * Loglike = 712.293731 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.504707 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 679.737472 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 709.755099 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.880880 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 722.572924 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.252384 Burning in for 350 iterations out of 500 -2 * Loglike = 709.009279 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 693.235491 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.884223 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 688.558038 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.131815 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 721.350443 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 704.238191 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 719.807663 Burning in for 400 iterations out of 500 -2 * Loglike = 695.359308 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 710.540410 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 683.174067 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 707.070853 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 725.471384 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 716.569997 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.271594 Burning in for 450 iterations out of 500 -2 * Loglike = 695.308755 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.096900 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.173416 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.044418 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 729.333483 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.669298 Burning in for 500 iterations out of 500 -2 * Loglike = 710.231181 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 707.145940 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.545175 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 690.714860 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 726.828954 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 706.443580 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.047825 -2 * Loglike = 695.887509 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.43 S.D. = 4.0780 S.E.M. = 0.057671 ECHO 0 Execution completed -2 * Loglike = 704.973224 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.686980 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 687.044057 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.918989 Actual update 2950 of 5000, Stored update 2950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 710.644667 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.431188 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 730.938881 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 693.984984 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 688.570515 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.615073 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 715.689792 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 709.130963 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 715.012469 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.298234 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 704.297796 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.214049 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 719.800915 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.965729 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 699.741697 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 728.394315 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 685.579563 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.484587 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 705.360079 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 721.560539 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.532281 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 720.494098 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.190152 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 687.380775 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.944182 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 707.064281 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 725.629523 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.935081 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.964841 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 717.618019 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.452225 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 705.703853 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 702.236010 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 724.110624 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.172526 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 710.766838 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 718.655045 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.065692 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.608889 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 729.385930 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.028364 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 729.005718 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 735.40 S.D. = 4.9209 S.E.M. = 0.069591 ECHO 0 Execution completed -2 * Loglike = 718.680864 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 681.860077 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.778510 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.578696 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 710.241634 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.389145 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 695.851044 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 711.771669 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 686.666654 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 702.231947 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 723.481527 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.538463 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.073809 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 718.469098 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.272341 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 686.949470 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 703.953553 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.782487 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 703.190327 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.969572 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.841775 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 682.693997 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 711.553958 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.572080 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 727.264173 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 700.810275 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 709.998024 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.503267 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 682.505635 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.628273 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 706.845860 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 720.817364 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 707.405048 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.584854 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 723.366825 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.483586 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.672009 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 724.321858 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 709.188168 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 707.840470 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.578599 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.210379 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.724607 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 712.794919 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.056970 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.596638 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.351413 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.554684 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 707.448489 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.981079 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.604179 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 698.997942 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 701.762998 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.455166 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 715.613337 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.641315 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 702.897074 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.016173 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 724.125319 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 715.236866 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.634463 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 711.113075 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 703.541000 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 711.078584 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.360889 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 725.877591 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.164139 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.038256 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 717.074176 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 703.336864 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 711.442102 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.691611 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.847088 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.191292 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 720.989421 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 698.005428 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.950166 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 719.235156 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 714.077906 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 701.297086 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 726.944303 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 695.853920 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 716.774764 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.887752 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 719.782080 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.038262 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.505986 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 722.236667 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.069797 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.041394 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 720.661558 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 697.717481 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.107654 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 714.157611 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.585327 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.902893 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.370672 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 721.448226 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.926039 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 714.456195 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.920658 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 711.775421 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.802078 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 722.079139 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.800772 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.793858 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.906471 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.327916 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 715.811953 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 725.758911 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.011525 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.359943 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 718.997085 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 710.333045 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.715656 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 726.230386 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.105839 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 703.413688 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 711.062211 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 723.761808 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.331718 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.682006 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 727.133840 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 712.445434 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 722.697225 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 709.538256 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 697.944805 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 694.798501 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 725.123078 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 722.652623 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.056081 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.454875 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.462671 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.349877 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 725.493819 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 712.441476 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.781700 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 713.056431 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 710.074720 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.414329 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.088943 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 728.435934 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 679.805455 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.01 S.D. = 5.4136 S.E.M. = 0.076560 ECHO 0 Execution completed -2 * Loglike = 724.185048 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 724.539896 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.875967 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 701.432530 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 711.779176 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 725.744320 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 708.818333 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 721.559998 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 714.622937 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 693.001482 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.788782 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 729.313652 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 710.144909 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 693.151379 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.337449 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 713.973914 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.273944 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 716.539676 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 694.690909 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 704.326023 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 711.317873 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.648815 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 710.071103 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 713.217289 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 702.569748 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 713.889157 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 710.018191 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.873332 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.688334 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.233641 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 726.253864 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.231623 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.697216 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.411361 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 725.700206 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 715.955057 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 702.616877 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 708.511153 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 710.606108 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.658126 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 715.755459 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.090959 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.517326 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 709.283642 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.454659 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.909499 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 711.746865 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.567450 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 728.180000 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 716.744363 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.136541 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.791262 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.034441 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 718.428653 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 715.583270 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.245062 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 701.723097 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.251635 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 716.914467 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.285045 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 712.898010 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 710.970458 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 696.279596 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 713.340683 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 715.616838 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.244216 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 719.657997 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 716.180926 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 704.839736 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 731.635551 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.400243 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.085115 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.405674 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.871613 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 695.641425 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.432223 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 727.790337 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.248975 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 717.217712 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 707.949420 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 705.095511 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.203505 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 720.568474 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 709.150422 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.139758 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 714.695768 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.281577 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.970642 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 702.722699 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.561377 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 718.357525 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.758169 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 719.054492 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.771427 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 709.619500 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.217986 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 725.765506 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 709.546079 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored -2 * Loglike = 724.300781 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.850302 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 695.018842 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 728.389863 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.347136 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.860648 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.030257 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 731.366225 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.134211 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 722.137896 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 724.438356 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 702.660934 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 715.970534 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 714.874954 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 716.758398 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 695.716797 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 721.445565 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 715.351254 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 702.222272 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 716.992689 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 711.872515 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.658569 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 727.406808 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.629470 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 723.091068 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 697.015729 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 721.351174 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 714.526443 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.567822 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 727.880018 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 724.633812 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.416463 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.080350 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 702.712570 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.63 S.D. = 4.0667 S.E.M. = 0.057512 ECHO 0 Execution completed ECHO 0 -2 * Loglike = 720.017831 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 711.821268 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 718.866318 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.125598 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 714.999356 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 721.168786 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.679842 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 703.477061 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.784087 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 722.181449 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.611869 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 720.501103 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 714.469145 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.850820 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 722.811167 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 718.465446 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.520715 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 713.927160 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.378834 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 720.493904 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 716.772537 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 713.827657 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 725.534697 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 721.430973 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 723.525725 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 718.417137 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 724.241007 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 716.027292 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 717.841766 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 718.855764 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.872365 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.33 S.D. = 4.5287 S.E.M. = 0.064045 ECHO 0 Execution completed -2 * Loglike = 719.085089 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 719.592703 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.555552 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 718.352065 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 722.635064 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 716.729110 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 725.305867 Actual update 3300 of 5000, Stored update 3300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 717.805239 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.340257 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.409256 Burning in for 100 iterations out of 500 -2 * Loglike = 710.959330 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 683.572309 Burning in for 150 iterations out of 500 -2 * Loglike = 712.971612 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 683.385058 Burning in for 200 iterations out of 500 -2 * Loglike = 725.583701 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 715.771615 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 684.538247 Burning in for 250 iterations out of 500 -2 * Loglike = 693.428697 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.60 S.D. = 4.0625 S.E.M. = 0.057453 ECHO 0 Execution completed -2 * Loglike = 716.722166 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 690.605368 Burning in for 300 iterations out of 500 -2 * Loglike = 733.681127 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 687.479106 Burning in for 350 iterations out of 500 -2 * Loglike = 710.744643 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 713.977200 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.606095 Burning in for 400 iterations out of 500 -2 * Loglike = 710.853490 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 725.483184 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 685.650434 Burning in for 450 iterations out of 500 -2 * Loglike = 711.561576 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored -2 * Loglike = 730.827909 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 707.930223 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 712.88 S.D. = 4.6843 S.E.M. = 0.066247 ECHO 0 Execution completed -2 * Loglike = 690.364820 Burning in for 500 iterations out of 500 -2 * Loglike = 727.519652 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 729.672513 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 688.841749 -2 * Loglike = 716.046715 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 719.081464 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 = 722.728488 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 718.702171 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.089138 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 727.542627 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 718.876870 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.494507 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 724.039549 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.625881 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.004189 Actual update 4000 of 5000, Stored update 4000 of 5000 ECHO 0 -2 * Loglike = 724.827630 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 714.230300 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 688.643379 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 723.988285 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 714.024738 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 685.094736 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 720.300434 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 715.166230 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.860251 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 723.077538 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.605255 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 680.848301 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.396031 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 686.847504 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 725.232195 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 728.017906 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 686.080338 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 722.763142 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 722.507133 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 681.780742 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 725.168214 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 721.299145 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 684.166016 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 720.605475 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.579129 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 720.874041 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 683.588296 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.702279 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.998664 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.661819 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.932883 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 720.321090 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 681.437766 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.517538 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 729.078625 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.010981 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 720.672978 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 718.265318 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.230339 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 725.293699 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 717.611594 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.281847 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.516968 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.839614 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 721.053131 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.458564 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 690.231513 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 720.864027 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 718.155714 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 694.295334 Actual update 1050 of 5000, Stored update 1050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 724.001492 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 719.406371 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 689.689059 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.479078 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 684.831287 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.118008 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 687.731698 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 722.534828 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 687.639511 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 685.569670 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.679969 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 687.347887 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.414566 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.171145 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 685.579172 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 686.010552 Actual update 1600 of 5000, Stored update 1600 of 5000 ECHO 0 -2 * Loglike = 692.476423 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 685.757076 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.832113 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 682.373964 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 681.687452 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 684.563309 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.087328 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 722.23 S.D. = 4.6439 S.E.M. = 0.065674 ECHO 0 Execution completed -2 * Loglike = 712.836746 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 719.28 S.D. = 4.5817 S.E.M. = 0.064795 ECHO 0 Execution completed -2 * Loglike = 684.683057 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.299381 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 689.334761 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 684.981952 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 686.975061 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 686.753033 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 687.033453 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 687.547336 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 686.510954 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 702.529537 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 684.323945 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 682.213344 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 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed /nogui option ignored -2 * Loglike = 687.670304 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.854971 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.468588 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 688.130304 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.527924 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 690.653580 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 689.167846 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.235911 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 689.738662 Actual update 2950 of 5000, Stored update 2950 of 5000 ECHO 0 -2 * Loglike = 684.708687 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 685.081420 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.273897 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 685.308986 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.455590 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.272905 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 690.159076 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.981784 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 682.921779 Actual update 3400 of 5000, Stored update 3400 of 5000 /nogui option ignored -2 * Loglike = 690.337443 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 687.629990 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 688.203023 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 683.344832 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 682.540220 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 682.971646 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.170568 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 681.772061 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 690.305050 Actual update 3850 of 5000, Stored update 3850 of 5000 ECHO 0 -2 * Loglike = 690.334839 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.824225 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 692.134237 Actual update 4000 of 5000, Stored update 4000 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.199084 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 686.392059 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 694.487109 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 684.888569 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 683.477153 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 689.522496 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 = 686.795418 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 692.152876 Actual update 4400 of 5000, Stored update 4400 of 5000 /nogui option ignored -2 * Loglike = 688.689699 Actual update 4450 of 5000, Stored update 4450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 685.528561 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.840122 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.815076 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 684.163178 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 692.237733 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 684.191811 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 685.106861 Actual update 4800 of 5000, Stored update 4800 of 5000 ECHO 0 -2 * Loglike = 688.840152 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.754910 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 684.779117 Actual update 4950 of 5000, Stored update 4950 of 5000 /nogui option ignored -2 * Loglike = 689.255048 Actual update 5000 of 5000, Stored update 5000 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 682.725444 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.66 S.D. = 4.0295 S.E.M. = 0.056986 ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 712.520012 Burning in for 100 iterations out of 500 -2 * Loglike = 709.520796 Burning in for 150 iterations out of 500 -2 * Loglike = 708.285288 Burning in for 200 iterations out of 500 -2 * Loglike = 708.427633 Burning in for 250 iterations out of 500 -2 * Loglike = 717.033780 Burning in for 300 iterations out of 500 -2 * Loglike = 713.066017 Burning in for 350 iterations out of 500 -2 * Loglike = 717.794691 Burning in for 400 iterations out of 500 -2 * Loglike = 712.546589 Burning in for 450 iterations out of 500 -2 * Loglike = 714.647650 Burning in for 500 iterations out of 500 -2 * Loglike = 713.649188 ERAS G30 LINK 0 G30 ERAS 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.763436 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 716.566751 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.470910 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 714.904811 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 710.680188 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 725.527821 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.970314 Actual update 400 of 5000, Stored update 400 of 5000 /nogui option ignored -2 * Loglike = 712.991197 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 710.311160 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.548755 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 709.513955 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.274997 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.313702 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 707.434490 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 717.965837 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 709.269558 Actual update 850 of 5000, Stored update 850 of 5000 ECHO 0 -2 * Loglike = 713.815159 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 708.952852 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 720.479459 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.489088 Actual update 1050 of 5000, Stored update 1050 of 5000 /nogui option ignored -2 * Loglike = 714.535042 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 710.636269 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.577381 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 714.187899 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 711.509168 Actual update 1300 of 5000, Stored update 1300 of 5000 ECHO 0 -2 * Loglike = 716.495433 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.250980 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 721.433180 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 711.655936 Actual update 1500 of 5000, Stored update 1500 of 5000 /nogui option ignored -2 * Loglike = 711.129513 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... Burning in for 50 iterations out of 500 -2 * Loglike = 711.289274 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.562003 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 687.074409 Burning in for 100 iterations out of 500 -2 * Loglike = 712.046870 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 684.624455 Burning in for 150 iterations out of 500 -2 * Loglike = 713.264732 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 686.073301 Burning in for 200 iterations out of 500 -2 * Loglike = 708.443319 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 689.687266 Burning in for 250 iterations out of 500 -2 * Loglike = 690.568832 Burning in for 300 iterations out of 500 -2 * Loglike = 708.055256 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 689.037415 Burning in for 350 iterations out of 500 -2 * Loglike = 710.720634 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 693.371848 Burning in for 400 iterations out of 500 -2 * Loglike = 710.582559 Actual update 1950 of 5000, Stored update 1950 of 5000 ECHO 0 -2 * Loglike = 692.224845 Burning in for 450 iterations out of 500 -2 * Loglike = 721.055262 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 716.653611 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 691.281524 Burning in for 500 iterations out of 500 -2 * Loglike = 711.076628 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.841799 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 693.989274 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 712.770015 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 = 712.444472 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 689.947700 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 713.500628 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 690.126795 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.880126 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 683.230670 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 689.174588 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 728.431690 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 685.477906 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 711.098379 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.367966 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.122581 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.134914 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 682.075356 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 717.528386 Actual update 2600 of 5000, Stored update 2600 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 713.527539 Actual update 2650 of 5000, Stored update 2650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 700.504680 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.247417 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 685.963786 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 712.350071 Actual update 2750 of 5000, Stored update 2750 of 5000 /nogui option ignored -2 * Loglike = 684.439586 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 716.895488 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 682.858839 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 715.080835 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 685.226363 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 711.796282 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.850444 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 716.037432 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 681.741748 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 713.280629 Actual update 3000 of 5000, Stored update 3000 of 5000 ECHO 0 -2 * Loglike = 688.243973 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 712.363746 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 686.588915 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 711.965865 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 686.840343 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.102347 Actual update 3150 of 5000, Stored update 3150 of 5000 ECHO 0 -2 * Loglike = 689.904625 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 696.357705 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 712.822296 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 685.394979 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.522078 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.547719 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 716.160606 Actual update 3300 of 5000, Stored update 3300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 723.036971 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 687.936272 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.981909 Burning in for 100 iterations out of 500 -2 * Loglike = 708.747699 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 687.926777 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 715.345643 Burning in for 150 iterations out of 500 -2 * Loglike = 688.513347 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 715.071261 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 717.578868 Burning in for 200 iterations out of 500 -2 * Loglike = 719.256653 Burning in for 250 iterations out of 500 -2 * Loglike = 683.538407 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.738483 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 716.384010 Burning in for 300 iterations out of 500 -2 * Loglike = 687.734828 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.025671 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.038211 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 725.673921 Burning in for 350 iterations out of 500 -2 * Loglike = 708.993511 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 696.976732 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 708.191541 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.639196 Burning in for 400 iterations out of 500 -2 * Loglike = 687.972775 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 708.887343 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 719.185703 Burning in for 450 iterations out of 500 -2 * Loglike = 700.014227 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 718.220538 Burning in for 500 iterations out of 500 -2 * Loglike = 718.332302 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 684.177377 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 717.822858 -2 * Loglike = 707.811493 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.410599 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 717.125824 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 = 686.474746 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.470295 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 716.146396 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 721.442781 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 682.082119 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 720.326630 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.095509 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 683.723916 Actual update 1850 of 5000, Stored update 1850 of 5000 /nogui option ignored -2 * Loglike = 726.415763 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 718.024702 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 685.925415 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 730.697122 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 707.608537 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.294106 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 728.682198 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.621320 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.327977 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 688.191258 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 730.665081 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 721.058886 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 685.933214 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 717.937566 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.799950 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.943947 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 722.764905 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 690.634524 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.587567 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 717.936493 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 687.462595 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.887303 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 713.189200 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 713.224210 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 687.030673 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 719.402178 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.152009 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 718.313040 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 718.269083 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 714.628617 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.955813 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 717.376344 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 715.172471 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 684.319999 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 713.996541 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.289779 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 687.426936 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.274959 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 714.597625 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 688.065574 Actual update 2550 of 5000, Stored update 2550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 711.627007 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 715.836944 Actual update 850 of 5000, Stored update 850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 690.406745 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 718.192574 Actual update 4700 of 5000, Stored update 4700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 722.982258 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.059581 Burning in for 100 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 687.621066 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 709.972119 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 716.880911 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.307718 Burning in for 150 iterations out of 500 -2 * Loglike = 683.613096 Burning in for 100 iterations out of 500 -2 * Loglike = 689.081468 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 727.554665 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.943194 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.871452 Burning in for 200 iterations out of 500 -2 * Loglike = 682.022024 Burning in for 150 iterations out of 500 -2 * Loglike = 727.167131 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 686.601567 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 717.442595 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 681.280244 Burning in for 200 iterations out of 500 -2 * Loglike = 705.666129 Burning in for 250 iterations out of 500 -2 * Loglike = 691.940483 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 717.281844 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 682.737646 Burning in for 250 iterations out of 500 -2 * Loglike = 716.773585 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.547472 Burning in for 300 iterations out of 500 -2 * Loglike = 691.133404 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 717.813288 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.118964 Burning in for 300 iterations out of 500 -2 * Loglike = 687.444589 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.516574 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.216999 Burning in for 350 iterations out of 500 -2 * Loglike = 718.024034 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.205407 Burning in for 350 iterations out of 500 -2 * Loglike = 707.172795 Burning in for 400 iterations out of 500 -2 * Loglike = 714.151162 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 691.063581 Burning in for 400 iterations out of 500 -2 * Loglike = 724.998765 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 702.762372 Burning in for 450 iterations out of 500 -2 * Loglike = 687.313788 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 685.095766 Burning in for 450 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 727.072453 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 705.822414 Burning in for 500 iterations out of 500 -2 * Loglike = 684.931370 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 725.162062 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 684.495808 Burning in for 500 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 684.894804 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 702.873680 -2 * Loglike = 685.539623 -2 * Loglike = 727.033587 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 667.629102 Burning in for 100 iterations out of 500 -2 * Loglike = 685.394491 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 727.354526 Actual update 1450 of 5000, Stored update 1450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 686.915135 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 727.206927 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 660.854383 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 = 685.995593 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.724696 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 727.268798 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 662.240910 Burning in for 200 iterations out of 500 -2 * Loglike = 684.254386 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.529089 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.007317 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 727.158383 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 664.239784 Burning in for 250 iterations out of 500 -2 * Loglike = 690.207201 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 690.938857 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 697.810974 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 729.094823 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 680.232302 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.986593 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.345532 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 664.997672 Burning in for 300 iterations out of 500 -2 * Loglike = 726.163443 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.468410 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 686.250885 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.847376 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 664.332559 Burning in for 350 iterations out of 500 -2 * Loglike = 730.578621 Actual update 1750 of 5000, Stored update 1750 of 5000 /nogui option ignored -2 * Loglike = 683.530785 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 691.258788 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 714.503092 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 669.014583 Burning in for 400 iterations out of 500 -2 * Loglike = 718.006583 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.235021 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 696.414982 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 663.617672 Burning in for 450 iterations out of 500 -2 * Loglike = 687.347333 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 714.542927 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 679.271515 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.044780 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 666.761481 Burning in for 500 iterations out of 500 -2 * Loglike = 715.591917 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.984203 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 685.444941 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 701.265004 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 665.200805 -2 * Loglike = 715.550990 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 682.236254 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 682.331462 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.381301 Actual update 550 of 5000, Stored update 550 of 5000 ECHO 0 -2 * Loglike = 720.842251 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 680.111604 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 700.082308 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 = 686.296755 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 722.316191 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.618907 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 700.620926 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.355891 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 666.134478 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 717.519301 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.815630 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.882426 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.59 S.D. = 3.9732 S.E.M. = 0.056190 ECHO 0 Execution completed -2 * Loglike = 663.861762 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 699.465483 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 692.055893 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 718.647588 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 659.235244 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.265428 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 683.332308 Actual update 700 of 5000, Stored update 700 of 5000 ECHO 0 -2 * Loglike = 687.965536 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 717.891673 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.802977 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 667.811130 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 679.910406 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 690.972200 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.835805 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 715.912616 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 662.467855 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 689.213967 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.135645 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.893132 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 729.081492 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 676.680681 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 680.984222 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.784225 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 721.130562 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.851608 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 657.882901 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.086622 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 691.509248 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 727.091507 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.041143 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 666.855537 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 681.972014 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 693.323972 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 724.631495 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 707.141430 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 662.651434 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 691.812965 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 685.617208 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.124242 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.243209 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 658.578206 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.583228 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 725.660750 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 686.817390 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 701.378252 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 661.832094 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 685.452879 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 732.692611 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.452674 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.496757 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 661.643382 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 682.759562 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 725.714047 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.741739 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 683.677809 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 661.520039 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 706.501438 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 717.873603 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.337743 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 684.979595 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 684.892665 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 658.919973 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.510445 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 706.418060 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 685.635636 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 690.031249 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 668.263253 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.899707 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 723.391636 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 685.838318 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 695.852654 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 706.167876 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 660.354643 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 724.779060 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 688.301715 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.359826 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 700.996885 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 718.516344 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 685.338323 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 665.947011 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.412257 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.407250 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 660.043635 Actual update 950 of 5000, Stored update 950 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 696.217903 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 718.818423 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.641260 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.431967 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 669.458428 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 723.907630 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 685.018156 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.890988 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.254924 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 707.960988 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 = 689.561373 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 684.166401 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 670.097278 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 718.528820 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.222107 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 684.088064 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 665.792283 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 712.969095 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 684.171772 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 705.264333 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.454873 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 724.393190 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 662.583850 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 687.367012 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 698.942763 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 687.594161 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 726.426689 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 664.552462 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 688.998901 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 698.203641 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 722.505088 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 698.457374 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 665.102052 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 685.596175 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 699.382442 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 723.035372 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 663.556664 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.979516 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 681.022287 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 699.433141 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 668.191587 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 681.937984 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.389628 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 715.278603 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.304710 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 666.388846 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 682.997183 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 717.347805 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.231654 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.953679 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 672.328324 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.953103 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.907665 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.570921 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 703.593231 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 662.417508 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.455512 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 720.063787 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 700.004103 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 667.241283 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 680.524586 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 715.228348 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 700.003969 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 663.163456 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.859354 Actual update 2150 of 5000, Stored update 2150 of 5000 ECHO 0 -2 * Loglike = 701.707994 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.209821 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 670.144825 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 687.265332 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 706.718487 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 724.817893 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 662.955656 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.730629 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 687.499680 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.799943 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 735.031120 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 685.681492 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 664.344407 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 713.097064 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.470545 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.508669 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 660.253726 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 726.411324 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 658.761600 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.064254 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 696.510853 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 732.240266 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.752523 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 661.418162 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 683.689617 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 729.064684 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 681.995867 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 661.227011 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 707.755872 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 687.764884 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 672.314515 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 721.774857 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.615945 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 667.819296 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 693.411247 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.840771 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 663.196394 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 702.679721 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 685.647419 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 718.314201 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 664.175389 Actual update 2150 of 5000, Stored update 2150 of 5000 /nogui option ignored -2 * Loglike = 703.901670 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 686.826224 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 663.018649 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.968163 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 723.950835 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 688.850993 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 662.639744 Actual update 2250 of 5000, Stored update 2250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 708.708916 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 683.281890 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 689.26 S.D. = 4.9315 S.E.M. = 0.069743 ECHO 0 Execution completed -2 * Loglike = 728.380505 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 702.598119 Actual update 2900 of 5000, Stored update 2900 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 664.412349 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 693.424224 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 722.984765 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.892352 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 680.248614 Burning in for 100 iterations out of 500 -2 * Loglike = 683.013654 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 729.241089 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.817480 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 664.594076 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 679.668617 Burning in for 150 iterations out of 500 -2 * Loglike = 687.779615 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 728.928142 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 701.364387 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 677.957115 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 681.101041 Burning in for 200 iterations out of 500 -2 * Loglike = 687.936745 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 724.056320 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 701.856323 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 686.818914 Burning in for 250 iterations out of 500 -2 * Loglike = 661.418040 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 686.347607 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 683.587949 Burning in for 300 iterations out of 500 -2 * Loglike = 699.080112 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 660.270551 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 684.035567 Burning in for 350 iterations out of 500 -2 * Loglike = 685.871688 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 725.723475 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.824606 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 667.505036 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.735766 Burning in for 400 iterations out of 500 -2 * Loglike = 683.530853 Actual update 3150 of 5000, Stored update 3150 of 5000 ECHO 0 -2 * Loglike = 721.291285 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.181455 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 684.593828 Burning in for 450 iterations out of 500 -2 * Loglike = 667.303627 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.693980 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 719.768817 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 705.539989 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 684.060975 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 666.833105 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 719.729003 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 711.566130 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 684.903391 Burning in for 500 iterations out of 500 -2 * Loglike = 664.229761 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 689.037777 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.635337 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 682.268833 -2 * Loglike = 699.435623 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.622175 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 663.826760 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 729.328766 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.932982 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.698609 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 666.984849 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 = 719.203328 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 667.994237 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.745958 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.538889 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 664.089563 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 683.702761 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 684.561757 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.186940 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 717.648171 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 665.609242 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.711525 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.208141 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 686.845808 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 663.312626 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 721.980485 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.362309 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 677.877634 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 664.330435 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 680.769184 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 663.454369 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.794594 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 720.890559 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 685.349745 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 679.819801 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 661.433533 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.562365 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 720.406534 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 664.593455 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 680.755579 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 680.557838 Actual update 300 of 5000, Stored update 300 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 697.378824 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.481980 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 666.473088 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 689.787183 Actual update 3750 of 5000, Stored update 3750 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 695.786373 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 684.479776 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 667.691895 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.753360 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 686.380939 Burning in for 100 iterations out of 500 -2 * Loglike = 691.549465 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 676.531034 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.531307 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 672.987146 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.470509 Burning in for 150 iterations out of 500 -2 * Loglike = 692.735453 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 691.087803 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 660.364119 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 714.127704 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 685.387075 Burning in for 200 iterations out of 500 -2 * Loglike = 703.861463 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 677.738257 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 693.701536 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 666.667117 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 689.697954 Burning in for 250 iterations out of 500 -2 * Loglike = 677.758245 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 666.933921 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 689.697025 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.874587 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 687.846501 Burning in for 300 iterations out of 500 -2 * Loglike = 665.543227 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 677.316772 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 680.905080 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 701.321055 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 687.317772 Burning in for 350 iterations out of 500 -2 * Loglike = 660.298717 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 680.916675 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 692.409843 Burning in for 400 iterations out of 500 -2 * Loglike = 708.017043 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 683.740418 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 660.379699 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.472797 Burning in for 450 iterations out of 500 -2 * Loglike = 679.250859 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 701.003750 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 692.549047 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 689.726345 Burning in for 500 iterations out of 500 -2 * Loglike = 660.309111 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 682.695187 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.100488 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 688.440713 -2 * Loglike = 677.189523 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 670.283714 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 682.012938 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.175744 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 -2 * Loglike = 658.219896 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 684.371363 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 692.344579 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 690.411310 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 666.282332 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 703.989178 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 684.877337 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 679.552669 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.404393 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.223198 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 691.497697 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 667.893393 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 681.895431 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 682.441325 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.484008 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 686.142531 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 674.462193 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 680.278160 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 686.864091 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 683.910616 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 716.505498 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 722.54 S.D. = 4.9210 S.E.M. = 0.069594 ECHO 0 Execution completed -2 * Loglike = 691.224566 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 667.596822 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.142615 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 693.077633 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 685.172711 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 659.875319 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.908667 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 680.115647 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 687.678688 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.215356 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 663.935996 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.662084 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 698.939809 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.102076 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.251159 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 670.833758 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.300585 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 682.191251 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 689.646843 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.405360 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 662.532299 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.018136 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 682.328870 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 681.712015 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 694.174019 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 660.864138 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 699.831983 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 685.656557 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 684.537728 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 683.737169 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 663.989069 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 704.541466 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 688.186567 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 680.984691 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 665.618207 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.995590 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 691.499486 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 683.215667 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 702.651264 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 682.297039 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 669.309077 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 683.028537 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 677.461048 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 708.384838 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 669.424094 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 681.719329 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 694.128782 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 686.037454 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 663.306934 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 682.734106 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 668.176312 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 682.711607 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.050497 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 664.714006 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 678.268402 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 660.761021 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 683.406216 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 684.080403 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 677.596244 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 680.812090 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 680.284159 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 682.703336 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 661.752689 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 687.862722 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 677.975241 Actual update 1800 of 5000, Stored update 1800 of 5000 /nogui option ignored -2 * Loglike = 662.339136 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 679.802948 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 666.713092 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 683.134609 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 679.610789 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 686.587412 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 667.017421 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 680.076318 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 686.364783 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 691.083303 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 662.338364 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 690.992319 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 698.293357 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 703.97 S.D. = 4.5565 S.E.M. = 0.064439 ECHO 0 Execution completed -2 * Loglike = 664.599746 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 685.574918 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 682.260274 Actual update 1050 of 5000, Stored update 1050 of 5000 ECHO 0 -2 * Loglike = 680.699667 Actual update 2100 of 5000, Stored update 2100 of 5000 /nogui option ignored -2 * Loglike = 688.037185 Actual update 1100 of 5000, Stored update 1100 of 5000 /nogui option ignored -2 * Loglike = 691.155395 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 685.967382 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.812146 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 680.975077 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 686.20 S.D. = 4.1794 S.E.M. = 0.059105 ECHO 0 Execution completed -2 * Loglike = 686.348807 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 680.534922 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 687.312968 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 684.793915 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 681.493978 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 687.023378 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 683.400284 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 684.054307 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.836498 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 -2 * Loglike = 679.250960 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 682.021502 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 696.015878 Actual update 1450 of 5000, Stored update 1450 of 5000 ECHO 0 -2 * Loglike = 682.372604 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 686.619936 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 686.209418 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 685.419177 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 685.570076 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 683.838443 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 685.586518 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.642185 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 682.572699 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 686.029501 Actual update 1700 of 5000, Stored update 1700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 685.580727 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 684.774047 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.899884 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 681.430107 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 682.281817 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 659.919530 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 665.05 S.D. = 4.0969 S.E.M. = 0.057939 ECHO 0 Execution completed -2 * Loglike = 683.845881 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 681.284525 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 683.540004 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 679.717588 Actual update 3000 of 5000, Stored update 3000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 680.556860 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.200749 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 700.298744 Burning in for 100 iterations out of 500 -2 * Loglike = 681.951384 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.956023 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.665934 Burning in for 150 iterations out of 500 -2 * Loglike = 680.534034 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.396315 Burning in for 200 iterations out of 500 -2 * Loglike = 685.946449 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 680.969192 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 697.381483 Burning in for 250 iterations out of 500 -2 * Loglike = 680.279378 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.182915 Burning in for 300 iterations out of 500 -2 * Loglike = 683.203527 Actual update 2100 of 5000, Stored update 2100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 685.561489 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.270426 Burning in for 350 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 693.913130 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.829724 Burning in for 400 iterations out of 500 -2 * Loglike = 679.853493 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.197585 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 702.641791 Burning in for 100 iterations out of 500 -2 * Loglike = 684.237995 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 703.582357 Burning in for 450 iterations out of 500 -2 * Loglike = 697.429493 Burning in for 150 iterations out of 500 -2 * Loglike = 688.228344 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 683.192924 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.780735 Burning in for 500 iterations out of 500 -2 * Loglike = 699.999867 Burning in for 200 iterations out of 500 -2 * Loglike = 686.730861 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 685.905565 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.541742 -2 * Loglike = 702.023054 Burning in for 250 iterations out of 500 -2 * Loglike = 685.390311 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.440220 Burning in for 300 iterations out of 500 -2 * Loglike = 677.678185 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 689.911907 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 700.405746 Burning in for 350 iterations out of 500 -2 * Loglike = 680.380621 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.654378 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.916738 Burning in for 400 iterations out of 500 -2 * Loglike = 680.543300 Actual update 3700 of 5000, Stored update 3700 of 5000 /nogui option ignored ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 683.535107 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 701.692595 Burning in for 450 iterations out of 500 -2 * Loglike = 687.996146 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 684.575058 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 701.064956 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 679.654418 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 685.167716 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.186388 Burning in for 500 iterations out of 500 -2 * Loglike = 710.382708 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 682.176022 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 689.440776 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.154679 -2 * Loglike = 706.166957 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 688.683109 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 685.776670 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 710.231928 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 693.974834 Actual update 3950 of 5000, Stored update 3950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 688.868028 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.535877 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 685.507750 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.827281 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 686.545985 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 714.224267 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 681.585002 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.647018 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 689.522158 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 696.708951 Actual update 400 of 5000, Stored update 400 of 5000 ECHO 0 -2 * Loglike = 679.489703 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.702476 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 696.071754 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 707.907788 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 685.812044 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 688.894544 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 702.847552 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.606666 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 685.471843 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 680.630651 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 699.236549 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.181590 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 681.723421 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 678.992615 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.048530 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.143156 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 684.083967 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 684.848184 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 694.376916 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.076029 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 686.810569 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 682.799363 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.506393 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.558423 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 685.288503 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 686.928130 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.288587 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.227124 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 684.729068 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.751750 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.021321 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.577933 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 681.697118 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.427391 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 684.693086 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.007976 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 683.343686 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.842910 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.836894 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 689.626990 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 687.176885 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 698.810435 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.948597 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.105773 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.044508 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 680.486785 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.223074 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 683.595074 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 684.276884 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 702.563968 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 707.035229 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 678.867426 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.694464 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 705.429208 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 697.401222 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 681.166820 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 688.042694 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.829490 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 701.031415 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 685.364117 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 690.138145 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 702.310411 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 698.490390 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 691.689567 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.495793 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 681.298887 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 687.805861 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.411857 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.447668 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 688.590130 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 683.663293 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.849925 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.937263 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 683.651671 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 701.647584 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 = 707.481132 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 690.870923 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 699.660855 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 707.873512 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 684.408713 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.700594 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 709.553984 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 701.061950 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 687.334889 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.050113 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 699.480031 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.091884 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 706.861432 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 703.193265 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 692.561091 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 709.487166 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 701.893596 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.731624 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 689.610858 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 712.904862 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.395800 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 684.547309 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.017081 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 697.394738 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 701.528747 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.096903 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 696.236841 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.980745 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.740544 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.226042 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 684.051972 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 706.408126 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.126784 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 682.425454 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 700.291672 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 701.177483 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 691.501760 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 707.901978 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.629583 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 684.441078 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.615298 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 696.204873 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 690.754517 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.906443 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.760724 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 694.490128 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 678.713560 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 683.48 S.D. = 4.2056 S.E.M. = 0.059476 ECHO 0 Execution completed -2 * Loglike = 704.533641 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 697.612227 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 684.061451 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 705.592010 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 698.049741 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 709.132074 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 699.212103 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.125808 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.696731 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 708.556311 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 691.766406 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.210718 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 702.058608 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.861612 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 698.518481 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 703.715250 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 700.858798 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 709.396845 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 687.870248 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 700.280102 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 712.596661 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 682.785574 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.473388 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 704.436888 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 684.589695 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.526596 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 700.474477 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.360109 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.481179 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.931776 Actual update 2750 of 5000, Stored update 2750 of 5000 /nogui option ignored -2 * Loglike = 703.500077 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 710.353212 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 709.516591 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 689.118084 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 701.677921 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.750918 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 698.598726 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.831686 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.648758 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.080090 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 705.862139 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 706.548093 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 702.366934 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 707.005841 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.278004 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.972584 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.204450 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 703.356579 Actual update 3150 of 5000, Stored update 3150 of 5000 ECHO 0 /nogui option ignored -2 * Loglike = 700.044667 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 702.846709 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 703.731431 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.593035 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 706.538644 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.459585 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.570906 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.927759 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.343397 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 702.408337 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.448928 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 705.266269 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 701.038458 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 699.319126 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.563895 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.536145 Actual update 3550 of 5000, Stored update 3550 of 5000 ECHO 0 -2 * Loglike = 698.064478 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 701.217970 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.844589 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 697.407512 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 707.554978 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.205066 Actual update 3700 of 5000, Stored update 3700 of 5000 ECHO 0 -2 * Loglike = 714.334386 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.619950 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.466656 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 682.098412 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.39 S.D. = 4.2914 S.E.M. = 0.060690 ECHO 0 Execution completed -2 * Loglike = 709.960187 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 708.790471 Actual update 3850 of 5000, Stored update 3850 of 5000 ECHO 0 -2 * Loglike = 697.630687 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 711.986649 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 704.424347 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 708.160430 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.192231 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.113509 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 702.864497 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 701.005451 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 695.771250 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.981991 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.186294 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.568698 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.217178 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 705.876563 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 705.754548 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.447058 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 695.863777 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.612129 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.975181 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 706.352537 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.802017 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.296040 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.623722 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.092973 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.658101 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.165686 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 697.594267 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 706.935859 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.850566 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 704.156475 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 706.849661 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.247435 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.994652 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.645608 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 706.556727 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 696.750971 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 701.161887 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 703.323976 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 703.267091 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.672528 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.159444 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 705.227916 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 706.512729 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 707.156009 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.648649 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.504523 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.141518 Actual update 4550 of 5000, Stored update 4550 of 5000 /nogui option ignored -2 * Loglike = 704.257456 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 697.629791 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 707.644209 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.887745 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 698.634491 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 700.707899 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.510684 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 701.454755 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.102535 Actual update 5000 of 5000, Stored update 5000 of 5000 ECHO 0 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 728.481309 Burning in for 100 iterations out of 500 -2 * Loglike = 719.899114 Burning in for 150 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Echoing is ON BATC 1 Batch mode 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 = 722.305002 Burning in for 200 iterations out of 500 -2 * Loglike = 724.504020 Burning in for 250 iterations out of 500 -2 * Loglike = 723.494711 Burning in for 300 iterations out of 500 -2 * Loglike = 723.563852 Burning in for 350 iterations out of 500 -2 * Loglike = 728.484732 Burning in for 400 iterations out of 500 -2 * Loglike = 722.428349 Burning in for 450 iterations out of 500 -2 * Loglike = 726.595606 Burning in for 500 iterations out of 500 -2 * Loglike = 724.943773 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 726.931645 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 722.338337 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 718.373030 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 726.368533 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.718311 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 736.091208 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 716.859850 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 726.792722 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 722.729665 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 718.337434 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 721.213627 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 719.958335 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 720.389808 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 717.836109 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 726.480661 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 719.268880 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 725.291524 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 720.049768 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.449516 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 728.637395 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 725.480642 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 = 702.402499 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.73 S.D. = 4.1221 S.E.M. = 0.058296 ECHO 0 Execution completed -2 * Loglike = 695.917383 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 701.32 S.D. = 4.1147 S.E.M. = 0.058191 ECHO 0 Execution completed -2 * Loglike = 721.670870 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 723.452812 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 723.547550 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 722.473699 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 727.270876 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 727.862245 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 732.571065 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 721.426284 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 728.594943 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 722.678576 Actual update 1600 of 5000, Stored update 1600 of 5000 /nogui option ignored -2 * Loglike = 729.515055 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 722.098197 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 722.863092 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 719.069174 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.232593 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 720.210690 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.203869 Actual update 1950 of 5000, Stored update 1950 of 5000 ECHO 0 -2 * Loglike = 732.131436 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 725.309694 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 721.600803 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 723.240398 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 722.271196 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 722.055047 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 723.095784 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 725.383932 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 734.286727 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 720.070279 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 719.067403 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 725.534995 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 725.808233 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 725.113904 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 723.079937 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 723.091895 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 725.456440 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 725.005936 Burning in for 100 iterations out of 500 -2 * Loglike = 728.153606 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 726.086956 Burning in for 150 iterations out of 500 -2 * Loglike = 724.897393 Burning in for 200 iterations out of 500 -2 * Loglike = 725.594315 Burning in for 250 iterations out of 500 -2 * Loglike = 723.035748 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 724.377408 Burning in for 300 iterations out of 500 -2 * Loglike = 723.948038 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 722.261919 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 726.553476 Burning in for 350 iterations out of 500 -2 * Loglike = 722.480794 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 731.308148 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 727.952027 Burning in for 450 iterations out of 500 -2 * Loglike = 723.042024 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 726.040896 Burning in for 500 iterations out of 500 -2 * Loglike = 720.462587 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 726.421598 -2 * Loglike = 722.807491 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.579320 Actual update 3250 of 5000, Stored update 3250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 728.849717 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 726.564807 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 728.303958 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 731.911823 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 724.859687 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 719.629909 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 728.497726 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 726.625953 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 727.040415 Actual update 300 of 5000, Stored update 300 of 5000 ECHO 0 -2 * Loglike = 727.368313 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 739.827600 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 724.650192 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 724.312801 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 719.108241 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 725.308950 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 719.846994 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 724.165857 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 719.394689 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 724.484328 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 728.670324 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 725.233571 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 717.713859 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 724.939920 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 723.647307 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 726.553243 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 729.172204 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 724.964950 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 731.651903 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 726.921703 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 725.836067 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 725.451829 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 719.296751 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 729.313705 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 722.496720 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 725.383751 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 729.016175 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 730.730248 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 = 721.376450 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 724.931873 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 719.639590 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 727.141572 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 724.596880 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.986539 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 728.319831 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.465616 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 728.055592 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 728.984740 Actual update 4450 of 5000, Stored update 4450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 728.397224 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 720.548049 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 725.921274 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 727.508663 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 728.171285 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 724.249690 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 724.809910 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 719.666833 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 725.527847 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 739.610491 Actual update 4700 of 5000, Stored update 4700 of 5000 /nogui option ignored -2 * Loglike = 728.572133 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 720.671500 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 724.289327 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 720.571909 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 723.898539 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.839142 Actual update 1600 of 5000, Stored update 1600 of 5000 ECHO 0 -2 * Loglike = 726.257327 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 721.855865 Actual update 4950 of 5000, Stored update 4950 of 5000 /nogui option ignored -2 * Loglike = 727.651099 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 727.127407 Actual update 1650 of 5000, Stored update 1650 of 5000 /nogui option ignored -2 * Loglike = 725.123250 Actual update 1700 of 5000, Stored update 1700 of 5000 /nogui option ignored -2 * Loglike = 728.434731 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 724.508537 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 724.488537 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 726.069035 Actual update 1900 of 5000, Stored update 1900 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... /nogui option ignored -2 * Loglike = 725.701043 Actual update 1950 of 5000, Stored update 1950 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 728.402014 Burning in for 100 iterations out of 500 -2 * Loglike = 724.976126 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 724.156240 Burning in for 150 iterations out of 500 -2 * Loglike = 725.316399 Burning in for 200 iterations out of 500 -2 * Loglike = 726.866445 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.257296 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 728.729910 Burning in for 250 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 718.600533 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 724.31 S.D. = 4.3667 S.E.M. = 0.061754 ECHO 0 Execution completed Burning in for 50 iterations out of 500 /nogui option ignored -2 * Loglike = 731.040106 Burning in for 300 iterations out of 500 -2 * Loglike = 725.301274 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 717.421012 Burning in for 100 iterations out of 500 -2 * Loglike = 728.438303 Burning in for 350 iterations out of 500 ECHO 0 -2 * Loglike = 728.748437 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.707852 Burning in for 150 iterations out of 500 -2 * Loglike = 733.829157 Burning in for 400 iterations out of 500 -2 * Loglike = 709.291065 Burning in for 200 iterations out of 500 -2 * Loglike = 725.307301 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 727.551799 Burning in for 450 iterations out of 500 -2 * Loglike = 726.954481 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.774661 Burning in for 250 iterations out of 500 -2 * Loglike = 731.458032 Burning in for 500 iterations out of 500 -2 * Loglike = 716.620820 Burning in for 300 iterations out of 500 -2 * Loglike = 724.133979 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 726.251392 Burning in for 350 iterations out of 500 -2 * Loglike = 724.447643 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 731.970939 -2 * Loglike = 719.973333 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... Burning in for 50 iterations out of 500 -2 * Loglike = 726.775678 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 710.010622 Burning in for 450 iterations out of 500 -2 * Loglike = 712.154762 Burning in for 100 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 726.292094 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 716.337966 Burning in for 500 iterations out of 500 -2 * Loglike = 708.914644 Burning in for 150 iterations out of 500 -2 * Loglike = 728.861065 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.822141 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.498947 -2 * Loglike = 711.619483 Burning in for 200 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... ECHO 0 -2 * Loglike = 729.612410 Actual update 150 of 5000, Stored update 150 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 730.821992 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 706.433676 Burning in for 250 iterations out of 500 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 678.788685 Burning in for 100 iterations out of 500 -2 * Loglike = 722.371081 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 727.006602 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 714.159832 Burning in for 300 iterations out of 500 -2 * Loglike = 712.195298 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 675.039194 Burning in for 150 iterations out of 500 -2 * Loglike = 726.902201 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 713.892696 Burning in for 350 iterations out of 500 -2 * Loglike = 725.722855 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 675.630043 Burning in for 200 iterations out of 500 -2 * Loglike = 725.539162 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.926088 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 727.022757 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 718.760268 Burning in for 400 iterations out of 500 -2 * Loglike = 679.030158 Burning in for 250 iterations out of 500 -2 * Loglike = 741.147564 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 728.239980 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.200846 Burning in for 450 iterations out of 500 -2 * Loglike = 707.007573 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 679.914073 Burning in for 300 iterations out of 500 -2 * Loglike = 721.401961 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.183270 Burning in for 500 iterations out of 500 -2 * Loglike = 726.374693 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 678.389636 Burning in for 350 iterations out of 500 -2 * Loglike = 714.156817 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 733.197620 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 712.275620 -2 * Loglike = 684.047075 Burning in for 400 iterations out of 500 -2 * Loglike = 726.157121 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.318064 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 726.421915 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 677.421597 Burning in for 450 iterations out of 500 -2 * Loglike = 726.680200 Actual update 2950 of 5000, Stored update 2950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 723.812780 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 724.574427 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 679.625400 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 = 715.590754 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 724.475829 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 722.768127 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.667381 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 678.038292 -2 * Loglike = 716.273386 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 723.028673 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 721.870007 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 726.486782 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 724.163907 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.902921 Actual update 200 of 5000, Stored update 200 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 721.312946 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.568042 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 716.035140 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 725.591803 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 729.345181 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 678.299819 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.252430 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.783531 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 724.105474 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 724.128282 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 679.923611 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 711.859025 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 724.255643 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 727.030100 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 727.657470 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.689656 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 673.239243 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 709.903493 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 727.929087 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 727.465302 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 707.253070 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 712.463237 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 679.461513 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 732.490812 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.339436 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 730.062425 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 676.699858 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 711.633347 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 717.556353 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 725.422367 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 724.242781 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 708.303818 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 692.039157 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 726.926308 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.819605 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 730.387652 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 725.175890 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.938897 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 672.024817 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 715.043992 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 727.053894 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 726.152265 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 676.668736 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 707.751544 Actual update 650 of 5000, Stored update 650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 709.948701 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 728.820861 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 727.694027 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 675.709723 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 713.417925 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.132668 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 727.910343 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 724.419344 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 716.210708 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 724.349592 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 672.881504 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 706.223919 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 725.923543 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 728.572681 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 726.152535 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 674.507145 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 714.839914 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 724.849598 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 725.270386 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.717103 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 674.470717 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 732.635922 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 709.024052 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.820081 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 738.823106 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 674.813909 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 724.254707 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.933573 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 716.090010 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 727.031230 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 672.909853 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 724.694523 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 710.875539 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.290436 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 723.365355 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 682.041166 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.121532 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 730.231508 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 720.859640 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.376190 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 673.806297 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 722.813738 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 712.757740 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.750559 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 724.029174 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 729.638031 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 679.467410 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 712.496135 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 723.378878 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 723.429349 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 674.520043 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 726.255485 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 711.445416 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.794364 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.320993 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 681.961957 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.318871 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 725.270628 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.108844 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.464397 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 724.700812 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 677.940425 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 721.863098 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 710.897953 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.774205 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 726.808145 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 724.904026 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 679.420570 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 720.362310 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 712.285099 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 726.372348 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.236603 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 724.964495 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 676.703212 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 724.414908 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 715.401383 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 716.547282 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 726.077590 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 677.975717 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.255879 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 727.956848 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 679.105003 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 713.604340 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.758251 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 738.498284 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 678.489825 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 725.087766 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 710.032863 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 715.132373 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 725.967985 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 681.599264 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 731.424307 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 723.126081 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.849409 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 724.233636 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 677.866266 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 714.563913 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 729.100393 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 712.882413 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 728.312053 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 685.930063 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.692371 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 725.304201 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 728.564174 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 714.863111 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 726.654216 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 677.117978 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 713.844865 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 728.827365 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 713.148612 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 729.049727 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 712.252564 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 678.941245 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.991911 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.119470 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 725.818535 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 715.121625 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 676.704194 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 727.132498 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 725.509777 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 727.689971 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 736.358527 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 708.553469 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.200728 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 679.362245 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 724.293584 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 724.632701 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 711.452631 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 677.922637 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 724.634300 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 727.106107 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 727.259539 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.164732 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 677.649560 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 724.117032 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 722.777957 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 725.411556 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.039004 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 674.072903 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.585456 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 729.994885 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 712.779204 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 729.594828 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 676.139819 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.238327 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.500505 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 724.958384 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 725.425119 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 707.276474 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 729.371869 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 729.712089 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 675.435543 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 709.478219 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.983102 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.089905 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 720.694000 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 674.425253 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 724.824263 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 731.064235 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 713.992689 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 715.530381 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.429465 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 714.967000 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 732.924790 Actual update 2850 of 5000, Stored update 2850 of 5000 /nogui option ignored -2 * Loglike = 712.623685 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 679.523989 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 726.352082 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.629240 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 674.434788 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 714.593891 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.301100 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 714.297384 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 716.619558 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 722.652787 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 680.265138 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 714.949662 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 679.047192 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.835285 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 723.356405 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 712.568276 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 678.733366 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 716.149026 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 726.598083 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.856722 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 678.055007 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 720.973562 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 727.167600 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 718.471025 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 680.355965 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.188842 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 725.507279 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 712.908378 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 712.744598 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.013323 Actual update 2400 of 5000, Stored update 2400 of 5000 ECHO 0 -2 * Loglike = 724.690361 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 711.258444 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 720.356574 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 675.958517 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 709.588641 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 730.054264 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 709.249753 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 674.195458 Actual update 2500 of 5000, Stored update 2500 of 5000 ECHO 0 -2 * Loglike = 716.759961 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 738.465322 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.590438 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 678.432786 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 710.635369 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 724.445480 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 715.451388 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 683.326875 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 710.818416 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 731.213237 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.907130 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 679.342294 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 727.808440 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 717.633503 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 708.321133 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 680.626262 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 712.499812 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 729.931619 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 715.272278 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 712.295282 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 678.378163 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 722.282176 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 710.089108 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 713.018236 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 680.928299 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 712.306880 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 723.694484 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 713.378005 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 712.539034 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 690.163527 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 713.203389 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 709.067642 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 724.238164 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 717.170890 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 726.403079 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 726.43 S.D. = 2.1424 S.E.M. = 0.030298 ECHO 0 Execution completed -2 * Loglike = 676.991890 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 712.855296 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 731.299639 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 679.737685 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 709.860138 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 708.924993 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 712.757240 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 679.700645 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 726.070256 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 708.041329 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 711.202218 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 676.684259 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 716.895374 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.300886 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 710.873089 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 710.872982 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 733.311611 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 712.175270 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 680.167071 Actual update 3100 of 5000, Stored update 3100 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 731.360038 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 712.583487 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 707.113285 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 676.272154 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.887121 Burning in for 100 iterations out of 500 -2 * Loglike = 732.239462 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 728.746043 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... -2 * Loglike = 707.369893 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 677.912313 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.718216 Burning in for 150 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 724.591159 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 725.481038 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 720.011251 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 676.962491 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 724.954581 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 706.349437 Burning in for 200 iterations out of 500 -2 * Loglike = 717.963243 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.855139 Burning in for 100 iterations out of 500 -2 * Loglike = 710.689889 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 681.367241 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 733.840812 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.108186 Burning in for 250 iterations out of 500 -2 * Loglike = 706.779025 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.541797 Burning in for 150 iterations out of 500 -2 * Loglike = 714.447523 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 724.742186 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.464291 Burning in for 300 iterations out of 500 -2 * Loglike = 687.776023 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 717.899946 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 709.936208 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.853906 Burning in for 200 iterations out of 500 -2 * Loglike = 722.978542 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 710.332971 Burning in for 350 iterations out of 500 -2 * Loglike = 714.281525 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 674.036314 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 717.492257 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 705.115990 Burning in for 250 iterations out of 500 -2 * Loglike = 733.145850 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 715.361471 Burning in for 400 iterations out of 500 -2 * Loglike = 714.665836 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 680.081539 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 710.257859 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 703.884032 Burning in for 300 iterations out of 500 -2 * Loglike = 708.451735 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 679.512013 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 709.651211 Burning in for 450 iterations out of 500 -2 * Loglike = 723.021421 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 708.914786 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.663486 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 703.098498 Burning in for 350 iterations out of 500 -2 * Loglike = 680.317833 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.410596 Burning in for 500 iterations out of 500 -2 * Loglike = 731.452321 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 716.465720 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 716.809258 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 709.466933 Burning in for 400 iterations out of 500 -2 * Loglike = 713.519983 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 715.582061 -2 * Loglike = 733.042038 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 710.840236 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 708.929474 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 705.404248 Burning in for 450 iterations out of 500 -2 * Loglike = 673.779081 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 715.987496 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 725.550511 Actual update 4500 of 5000, Stored update 4500 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.464443 Burning in for 500 iterations out of 500 -2 * Loglike = 719.892175 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 711.227477 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 673.423955 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 736.826427 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.311335 -2 * Loglike = 717.384134 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.112055 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 673.895603 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 731.032992 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.353829 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 711.407607 Actual update 4500 of 5000, Stored update 4500 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 715.676251 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 683.163802 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 725.205179 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 711.790411 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 724.893723 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 706.616301 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 673.589833 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.804494 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.990056 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 728.362306 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.753519 Actual update 200 of 5000, Stored update 200 of 5000 /nogui option ignored -2 * Loglike = 705.075827 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 708.953031 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 681.549008 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 716.760767 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 723.636144 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.541571 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 700.666123 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 715.094676 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 686.787861 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 715.294428 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 725.200650 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 705.466840 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.720394 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 710.085338 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 689.265864 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 713.560820 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 726.383789 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 722.081879 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 715.523976 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 711.262944 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 682.199279 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 738.480497 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 712.099669 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 703.372689 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 713.159975 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 673.937134 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 727.218099 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.070840 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 712.696600 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 718.008549 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 715.390098 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 675.827525 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 734.678797 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 719.974795 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 718.448624 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 712.062624 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 709.687414 Actual update 500 of 5000, Stored update 500 of 5000 ECHO 0 -2 * Loglike = 705.990185 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 718.894361 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.687152 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 684.351813 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 716.863370 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 716.766307 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 704.864670 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 712.536473 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 675.873265 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 713.140171 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 705.356858 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.499158 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 675.058527 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.728305 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.233547 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 681.401465 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 702.892668 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 700.839244 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 678.057681 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 711.724117 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 706.377767 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 699.608906 Actual update 650 of 5000, Stored update 650 of 5000 /nogui option ignored -2 * Loglike = 709.376263 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 684.336203 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.703737 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.503363 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 682.816163 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 716.823728 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.989877 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 674.717944 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.787995 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.751433 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 700.709341 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.632136 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 683.313801 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.610971 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 707.460240 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 705.610638 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 680.525997 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 709.665687 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 709.405616 Actual update 1000 of 5000, Stored update 1000 of 5000 ECHO 0 -2 * Loglike = 709.626291 Actual update 1250 of 5000, Stored update 1250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 674.558728 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 Burning in for 50 iterations out of 500 -2 * Loglike = 704.999319 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 700.604176 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 682.045646 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 703.471947 Burning in for 100 iterations out of 500 -2 * Loglike = 710.888968 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 704.111427 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 674.705315 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.225986 Burning in for 150 iterations out of 500 -2 * Loglike = 704.535905 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.854147 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 728.23 S.D. = 4.3158 S.E.M. = 0.061035 ECHO 0 Execution completed -2 * Loglike = 707.111259 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 677.520483 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.906534 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 715.73 S.D. = 5.6590 S.E.M. = 0.080030 ECHO 0 Execution completed -2 * Loglike = 697.577176 Burning in for 200 iterations out of 500 -2 * Loglike = 703.100722 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 680.534272 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.090424 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 701.542002 Burning in for 250 iterations out of 500 -2 * Loglike = 708.328284 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 703.451264 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 684.944364 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 713.825426 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 713.07 S.D. = 2.6932 S.E.M. = 0.038088 ECHO 0 Execution completed -2 * Loglike = 698.415916 Burning in for 300 iterations out of 500 -2 * Loglike = 706.120551 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.970959 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 675.632941 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.992855 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 707.510476 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.410639 Burning in for 350 iterations out of 500 -2 * Loglike = 687.802170 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 714.890287 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 715.900052 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 703.142235 Burning in for 400 iterations out of 500 -2 * Loglike = 706.834081 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 717.209009 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 708.508897 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 698.352337 Burning in for 450 iterations out of 500 -2 * Loglike = 703.412161 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.429204 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 705.675788 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 715.369100 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 702.220224 Burning in for 500 iterations out of 500 -2 * Loglike = 707.016635 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.452278 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.486762 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 698.794414 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 716.943560 Actual update 1650 of 5000, Stored update 1650 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 719.747661 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.505195 Burning in for 100 iterations out of 500 -2 * Loglike = 716.637908 Actual update 1700 of 5000, Stored update 1700 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.373973 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 705.280244 Burning in for 150 iterations out of 500 -2 * Loglike = 719.137374 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 701.921818 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 707.159938 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 705.022887 Burning in for 200 iterations out of 500 -2 * Loglike = 697.270446 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.388865 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.517376 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.168025 Burning in for 250 iterations out of 500 -2 * Loglike = 693.660490 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.411149 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 709.425791 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.138142 Burning in for 300 iterations out of 500 -2 * Loglike = 703.303330 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 709.879149 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.686385 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.521438 Burning in for 350 iterations out of 500 -2 * Loglike = 701.706866 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 696.690627 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 709.341354 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.187996 Burning in for 400 iterations out of 500 -2 * Loglike = 714.937772 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 710.052580 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.811838 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 708.006381 Burning in for 450 iterations out of 500 -2 * Loglike = 702.039461 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.434828 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 720.277484 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.667540 Burning in for 500 iterations out of 500 -2 * Loglike = 699.354681 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 703.000383 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.693431 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.735203 -2 * Loglike = 704.776346 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.451326 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.935968 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 708.416789 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.765857 Actual update 2550 of 5000, Stored update 2550 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 710.129920 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 711.600631 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 693.370175 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 709.052365 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.779339 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 708.918638 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.099551 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.456172 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 674.127403 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 679.11 S.D. = 4.1623 S.E.M. = 0.058863 ECHO 0 Execution completed -2 * Loglike = 704.975060 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.900031 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 708.062918 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.393971 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 708.987729 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 708.088681 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.192407 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.072249 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 713.298472 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 706.711088 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 701.170031 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.163229 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.475143 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 719.288474 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.827146 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 702.236859 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 704.821647 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.276084 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 706.436751 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.772447 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 705.578067 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 711.228952 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 718.915440 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 701.201837 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 705.070465 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 706.053906 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 703.661998 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.808132 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 704.687217 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 704.206750 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 704.475105 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.728469 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 707.228626 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 703.424356 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 708.827836 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.207988 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.259177 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 706.839324 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.253725 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.086388 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.017731 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 712.281347 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 706.397580 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.247466 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.195767 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.355884 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.596700 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 711.443070 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 702.172804 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.145098 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 705.562447 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.567602 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.174278 Actual update 3000 of 5000, Stored update 3000 of 5000 /nogui option ignored -2 * Loglike = 698.619516 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.079640 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.595051 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 702.549638 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 706.029058 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.732222 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.349615 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 712.968965 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 698.571166 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.607028 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.565852 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 711.386064 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 710.703226 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.375086 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 702.150840 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.453468 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 704.843688 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.357684 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.623461 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.313081 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 705.542232 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.687481 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.088784 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 706.134554 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 714.786661 Actual update 3250 of 5000, Stored update 3250 of 5000 ECHO 0 -2 * Loglike = 707.489200 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 708.789943 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 713.134496 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 707.102428 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.560117 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.462524 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.472073 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 712.505712 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.658261 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 711.004320 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 704.152752 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 709.344435 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.740066 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.779729 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 695.690095 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 705.144772 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 713.629195 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 707.253049 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.378293 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.378602 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 706.012143 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 705.791249 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.724398 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.110271 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.452452 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 694.443720 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.360430 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 704.705757 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 698.114512 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 695.455738 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 707.430030 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.394168 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.562643 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.574942 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 716.663737 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 700.581632 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 707.668605 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.339683 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 706.621118 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 707.454616 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 704.862698 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.472760 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 702.654748 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 714.473183 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.210134 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.880403 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 714.963327 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 714.501520 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 699.525312 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 704.597125 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.116842 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 721.734428 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.820098 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.043435 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 712.611045 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 717.527001 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 696.086736 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 706.826360 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 714.380685 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 708.722949 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.729587 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.227065 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 708.552713 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 703.450915 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.322373 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.917450 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.223797 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 717.236599 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 709.228897 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 707.386126 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 706.729264 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.662168 Actual update 4600 of 5000, Stored update 4600 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 705.704586 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.629426 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.910865 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 710.232515 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 705.248293 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.589549 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.204774 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 705.548470 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 709.109705 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 719.792608 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.993177 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 708.343332 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 706.433989 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 701.095758 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 699.963467 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 708.707474 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 707.561448 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 707.666272 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 702.430978 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 715.748349 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 705.041616 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 708.212767 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.842374 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.243310 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.902392 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 700.331793 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.874968 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 698.941984 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 707.157225 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 714.758470 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.614276 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 706.275838 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 721.660287 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 704.645496 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.891882 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 701.120509 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 711.341245 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.564842 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 707.552800 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.228800 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.547724 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 699.762126 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 708.983259 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.337527 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 702.877947 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 707.855137 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 699.754995 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 708.940021 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.741485 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.772808 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.362849 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 721.376632 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.593139 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 706.154749 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.297100 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 716.681950 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 708.018887 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 717.836607 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 697.538350 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.852712 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.194636 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 704.585965 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.172051 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 706.191294 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.791974 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 705.097075 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 695.380154 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 706.415262 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.879255 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 709.520125 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 700.852731 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.537748 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.08 S.D. = 4.4632 S.E.M. = 0.063120 ECHO 0 Execution completed -2 * Loglike = 707.890997 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 702.284876 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.021871 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.755937 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 694.401266 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.672065 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 697.473829 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.674916 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 706.703301 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.590713 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 708.106638 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.085439 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 693.399098 Actual update 3800 of 5000, Stored update 3800 of 5000 /nogui option ignored -2 * Loglike = 706.652956 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.243177 Actual update 3850 of 5000, Stored update 3850 of 5000 /nogui option ignored -2 * Loglike = 704.995517 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.850910 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.06 S.D. = 6.0714 S.E.M. = 0.085862 ECHO 0 Execution completed -2 * Loglike = 703.789484 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 713.082176 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 712.299540 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 705.044354 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.681851 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 705.250951 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.455875 Actual update 4050 of 5000, Stored update 4050 of 5000 ECHO 0 -2 * Loglike = 710.640557 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 697.293124 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.295794 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 704.078818 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 708.535370 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 704.536243 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 696.994251 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 705.314834 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 695.058673 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 707.959804 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.384108 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.727807 Actual update 4200 of 5000, Stored update 4200 of 5000 /nogui option ignored -2 * Loglike = 699.658438 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 704.846974 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 703.120032 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 708.481571 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 708.669072 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 704.648664 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 697.504656 Actual update 4500 of 5000, Stored update 4500 of 5000 /nogui option ignored -2 * Loglike = 711.325853 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 699.983228 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 708.771099 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 699.319972 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.947496 Actual update 4500 of 5000, Stored update 4500 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed ECHO 0 ECHO 0 -2 * Loglike = 707.731394 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.946265 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.656431 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 714.139938 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.018138 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 696.030230 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.503030 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.029181 Actual update 4700 of 5000, Stored update 4700 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 700.626609 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 704.982723 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 701.878820 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 706.939070 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.713144 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 687.322392 Burning in for 100 iterations out of 500 -2 * Loglike = 701.474523 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 706.458885 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 681.004039 Burning in for 150 iterations out of 500 -2 * Loglike = 710.076395 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 680.420553 Burning in for 200 iterations out of 500 -2 * Loglike = 683.487299 Burning in for 250 iterations out of 500 -2 * Loglike = 705.534688 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 688.518637 Burning in for 300 iterations out of 500 -2 * Loglike = 705.619595 Actual update 5000 of 5000, Stored update 5000 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 699.083221 Burning in for 350 iterations out of 500 -2 * Loglike = 701.570526 Burning in for 400 iterations out of 500 -2 * Loglike = 683.161091 Burning in for 450 iterations out of 500 -2 * Loglike = 686.806306 Burning in for 500 iterations out of 500 -2 * Loglike = 683.120098 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 ERAS G30 LINK 0 G30 ERAS 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.169571 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 690.319084 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 694.302262 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 700.01 S.D. = 4.6183 S.E.M. = 0.065313 ECHO 0 Execution completed -2 * Loglike = 679.201886 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 688.840060 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 682.507864 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 696.114650 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 707.287553 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.95 S.D. = 2.1599 S.E.M. = 0.030545 ECHO 0 Execution completed -2 * Loglike = 678.844989 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 682.909630 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 683.191112 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 679.193622 Actual update 550 of 5000, Stored update 550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 683.946346 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 681.678833 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 680.767611 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 679.365188 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 692.697431 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 680.100149 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 687.867343 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 679.913567 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 692.913686 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 697.350188 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.413721 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 681.987939 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 685.084767 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 686.556941 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 684.251000 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 690.957016 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.351122 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 697.433014 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.835084 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.954554 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 683.948981 Actual update 1600 of 5000, Stored update 1600 of 5000 ECHO 0 -2 * Loglike = 686.769148 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 684.539521 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 687.421568 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 680.857190 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 683.648336 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 682.310913 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 681.546408 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 691.176766 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 688.947103 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 683.018152 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 685.750533 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 684.148127 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.411478 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 699.443345 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 685.784538 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 700.316936 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 683.987168 Actual update 2450 of 5000, Stored update 2450 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 707.517250 Burning in for 100 iterations out of 500 -2 * Loglike = 681.098896 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 703.845277 Burning in for 150 iterations out of 500 -2 * Loglike = 683.710215 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 705.179382 Burning in for 200 iterations out of 500 -2 * Loglike = 703.200516 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.232044 Burning in for 250 iterations out of 500 -2 * Loglike = 709.351299 Burning in for 300 iterations out of 500 -2 * Loglike = 707.364709 Burning in for 350 iterations out of 500 -2 * Loglike = 691.370821 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 686.857043 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 713.302183 Burning in for 400 iterations out of 500 -2 * Loglike = 684.568594 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 687.223333 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 707.005656 Burning in for 450 iterations out of 500 -2 * Loglike = 688.578717 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.890709 Burning in for 500 iterations out of 500 -2 * Loglike = 683.273762 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.153754 -2 * Loglike = 687.934682 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 695.131362 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 = 708.338740 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 682.220209 Actual update 3050 of 5000, Stored update 3050 of 5000 /nogui option ignored -2 * Loglike = 709.124035 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 684.765557 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 702.286732 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.736537 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 682.862770 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 705.728830 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 685.852748 Actual update 3200 of 5000, Stored update 3200 of 5000 ECHO 0 -2 * Loglike = 721.403132 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 682.761009 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 700.927719 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 686.681087 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 712.380804 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 693.647178 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 705.273063 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 680.145728 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 703.047464 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 686.048437 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.757973 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 684.457312 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.028575 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 685.484129 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 704.316752 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 681.272597 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.193493 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 680.520306 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 708.693224 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 680.149744 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.310670 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 690.709268 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 707.358019 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 679.656390 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 707.252785 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 687.353105 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 710.640707 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 700.529180 Actual update 3900 of 5000, Stored update 3900 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 700.559217 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 689.681250 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 703.991680 Actual update 1050 of 5000, Stored update 1050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 678.309872 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 683.335113 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 691.316027 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.230858 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 708.916446 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.333572 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 706.028552 Actual update 1150 of 5000, Stored update 1150 of 5000 /nogui option ignored -2 * Loglike = 687.490084 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 706.995308 Actual update 1200 of 5000, Stored update 1200 of 5000 /nogui option ignored /nogui option ignored -2 * Loglike = 707.236360 Actual update 1250 of 5000, Stored update 1250 of 5000 /nogui option ignored -2 * Loglike = 689.146372 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.065710 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.424951 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 689.379780 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 708.119748 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.181076 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 706.303048 Actual update 1400 of 5000, Stored update 1400 of 5000 ECHO 0 -2 * Loglike = 688.820595 Actual update 4550 of 5000, Stored update 4550 of 5000 /nogui option ignored ECHO 0 -2 * Loglike = 719.888603 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 681.448906 Actual update 4600 of 5000, Stored update 4600 of 5000 ECHO 0 ECHO 0 -2 * Loglike = 706.927402 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 682.198543 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 704.697539 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 690.209043 Actual update 4700 of 5000, Stored update 4700 of 5000 /nogui option ignored -2 * Loglike = 705.861564 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 681.745941 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 683.784129 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 708.354529 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.107257 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 688.280414 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 707.890734 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 679.731075 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 705.122577 Actual update 1750 of 5000, Stored update 1750 of 5000 ECHO 0 -2 * Loglike = 691.035723 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.820142 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 704.341025 Actual update 1850 of 5000, Stored update 1850 of 5000 ECHO 0 -2 * Loglike = 704.367082 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.830014 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 717.750566 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 705.325822 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... Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed Burning in for 50 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 701.302078 Burning in for 100 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 702.790865 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 693.353040 Burning in for 150 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 708.593922 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 697.030454 Burning in for 200 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 703.575379 Burning in for 100 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 694.137233 Burning in for 250 iterations out of 500 -2 * Loglike = 709.115788 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 698.092886 Burning in for 150 iterations out of 500 -2 * Loglike = 688.767667 Burning in for 100 iterations out of 500 -2 * Loglike = 697.861282 Burning in for 300 iterations out of 500 -2 * Loglike = 709.921773 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.670652 Burning in for 200 iterations out of 500 -2 * Loglike = 689.590429 Burning in for 150 iterations out of 500 -2 * Loglike = 694.352900 Burning in for 350 iterations out of 500 -2 * Loglike = 706.646364 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.812325 Burning in for 250 iterations out of 500 -2 * Loglike = 690.667557 Burning in for 200 iterations out of 500 -2 * Loglike = 702.051023 Burning in for 400 iterations out of 500 -2 * Loglike = 708.402191 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 695.396830 Burning in for 250 iterations out of 500 -2 * Loglike = 698.349223 Burning in for 300 iterations out of 500 -2 * Loglike = 696.185619 Burning in for 450 iterations out of 500 -2 * Loglike = 714.784396 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 694.867138 Burning in for 300 iterations out of 500 -2 * Loglike = 701.342582 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 681.094421 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 687.55 S.D. = 5.5130 S.E.M. = 0.077966 ECHO 0 Execution completed -2 * Loglike = 693.701387 Burning in for 350 iterations out of 500 Burning in for 50 iterations out of 500 -2 * Loglike = 697.892592 Burning in for 500 iterations out of 500 -2 * Loglike = 704.501502 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 706.052963 Burning in for 400 iterations out of 500 -2 * Loglike = 698.147245 Burning in for 400 iterations out of 500 -2 * Loglike = 693.734090 Burning in for 100 iterations out of 500 -2 * Loglike = 701.602125 Burning in for 450 iterations out of 500 -2 * Loglike = 698.620139 -2 * Loglike = 703.942613 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 694.988675 Burning in for 450 iterations out of 500 -2 * Loglike = 702.592356 Burning in for 500 iterations out of 500 -2 * Loglike = 691.079221 Burning in for 150 iterations out of 500 -2 * Loglike = 705.990995 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 694.457664 Burning in for 500 iterations out of 500 -2 * Loglike = 700.472629 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 692.316204 Burning in for 200 iterations out of 500 -2 * Loglike = 693.476139 -2 * Loglike = 698.081671 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 710.181357 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 = 695.580025 Burning in for 250 iterations out of 500 -2 * Loglike = 698.937080 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 = 704.605408 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 704.759692 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 696.231991 Burning in for 300 iterations out of 500 -2 * Loglike = 692.060281 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 700.432558 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.468192 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.930487 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 694.368860 Burning in for 350 iterations out of 500 -2 * Loglike = 702.929479 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.112482 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 696.065619 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 706.830969 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.374981 Burning in for 400 iterations out of 500 -2 * Loglike = 695.315693 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.101390 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 687.960711 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 710.090186 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 694.429343 Burning in for 450 iterations out of 500 -2 * Loglike = 710.308064 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 700.508810 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 693.328027 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 690.833302 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.374550 Burning in for 500 iterations out of 500 -2 * Loglike = 716.013608 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 690.566013 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 714.886494 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.382613 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 705.653025 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.751586 -2 * Loglike = 706.477394 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 706.759087 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.447644 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.539711 Actual update 2950 of 5000, Stored update 2950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 686.624441 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.619270 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.131636 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.820636 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 694.964567 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.536266 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 698.337839 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 704.520268 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.063746 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 696.823418 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 688.039028 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.494704 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 707.540461 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.646532 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 688.317172 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 693.477338 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 704.064610 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.279855 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 693.117098 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.830114 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 699.835801 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 693.034114 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.387173 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 686.987901 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.625282 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.566994 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 705.532133 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 701.577064 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.800927 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.208674 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.268258 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.895596 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.146078 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 692.691562 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 717.047514 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 711.550525 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 694.090702 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.357488 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.747085 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 686.762994 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.522237 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 691.874476 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 698.815488 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.803880 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.636917 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.272860 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 699.877091 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 690.152275 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.322821 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.080532 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 700.189338 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 706.333331 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 691.894635 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 689.816135 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 710.045272 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 706.959565 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 705.235022 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.519054 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 689.554650 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.815496 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 706.813445 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.887957 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.198024 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.865895 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 703.347018 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 702.781677 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.837705 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 689.311695 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 688.409765 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 701.403616 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 703.441443 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 692.918126 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 700.156913 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 697.385593 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 695.568177 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 710.901901 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.963562 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 696.421487 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.925691 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 690.501396 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 706.136980 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.181038 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 696.936980 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.220844 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 710.149884 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.421046 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 693.801170 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 703.233707 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 706.302681 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 714.798165 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 694.809888 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.650946 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 689.951372 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 709.719163 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 711.019049 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 698.592638 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.613233 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.021608 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 710.803380 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 690.837786 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.091958 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 688.443513 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.159879 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 711.732105 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.468211 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 699.391115 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 704.159584 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 703.518728 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 709.912597 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.349211 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 693.571146 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 704.212366 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 709.523041 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 692.992724 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 712.724642 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 710.490691 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 693.906838 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 687.810492 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 706.399591 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 693.311245 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 700.928306 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 694.429714 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 704.241157 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 705.123864 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 692.181422 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 693.003109 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 702.955056 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.900942 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 698.141406 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 692.186806 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.711038 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 698.710258 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 714.055604 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.686038 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 687.311876 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 693.218463 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.867492 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.083638 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.519936 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.060751 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.352683 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 696.741834 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 690.647341 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.567708 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 691.580640 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 694.463887 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 690.917618 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.652713 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 694.215229 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 711.267226 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 702.361124 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.311105 Actual update 1550 of 5000, Stored update 1550 of 5000 /nogui option ignored -2 * Loglike = 708.681315 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 693.842347 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.877081 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.732595 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 701.926924 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.918176 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 698.064604 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 704.482869 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 717.899919 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.739529 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.188321 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 705.143412 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 695.542591 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 704.357610 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.635230 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 711.862977 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 705.788747 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 692.644555 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.877805 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 704.356249 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 699.502068 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 694.307782 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 692.250237 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 689.049209 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 708.993756 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 712.058938 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 695.022965 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 691.354560 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.113416 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 703.254323 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 706.856547 Actual update 2350 of 5000, Stored update 2350 of 5000 /nogui option ignored -2 * Loglike = 697.215094 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.362660 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 705.778301 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.586906 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.265070 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.272859 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.860889 Actual update 2250 of 5000, Stored update 2250 of 5000 ECHO 0 -2 * Loglike = 705.187021 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 699.363518 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.895818 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.676366 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 700.456096 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 722.154167 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.965392 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 705.168076 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.443708 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.255015 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 706.383810 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 707.010327 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 692.545291 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 692.180354 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.140358 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 718.749279 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 689.596750 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 713.434956 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.364705 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 696.615356 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.064821 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 694.956132 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 693.901252 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 697.527142 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.512848 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 702.162086 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 697.771733 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 695.256962 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.600569 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 703.049371 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 693.642328 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.221027 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 707.444196 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 704.094128 Actual update 2800 of 5000, Stored update 2800 of 5000 ECHO 0 -2 * Loglike = 696.196476 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 696.178315 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 699.273008 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 712.907053 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 700.936533 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 696.117681 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.090481 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 702.221320 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 691.822715 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 691.632231 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 695.790027 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 697.330702 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.316447 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.688369 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 704.993650 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 699.869512 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 693.454276 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.634065 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 690.559066 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 698.673547 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 705.359714 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 703.661396 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.076570 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.076084 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 692.949915 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 703.136637 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 699.777594 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 691.690873 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.320636 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.375424 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.823384 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 702.015647 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 690.647676 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 694.078105 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 705.429396 Actual update 3250 of 5000, Stored update 3250 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 701.602288 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 689.698767 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 697.407757 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 703.641515 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 707.672560 Burning in for 100 iterations out of 500 -2 * Loglike = 695.534784 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 696.387216 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 704.635711 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 698.825539 Burning in for 150 iterations out of 500 -2 * Loglike = 709.048829 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 703.997353 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.631334 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 694.061877 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 700.248390 Burning in for 200 iterations out of 500 -2 * Loglike = 697.879604 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 690.052059 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 694.334496 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.753947 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.469034 Burning in for 250 iterations out of 500 -2 * Loglike = 702.510523 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.032104 Burning in for 300 iterations out of 500 -2 * Loglike = 692.207296 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 692.229480 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 699.581524 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 704.758198 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 691.943366 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 703.981037 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 697.246470 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 696.008605 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.366973 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 707.92 S.D. = 4.3538 S.E.M. = 0.061573 ECHO 0 Execution completed -2 * Loglike = 709.535400 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 713.668116 Burning in for 350 iterations out of 500 -2 * Loglike = 695.094934 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 687.224034 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 704.746003 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 691.007706 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 701.403675 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 693.645414 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.634758 Burning in for 400 iterations out of 500 -2 * Loglike = 690.693446 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.409420 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... -2 * Loglike = 702.306008 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 692.516625 Actual update 3200 of 5000, Stored update 3200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 696.859369 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 701.009357 Burning in for 450 iterations out of 500 -2 * Loglike = 706.050793 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 692.781123 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 721.011393 Burning in for 100 iterations out of 500 -2 * Loglike = 692.444674 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 691.919754 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 706.686036 Burning in for 500 iterations out of 500 -2 * Loglike = 702.425528 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 699.658250 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 721.298295 Burning in for 150 iterations out of 500 -2 * Loglike = 710.779099 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 708.356415 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 705.882847 -2 * Loglike = 697.407293 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 721.689177 Burning in for 200 iterations out of 500 -2 * Loglike = 718.650241 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.431126 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 704.090446 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 715.968991 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 723.664016 Burning in for 250 iterations out of 500 -2 * Loglike = 714.585217 Actual update 3950 of 5000, Stored update 3950 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 /nogui option ignored -2 * Loglike = 697.340907 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 690.941276 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 712.342775 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 727.458313 Burning in for 300 iterations out of 500 -2 * Loglike = 695.889108 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.353441 Actual update 4000 of 5000, Stored update 4000 of 5000 /nogui option ignored -2 * Loglike = 693.200174 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 724.841721 Burning in for 350 iterations out of 500 -2 * Loglike = 697.368694 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 713.895157 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.962420 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.764016 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 729.808287 Burning in for 400 iterations out of 500 -2 * Loglike = 692.576182 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 695.052582 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 696.654633 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 712.876169 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 728.367079 Burning in for 450 iterations out of 500 -2 * Loglike = 689.098299 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 692.653006 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.023289 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 697.910434 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 709.430577 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 725.662212 Burning in for 500 iterations out of 500 -2 * Loglike = 704.031384 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 698.992652 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 699.057794 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.947458 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.587478 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 713.846530 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 728.629476 -2 * Loglike = 690.057345 Actual update 4200 of 5000, Stored update 4200 of 5000 ECHO 0 -2 * Loglike = 690.097815 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 697.605528 Actual update 4250 of 5000, Stored update 4250 of 5000 ECHO 0 -2 * Loglike = 702.188283 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 708.341060 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 690.618206 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 713.215670 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 688.312025 Actual update 4250 of 5000, Stored update 4250 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 714.998702 Actual update 3900 of 5000, Stored update 3900 of 5000 /nogui option ignored -2 * Loglike = 713.673918 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.890242 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.049876 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 700.114837 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 711.356973 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 722.982729 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 698.001464 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 705.766982 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 698.416623 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.106673 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 690.322858 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 738.259457 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 710.281940 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 709.763002 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 700.052051 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 695.605364 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 692.523900 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 733.999153 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 698.163982 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 702.530273 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 710.538730 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 700.764613 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.998765 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 729.090055 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 704.483917 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.209747 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 699.017893 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 714.685740 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 703.459177 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 691.421018 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 721.814805 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.917525 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 707.252866 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.266586 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 709.984329 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 701.872698 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 737.940588 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 691.997768 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 698.623588 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 710.281752 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 699.733309 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.980516 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 718.977959 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 690.871769 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 697.441194 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 707.865977 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.243275 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 691.672574 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 735.615746 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 699.526029 Actual update 4150 of 5000, Stored update 4150 of 5000 ECHO 0 -2 * Loglike = 697.625257 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.237706 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 721.454387 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.120213 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 699.391674 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.345082 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.263515 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.045741 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 720.811340 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 701.661135 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 712.554332 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.126380 Actual update 4250 of 5000, Stored update 4250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 692.382100 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 706.993845 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 722.685675 Actual update 600 of 5000, Stored update 600 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 711.705642 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 697.736053 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 701.987700 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.629361 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 = 706.276389 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 721.922986 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.312275 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.573869 Burning in for 100 iterations out of 500 -2 * Loglike = 700.439941 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 690.676676 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.260220 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 700.714068 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 735.306818 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 710.458831 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.594889 Burning in for 150 iterations out of 500 -2 * Loglike = 702.840378 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.719248 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 697.466130 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 709.054904 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 718.412554 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 697.950306 Burning in for 200 iterations out of 500 -2 * Loglike = 698.625971 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 696.085080 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 702.169407 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 709.368043 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 735.065737 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.914925 Burning in for 250 iterations out of 500 -2 * Loglike = 693.368881 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 691.048517 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 713.877150 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 696.279718 Burning in for 300 iterations out of 500 -2 * Loglike = 725.397754 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 708.174400 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 707.290402 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 700.174807 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.865672 Burning in for 350 iterations out of 500 -2 * Loglike = 722.996333 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 695.250017 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 702.674966 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 699.706252 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.232728 Burning in for 400 iterations out of 500 -2 * Loglike = 695.589733 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 727.292859 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 701.428432 Burning in for 450 iterations out of 500 -2 * Loglike = 691.611492 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 697.605930 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 697.863619 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 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 733.959789 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 702.947830 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.861024 Actual update 4700 of 5000, Stored update 4700 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 698.086948 -2 * Loglike = 699.560984 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 723.173199 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 690.164675 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.315733 Burning in for 100 iterations out of 500 -2 * Loglike = 699.029492 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 708.326463 Actual update 1350 of 5000, Stored update 1350 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 683.343150 Burning in for 150 iterations out of 500 -2 * Loglike = 694.539206 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.031981 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 701.575706 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 685.780264 Burning in for 200 iterations out of 500 -2 * Loglike = 709.191658 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 707.137656 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 724.503101 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 692.595528 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 701.296946 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 688.064215 Burning in for 250 iterations out of 500 -2 * Loglike = 710.677434 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 725.753357 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 684.623536 Burning in for 300 iterations out of 500 -2 * Loglike = 697.686852 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.658784 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 709.459644 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 724.390959 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.605281 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 685.420379 Burning in for 350 iterations out of 500 -2 * Loglike = 694.670132 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 696.989855 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 704.62 S.D. = 5.2807 S.E.M. = 0.074680 ECHO 0 Execution completed -2 * Loglike = 688.349712 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 694.29 S.D. = 5.6623 S.E.M. = 0.080077 ECHO 0 Execution completed -2 * Loglike = 709.509161 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 725.122568 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.640335 Burning in for 400 iterations out of 500 -2 * Loglike = 697.750727 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 708.666910 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 710.166484 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 686.279108 Burning in for 450 iterations out of 500 -2 * Loglike = 720.072733 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 708.059669 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 687.611906 Burning in for 500 iterations out of 500 -2 * Loglike = 711.130195 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 723.229966 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.091071 -2 * Loglike = 696.407761 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.249249 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 733.597667 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.658712 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 735.372477 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 709.376422 Actual update 1750 of 5000, Stored update 1750 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 696.803094 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 696.775741 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 738.537129 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 689.746916 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 693.532072 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 703.576180 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 733.646918 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 685.896824 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.007046 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 699.491529 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 720.704001 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 682.044080 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 697.923949 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 700.715153 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 727.859745 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 689.978851 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 712.927139 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 699.107979 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 726.370843 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 685.427417 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 705.976269 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 691.668883 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 733.813268 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.439512 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.868271 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 699.919871 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 718.829231 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 680.289381 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 710.155638 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 699.27 S.D. = 5.2483 S.E.M. = 0.074222 ECHO 0 Execution completed -2 * Loglike = 704.178164 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.588658 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 720.467733 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 690.600908 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 701.151539 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 684.579536 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 701.896309 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 728.576995 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.455880 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 681.381671 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 696.649479 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 724.876875 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 684.926656 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 703.779718 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 711.201066 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 698.039842 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 683.669062 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 731.847946 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 684.439122 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.769920 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 705.649414 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 724.721267 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 712.589950 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 697.291696 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 721.493767 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 681.402086 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.579329 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.683092 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 727.119062 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 706.286495 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 689.375345 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 732.253250 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 689.618615 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 695.28 S.D. = 4.4876 S.E.M. = 0.063465 ECHO 0 Execution completed -2 * Loglike = 682.187762 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 697.130791 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 727.165611 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 688.276154 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 696.513198 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 693.666786 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 683.017600 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 725.021142 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 716.110473 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 692.097966 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.389145 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 698.002967 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.380886 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 688.951846 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 697.483156 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 705.187245 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 686.457882 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 730.475194 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.501173 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 702.607878 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 700.150462 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 704.297951 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 685.498259 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 722.512500 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.257208 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 704.885160 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 697.668989 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 724.956485 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 685.813213 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 701.478327 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.061722 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 728.248436 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 697.027593 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 710.069451 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 732.489372 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 686.819397 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 701.468213 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 726.020541 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 708.092420 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 691.042431 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 692.270617 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 691.546839 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.925958 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 696.736659 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 725.398755 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 691.271448 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 701.045320 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 699.214092 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 722.757248 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 695.075258 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 710.082086 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 695.907896 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 729.589868 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 698.943188 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 685.320033 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 695.841854 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 727.418818 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 699.467070 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 692.867312 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 700.291415 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 725.943171 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 705.282844 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 686.893827 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 697.596909 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 727.007349 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 689.963527 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 713.736698 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 695.608556 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 727.992547 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 686.704288 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 697.838248 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 724.513044 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 699.221558 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 693.671830 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 686.911407 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 700.023617 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 705.340804 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.174510 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.195301 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 683.430219 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 703.056990 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 723.526307 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 682.364909 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 697.827565 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 703.560206 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 683.273996 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 722.941484 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.504797 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 682.289636 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 703.444794 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.721262 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.102091 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 703.898717 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.776535 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 697.877965 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 728.495126 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 688.077451 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 699.136421 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 703.837394 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 735.129534 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 683.658307 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.306224 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 723.149819 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 699.175942 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 700.133880 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 686.926819 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 726.888540 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 695.135138 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 702.790556 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 722.297039 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 686.455601 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 693.111892 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.386148 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 701.624301 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 685.545955 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 728.419335 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 695.470464 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 712.189270 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.168549 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 718.881325 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.779757 Actual update 2900 of 5000, Stored update 2900 of 5000 /nogui option ignored -2 * Loglike = 690.286653 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 707.255425 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 722.668858 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 699.413329 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 694.131443 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 698.573470 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 723.199320 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 697.416821 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 683.951573 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 699.723044 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 728.295952 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.738855 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.062136 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 683.939585 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.308056 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 725.595578 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.530227 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 696.564516 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.780982 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 735.032765 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.199084 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 695.967102 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 739.831864 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 691.050520 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.788459 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.167082 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 734.718936 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 690.041598 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.091029 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 700.791941 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 708.573202 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 728.058145 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 686.172058 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 699.719520 Actual update 3350 of 5000, Stored update 3350 of 5000 ECHO 0 -2 * Loglike = 686.740844 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 710.522134 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 733.111482 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.525076 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 705.855060 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 687.859622 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 722.170151 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 698.107833 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.075389 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 733.406562 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.316315 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 697.364165 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 685.954424 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 721.879413 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 711.124106 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.228710 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 686.397881 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 699.379387 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 719.262620 Actual update 4250 of 5000, Stored update 4250 of 5000 /nogui option ignored -2 * Loglike = 697.391997 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 690.477308 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 705.608439 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 738.547837 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 698.906112 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 687.141727 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 700.861238 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 730.427039 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 698.287570 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.586910 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.196776 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 726.538643 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 705.764811 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 702.863864 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 683.064301 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 729.461195 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.342187 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 709.088796 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 687.723768 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 696.999650 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 724.855804 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.418218 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 703.255629 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 702.994425 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.494970 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.211652 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 734.333533 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 699.680106 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 694.152930 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 729.419205 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 695.371774 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 682.738448 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.324183 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 727.117950 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 688.340705 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 696.431392 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 733.814654 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 701.529067 Actual update 4150 of 5000, Stored update 4150 of 5000 ECHO 0 -2 * Loglike = 691.550502 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 720.157839 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.376411 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 688.335420 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 724.266857 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 691.680546 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 681.963975 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 724.411758 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 700.981028 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 683.287464 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 739.849455 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 682.686531 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.099847 Actual update 4350 of 5000, Stored update 4350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 691.926471 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 735.252620 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.429431 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 731.254334 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 684.622108 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 701.459825 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 698.097704 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 698.738569 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 708.191783 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.649774 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 704.689978 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 686.389647 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.601452 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 683.301848 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 697.005476 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 685.204043 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 700.734742 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 691.459851 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 698.077349 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.636435 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 706.08 S.D. = 5.0365 S.E.M. = 0.071227 ECHO 0 Execution completed -2 * Loglike = 684.611358 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.304192 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 683.254205 Actual update 4250 of 5000, Stored update 4250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 697.685264 Actual update 4850 of 5000, Stored update 4850 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 693.221876 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 701.733514 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 732.245777 Burning in for 100 iterations out of 500 -2 * Loglike = 698.674771 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 726.921953 Burning in for 150 iterations out of 500 -2 * Loglike = 687.834423 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 695.491390 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 731.175860 Burning in for 200 iterations out of 500 -2 * Loglike = 691.839155 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 727.163585 Burning in for 250 iterations out of 500 -2 * Loglike = 691.781633 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 731.501775 Burning in for 300 iterations out of 500 -2 * Loglike = 683.244923 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 733.647009 Burning in for 350 iterations out of 500 -2 * Loglike = 690.198824 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 737.438995 Burning in for 400 iterations out of 500 /nogui option ignored -2 * Loglike = 691.908322 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 735.218988 Burning in for 450 iterations out of 500 -2 * Loglike = 729.867387 Burning in for 500 iterations out of 500 -2 * Loglike = 719.916501 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 727.44 S.D. = 5.4240 S.E.M. = 0.076707 ECHO 0 Execution completed -2 * Loglike = 680.947185 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 733.310971 -2 * Loglike = 698.145762 Actual update 4700 of 5000, Stored update 4700 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 683.790077 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 733.414256 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 684.988287 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 736.004266 Actual update 150 of 5000, Stored update 150 of 5000 ECHO 0 -2 * Loglike = 732.065333 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 687.253564 Actual update 4850 of 5000, Stored update 4850 of 5000 /nogui option ignored -2 * Loglike = 736.033690 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 691.040242 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 733.823702 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 685.979433 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 743.683379 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 699.473675 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 730.500138 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 696.736934 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 698.34 S.D. = 2.7567 S.E.M. = 0.038986 ECHO 0 Execution completed -2 * Loglike = 732.915787 Actual update 450 of 5000, Stored update 450 of 5000 ECHO 0 -2 * Loglike = 731.649897 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 728.358347 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 732.886784 Actual update 600 of 5000, Stored update 600 of 5000 /nogui option ignored -2 * Loglike = 729.872147 Actual update 650 of 5000, Stored update 650 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 734.406048 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 726.639089 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 734.530902 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 731.165979 Actual update 850 of 5000, Stored update 850 of 5000 /nogui option ignored -2 * Loglike = 736.749477 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 731.651133 Actual update 950 of 5000, Stored update 950 of 5000 ECHO 0 -2 * Loglike = 738.096879 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 732.714159 Actual update 1050 of 5000, Stored update 1050 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 732.160831 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 731.147557 Actual update 1150 of 5000, Stored update 1150 of 5000 ECHO 0 -2 * Loglike = 731.801707 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 682.014050 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 688.57 S.D. = 5.3500 S.E.M. = 0.075660 ECHO 0 Execution completed -2 * Loglike = 730.628419 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 731.904051 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 735.122634 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 733.119154 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 733.534824 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 735.160267 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 731.801972 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 = 732.789703 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 735.431471 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 = 733.205108 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 736.075153 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 727.925346 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 729.986327 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 733.884150 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 730.794553 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 731.551294 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 734.070116 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 728.981622 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 726.514788 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 733.337105 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 733.214173 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 734.825511 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 729.572833 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 735.833325 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 734.826255 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 733.028386 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 734.503559 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 738.339962 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 732.902351 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 729.735246 Actual update 2700 of 5000, Stored update 2700 of 5000 /nogui option ignored -2 * Loglike = 727.852003 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 736.470779 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 728.682443 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 732.736291 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 735.409774 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 733.215868 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 733.441339 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 727.992697 Actual update 3100 of 5000, Stored update 3100 of 5000 ECHO 0 -2 * Loglike = 731.341181 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 733.671309 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 734.652092 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 737.920523 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 733.491610 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 731.672751 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 733.000534 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 731.348824 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 731.547269 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 732.027659 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 730.357700 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 732.019801 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 740.141207 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 729.381843 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 733.651092 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 737.688329 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 734.047818 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 731.500286 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 729.681991 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 734.614182 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 735.877139 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 733.637850 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.412357 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 735.661274 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 732.490116 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 734.803082 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 735.591267 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 732.818421 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 736.505050 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 734.990335 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 733.637655 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 735.554140 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 732.573093 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 730.745652 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 731.256179 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 736.103622 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 732.867585 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 732.284491 Actual update 5000 of 5000, Stored update 5000 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... Burning in for 50 iterations out of 500 -2 * Loglike = 714.701604 Burning in for 100 iterations out of 500 -2 * Loglike = 706.228855 Burning in for 150 iterations out of 500 -2 * Loglike = 708.226619 Burning in for 200 iterations out of 500 -2 * Loglike = 712.166270 Burning in for 250 iterations out of 500 -2 * Loglike = 710.776014 Burning in for 300 iterations out of 500 -2 * Loglike = 710.565548 Burning in for 350 iterations out of 500 -2 * Loglike = 714.834542 Burning in for 400 iterations out of 500 -2 * Loglike = 708.288648 Burning in for 450 iterations out of 500 -2 * Loglike = 713.781418 Burning in for 500 iterations out of 500 -2 * Loglike = 710.296879 ERAS G30 LINK 0 G30 ERAS 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.501989 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.867953 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 704.539996 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 712.873353 Actual update 250 of 5000, Stored update 250 of 5000 /nogui option ignored -2 * Loglike = 707.792058 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 721.627341 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 703.248680 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 711.312486 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 709.013898 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 733.198151 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 732.97 S.D. = 2.6811 S.E.M. = 0.037916 ECHO 0 Execution completed -2 * Loglike = 704.455061 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 706.856552 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.464920 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 705.620827 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 704.045604 Actual update 750 of 5000, Stored update 750 of 5000 ECHO 0 -2 * Loglike = 713.352667 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 705.573122 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 711.871095 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 706.301352 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 714.521400 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.427428 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 713.425573 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 707.896798 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 709.815613 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 710.477387 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 708.419197 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 713.463700 Actual update 1350 of 5000, Stored update 1350 of 5000 /nogui option ignored -2 * Loglike = 713.509957 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 714.779630 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 707.395652 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 714.195027 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 707.972601 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 713.604735 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 706.803784 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 -2 * Loglike = 712.005853 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 705.151075 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 706.385890 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 706.604067 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 /nogui option ignored -2 * Loglike = 706.685382 Actual update 1950 of 5000, Stored update 1950 of 5000 /nogui option ignored -2 * Loglike = 718.632422 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 712.745814 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.424647 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 710.643863 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 707.815782 Actual update 2200 of 5000, Stored update 2200 of 5000 ECHO 0 -2 * Loglike = 708.028191 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 708.934154 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 712.014506 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 721.530776 Actual update 2400 of 5000, Stored update 2400 of 5000 /nogui option ignored -2 * Loglike = 705.864936 Actual update 2450 of 5000, Stored update 2450 of 5000 ECHO 0 -2 * Loglike = 705.545904 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 707.841864 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 712.610244 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 712.662985 Actual update 2650 of 5000, Stored update 2650 of 5000 /nogui option ignored Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 710.873087 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 709.787059 Actual update 2750 of 5000, Stored update 2750 of 5000 ECHO 0 -2 * Loglike = 711.484131 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 715.141121 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 709.328294 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 710.231151 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 710.788589 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 706.939874 Actual update 3050 of 5000, Stored update 3050 of 5000 ECHO 0 -2 * Loglike = 709.431682 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 707.160953 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 708.124023 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 709.438361 Actual update 3250 of 5000, Stored update 3250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 711.973853 Actual update 3300 of 5000, Stored update 3300 of 5000 Burning in for 50 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 NEXT iteration 2 Convergence achieved ECHO 0 Execution completed -2 * Loglike = 719.365950 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 709.578304 Burning in for 100 iterations out of 500 -2 * Loglike = 705.943322 Burning in for 150 iterations out of 500 -2 * Loglike = 708.464599 Burning in for 200 iterations out of 500 -2 * Loglike = 706.031366 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 710.617787 Burning in for 250 iterations out of 500 -2 * Loglike = 707.259608 Burning in for 300 iterations out of 500 -2 * Loglike = 712.518919 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 706.318042 Burning in for 350 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 712.787353 Actual update 3500 of 5000, Stored update 3500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 714.162004 Burning in for 400 iterations out of 500 -2 * Loglike = 711.077770 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 694.481491 Burning in for 100 iterations out of 500 -2 * Loglike = 710.730514 Burning in for 450 iterations out of 500 -2 * Loglike = 705.596620 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 692.075981 Burning in for 150 iterations out of 500 -2 * Loglike = 709.182990 Burning in for 500 iterations out of 500 -2 * Loglike = 706.870516 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 694.775730 Burning in for 200 iterations out of 500 -2 * Loglike = 711.462580 -2 * Loglike = 706.057104 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 696.920007 Burning in for 250 iterations out of 500 -2 * Loglike = 715.060618 Actual update 3750 of 5000, Stored update 3750 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.333691 Burning in for 300 iterations out of 500 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 704.714668 Actual update 3800 of 5000, Stored update 3800 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 695.851887 Burning in for 350 iterations out of 500 -2 * Loglike = 713.218815 Actual update 100 of 5000, Stored update 100 of 5000 /nogui option ignored -2 * Loglike = 707.681757 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 701.413399 Burning in for 100 iterations out of 500 -2 * Loglike = 701.090659 Burning in for 400 iterations out of 500 -2 * Loglike = 709.459532 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 698.397899 Burning in for 150 iterations out of 500 -2 * Loglike = 696.978188 Burning in for 450 iterations out of 500 -2 * Loglike = 714.872966 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 705.091075 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.397677 Burning in for 500 iterations out of 500 -2 * Loglike = 699.330522 Burning in for 200 iterations out of 500 -2 * Loglike = 711.514725 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 721.915413 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.106086 Burning in for 250 iterations out of 500 -2 * Loglike = 694.874960 -2 * Loglike = 708.443261 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 704.500597 Burning in for 300 iterations out of 500 -2 * Loglike = 712.954280 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 = 723.634442 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 701.524252 Burning in for 350 iterations out of 500 -2 * Loglike = 698.817962 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 705.146784 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 702.921509 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 707.541495 Burning in for 400 iterations out of 500 -2 * Loglike = 697.562148 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 707.984278 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 720.511541 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.183617 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 694.472017 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 705.911312 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 707.768870 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 697.934918 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 706.008526 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.941200 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 697.220480 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 708.653732 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 705.943408 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.560797 Burning in for 450 iterations out of 500 -2 * Loglike = 707.757746 Actual update 350 of 5000, Stored update 350 of 5000 ECHO 0 -2 * Loglike = 706.222807 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 709.740637 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.212798 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 709.324290 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 703.650196 Burning in for 500 iterations out of 500 -2 * Loglike = 714.332869 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.750409 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 703.712460 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 710.143467 -2 * Loglike = 717.883064 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.786205 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 709.259759 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 707.655366 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 690.819022 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 = 706.005239 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 712.340324 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 694.660588 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 701.235476 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 708.925916 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 709.782995 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 693.529780 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 713.582440 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 709.191073 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 705.987464 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 694.821862 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 709.372583 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 722.548896 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.836300 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 689.955450 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 706.687294 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 712.063868 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 696.293507 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 708.010362 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 706.179934 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.014720 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 710.468372 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 707.896266 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 698.571819 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 711.118982 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 715.334181 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 694.735753 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 713.616678 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 713.623809 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 696.252012 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 699.577842 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 707.911001 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 707.585347 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.277038 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 711.911701 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 708.841111 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 693.972677 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 713.013979 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.453683 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 695.996335 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.276109 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 698.893151 Actual update 550 of 5000, Stored update 550 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 693.083526 Actual update 1200 of 5000, Stored update 1200 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 711.466924 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 699.120322 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 693.925291 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 694.182572 Burning in for 100 iterations out of 500 -2 * Loglike = 698.259151 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.716319 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 696.978322 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 687.898428 Burning in for 150 iterations out of 500 -2 * Loglike = 710.882280 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 711.058526 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 694.289006 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 695.607271 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 688.968299 Burning in for 200 iterations out of 500 -2 * Loglike = 722.125140 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.059876 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 691.808634 Burning in for 250 iterations out of 500 -2 * Loglike = 704.720710 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 697.036422 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 709.248956 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.405368 Burning in for 300 iterations out of 500 -2 * Loglike = 701.776813 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 693.808391 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 715.718392 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 692.340339 Burning in for 350 iterations out of 500 -2 * Loglike = 700.788877 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 694.387632 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 708.876157 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 696.240360 Burning in for 400 iterations out of 500 -2 * Loglike = 696.255610 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 712.368768 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 694.584053 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 690.202200 Burning in for 450 iterations out of 500 -2 * Loglike = 697.740113 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 711.569486 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 695.660633 Burning in for 500 iterations out of 500 -2 * Loglike = 693.850138 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 705.220817 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 708.699551 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 692.784100 -2 * Loglike = 693.831063 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 710.975087 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 704.841469 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 695.119843 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 704.377122 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 701.126809 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 705.356672 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.72 S.D. = 4.4501 S.E.M. = 0.062934 ECHO 0 Execution completed -2 * Loglike = 693.647029 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 = 705.697237 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 702.907726 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.092100 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 692.788619 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 702.158660 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 705.947191 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 695.363183 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.883294 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 691.445081 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 717.917060 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.684400 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 708.909949 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 701.725590 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 686.026675 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 694.520890 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 705.149343 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 697.360391 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 694.162661 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 697.772898 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 709.533449 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 689.172169 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 702.207507 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 712.128423 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.188378 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 703.444344 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 709.796160 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 709.535702 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.240455 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 711.185253 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 685.013760 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 708.456688 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 693.384930 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 712.556157 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 694.178909 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 715.985671 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 690.034505 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 692.232493 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 709.050283 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 686.128278 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 713.558866 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 701.370697 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.629850 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 687.848513 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 706.739682 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 694.785821 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 712.038030 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 688.526293 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 694.048107 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 709.922680 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.937567 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 687.334340 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 700.220333 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 716.318370 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 713.231837 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 685.647398 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 712.293581 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 695.834988 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.913813 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 709.631689 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 695.106497 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 691.846886 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 701.261361 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 708.533045 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 687.804630 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 703.595348 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 694.483394 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 708.608508 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.210535 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 692.516726 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 697.079953 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 710.892910 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 711.501177 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 688.182697 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 697.712545 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 704.357984 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 718.987509 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 695.448330 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 696.245767 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 708.257646 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 698.318144 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 707.186093 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 695.239895 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 696.079707 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 693.347988 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 707.546836 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 700.750185 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 694.278717 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 694.116571 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 710.231948 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 705.726331 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 694.075001 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 689.512241 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 710.302098 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 693.306519 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 710.565609 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 691.825887 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.267042 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.144326 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 712.094416 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 692.439029 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 696.674837 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 708.518984 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 689.327805 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 701.150592 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 698.307376 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 728.139313 Actual update 3250 of 5000, Stored update 3250 of 5000 /nogui option ignored -2 * Loglike = 694.576762 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 693.590084 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 707.550720 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 713.234936 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 689.794620 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 692.276617 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 700.573493 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 717.363944 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 698.572856 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.044273 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 700.892638 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 697.658879 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 706.114702 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 704.045687 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 689.416194 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 698.186770 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 714.119382 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 711.894407 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 691.045837 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 693.455407 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.219480 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 713.006175 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 694.850053 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 689.468458 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 702.015906 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 696.957175 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 712.557860 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 694.283707 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.834410 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 688.138217 Actual update 1700 of 5000, Stored update 1700 of 5000 ECHO 0 -2 * Loglike = 703.750339 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 701.772704 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 707.480378 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 690.024087 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 693.190876 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 703.181739 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 686.509850 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 707.647541 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 707.073626 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 693.746132 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 686.145666 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 707.340032 Actual update 2950 of 5000, Stored update 2950 of 5000 /nogui option ignored -2 * Loglike = 705.788168 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 688.678620 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 699.801782 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 703.798670 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.540994 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 696.162404 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.510727 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 689.142144 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 718.315248 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 692.303391 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 699.451268 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 700.288622 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 700.901161 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 720.824971 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 694.964035 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 695.592023 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 717.766395 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 700.436256 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 693.217887 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 690.904770 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 712.317068 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.268665 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 694.550934 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 691.807634 Actual update 2150 of 5000, Stored update 2150 of 5000 ECHO 0 -2 * Loglike = 707.345653 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 706.452793 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 695.705060 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 689.631264 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 708.150879 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 710.930546 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 706.941920 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 689.864354 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.408544 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 691.306042 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 713.979973 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 711.071391 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 690.509046 Actual update 2350 of 5000, Stored update 2350 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 706.663025 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 700.070059 Actual update 3500 of 5000, Stored update 3500 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 706.694945 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 705.066367 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.468348 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 691.032834 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 695.828817 Burning in for 100 iterations out of 500 -2 * Loglike = 687.759840 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 696.195222 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 718.103700 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 697.331729 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.931864 Burning in for 150 iterations out of 500 /nogui option ignored -2 * Loglike = 687.457285 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 698.881010 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 709.452079 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.310618 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.995347 Burning in for 200 iterations out of 500 -2 * Loglike = 690.283830 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.253517 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.396598 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 713.464467 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 696.389404 Burning in for 250 iterations out of 500 -2 * Loglike = 693.761647 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 705.094810 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 697.829712 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 694.813682 Burning in for 300 iterations out of 500 -2 * Loglike = 713.838626 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 691.558280 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 704.280111 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 694.444852 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 694.480229 Burning in for 350 iterations out of 500 -2 * Loglike = 705.363264 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 692.587885 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 710.669314 Actual update 3850 of 5000, Stored update 3850 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 700.682691 Burning in for 400 iterations out of 500 -2 * Loglike = 695.528063 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 716.359953 Actual update 4550 of 5000, Stored update 4550 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 690.847738 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 715.241213 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 695.547063 Burning in for 450 iterations out of 500 -2 * Loglike = 698.984117 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 727.108522 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 724.713713 Burning in for 100 iterations out of 500 -2 * Loglike = 694.553364 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 705.728415 Actual update 3950 of 5000, Stored update 3950 of 5000 ECHO 0 -2 * Loglike = 696.430934 Burning in for 500 iterations out of 500 -2 * Loglike = 694.632753 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 706.418335 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 720.761654 Burning in for 150 iterations out of 500 -2 * Loglike = 693.359367 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 705.630722 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 697.054076 -2 * Loglike = 697.037322 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 715.262894 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 721.079046 Burning in for 200 iterations out of 500 -2 * Loglike = 691.182301 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 704.277878 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 705.812582 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 694.020044 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 = 722.046843 Burning in for 250 iterations out of 500 -2 * Loglike = 692.886341 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 700.031439 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 707.916467 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 692.808710 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 697.752959 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 727.785273 Burning in for 300 iterations out of 500 -2 * Loglike = 687.756308 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 713.251755 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 707.590933 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 692.436296 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 695.067388 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 724.397474 Burning in for 350 iterations out of 500 -2 * Loglike = 688.490777 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.439495 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 722.393099 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 699.187695 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 690.536922 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 730.339967 Burning in for 400 iterations out of 500 -2 * Loglike = 689.823225 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 696.155996 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 712.041728 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 694.964253 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.682523 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 724.941065 Burning in for 450 iterations out of 500 -2 * Loglike = 689.359738 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 724.264243 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 713.806420 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 693.969333 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.516115 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 727.359088 Burning in for 500 iterations out of 500 -2 * Loglike = 690.187613 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 706.526115 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 709.287207 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 729.451804 -2 * Loglike = 703.798005 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 690.149095 Actual update 3250 of 5000, Stored update 3250 of 5000 Echoing is ON BATC 1 Batch mode is ON MAXI 2 STAR iteration 0 iteration 1 Convergence achieved TOLE 2 MAXI 20 BATC 1 Batch mode is ON NEXT iteration 2 Convergence achieved ECHO 0 Echoing is ON MCMC 0 500 1 5.8 50 10 G30[1] G30[2] 1 1 1 1 1 1 BURNING IN... -2 * Loglike = 688.847641 Actual update 400 of 5000, Stored update 400 of 5000 Burning in for 50 iterations out of 500 -2 * Loglike = 705.316846 Actual update 4450 of 5000, Stored update 4450 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 693.941199 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 699.195741 Burning in for 100 iterations out of 500 -2 * Loglike = 701.624115 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 701.184787 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 724.038916 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 701.930602 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 696.790036 Burning in for 150 iterations out of 500 -2 * Loglike = 714.094264 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 692.440848 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 727.501127 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 696.927634 Burning in for 200 iterations out of 500 -2 * Loglike = 687.991171 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 705.919247 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 700.763405 Burning in for 250 iterations out of 500 -2 * Loglike = 690.413250 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 719.006685 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 701.979690 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 694.503584 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 704.644063 Burning in for 300 iterations out of 500 -2 * Loglike = 691.507262 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 723.335479 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 711.102272 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 692.661648 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 701.660900 Burning in for 350 iterations out of 500 -2 * Loglike = 691.385587 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 722.095093 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 697.958336 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 692.823372 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 705.668776 Burning in for 400 iterations out of 500 -2 * Loglike = 693.152029 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 737.647057 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 700.955517 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 687.518939 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 702.402124 Burning in for 450 iterations out of 500 -2 * Loglike = 689.666998 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 718.310960 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.777187 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 703.290284 Burning in for 500 iterations out of 500 -2 * Loglike = 687.711354 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 696.918118 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 731.711857 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 714.932708 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 705.197060 -2 * Loglike = 687.967488 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 691.355776 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 723.795349 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 710.589294 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 697.027669 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.474098 Actual update 900 of 5000, Stored update 900 of 5000 ERAS G30 LINK 0 G30 ERAS c1090 c1091 MCMC 1 5000 1 c1090 c1091 c1003 c1004 1 1 Actual update 50 of 5000, Stored update 50 of 5000 -2 * Loglike = 720.857763 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 708.195087 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 693.132781 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 686.510340 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 698.422161 Actual update 100 of 5000, Stored update 100 of 5000 -2 * Loglike = 720.161536 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 704.052174 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 710.64 S.D. = 5.0266 S.E.M. = 0.071087 ECHO 0 Execution completed -2 * Loglike = 692.792760 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.263161 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 714.233507 Actual update 150 of 5000, Stored update 150 of 5000 -2 * Loglike = 692.940511 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 694.935398 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 710.083873 Actual update 200 of 5000, Stored update 200 of 5000 -2 * Loglike = 720.266856 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 701.700339 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 702.144460 Actual update 250 of 5000, Stored update 250 of 5000 -2 * Loglike = 695.574200 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 695.867378 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 724.423086 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 697.006058 Actual update 300 of 5000, Stored update 300 of 5000 -2 * Loglike = 694.213774 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 686.477159 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 712.594946 Actual update 350 of 5000, Stored update 350 of 5000 -2 * Loglike = 690.413715 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 694.779984 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 694.730085 Actual update 400 of 5000, Stored update 400 of 5000 -2 * Loglike = 698.303044 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.245675 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 707.595761 Actual update 450 of 5000, Stored update 450 of 5000 -2 * Loglike = 689.467913 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 694.688440 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 699.284521 Actual update 500 of 5000, Stored update 500 of 5000 -2 * Loglike = 687.589929 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 697.194803 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 696.485356 Actual update 550 of 5000, Stored update 550 of 5000 -2 * Loglike = 690.566250 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 695.948357 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 698.420274 Actual update 600 of 5000, Stored update 600 of 5000 -2 * Loglike = 691.449489 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 694.459923 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 695.31 S.D. = 2.4207 S.E.M. = 0.034233 ECHO 0 Execution completed -2 * Loglike = 707.946189 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 697.326676 Actual update 650 of 5000, Stored update 650 of 5000 -2 * Loglike = 695.911846 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.759656 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 707.937415 Actual update 700 of 5000, Stored update 700 of 5000 -2 * Loglike = 718.222149 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 698.883943 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 693.525578 Actual update 750 of 5000, Stored update 750 of 5000 -2 * Loglike = 695.366788 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 726.265625 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 690.824892 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 712.875146 Actual update 800 of 5000, Stored update 800 of 5000 -2 * Loglike = 721.510822 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 694.338852 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 695.363014 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 698.883367 Actual update 850 of 5000, Stored update 850 of 5000 -2 * Loglike = 724.196509 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 692.802743 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 699.513710 Actual update 900 of 5000, Stored update 900 of 5000 -2 * Loglike = 698.367290 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 724.780163 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 688.450375 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 701.079983 Actual update 950 of 5000, Stored update 950 of 5000 -2 * Loglike = 699.175953 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 705.04 S.D. = 5.0746 S.E.M. = 0.071766 ECHO 0 Execution completed -2 * Loglike = 730.654799 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 709.833338 Actual update 1000 of 5000, Stored update 1000 of 5000 -2 * Loglike = 696.841804 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 726.254686 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 695.591536 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 698.510074 Actual update 1050 of 5000, Stored update 1050 of 5000 -2 * Loglike = 726.365816 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 693.950153 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.911591 Actual update 1100 of 5000, Stored update 1100 of 5000 -2 * Loglike = 688.479045 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 690.689707 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 722.693398 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 699.565599 Actual update 1150 of 5000, Stored update 1150 of 5000 -2 * Loglike = 688.536572 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 690.207314 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 700.312897 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 693.612383 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 724.775394 Actual update 1200 of 5000, Stored update 1200 of 5000 -2 * Loglike = 692.040780 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 700.902557 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 695.013229 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 724.341238 Actual update 1250 of 5000, Stored update 1250 of 5000 -2 * Loglike = 691.962508 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 689.456798 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 695.022850 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 720.565838 Actual update 1300 of 5000, Stored update 1300 of 5000 -2 * Loglike = 704.591508 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 691.629772 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 700.467872 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 725.969596 Actual update 1350 of 5000, Stored update 1350 of 5000 -2 * Loglike = 695.409481 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 708.896001 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 723.857002 Actual update 1400 of 5000, Stored update 1400 of 5000 -2 * Loglike = 691.456364 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 711.503383 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 739.886734 Actual update 1450 of 5000, Stored update 1450 of 5000 -2 * Loglike = 695.815249 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 711.757713 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 723.759593 Actual update 1500 of 5000, Stored update 1500 of 5000 -2 * Loglike = 696.054984 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 710.047822 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 718.663410 Actual update 1550 of 5000, Stored update 1550 of 5000 -2 * Loglike = 695.444697 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 696.029371 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 723.172889 Actual update 1600 of 5000, Stored update 1600 of 5000 -2 * Loglike = 694.884833 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 703.760868 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 730.601763 Actual update 1650 of 5000, Stored update 1650 of 5000 -2 * Loglike = 696.826186 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 697.112858 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 725.360129 Actual update 1700 of 5000, Stored update 1700 of 5000 -2 * Loglike = 707.319362 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 702.939766 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 722.811495 Actual update 1750 of 5000, Stored update 1750 of 5000 -2 * Loglike = 694.139937 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 718.727706 Actual update 1800 of 5000, Stored update 1800 of 5000 -2 * Loglike = 692.648970 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 697.447964 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 718.920942 Actual update 1850 of 5000, Stored update 1850 of 5000 -2 * Loglike = 691.985151 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 722.185364 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 701.813581 Actual update 1900 of 5000, Stored update 1900 of 5000 -2 * Loglike = 698.525475 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 699.972881 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 723.298760 Actual update 1950 of 5000, Stored update 1950 of 5000 -2 * Loglike = 697.382910 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 708.876109 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 734.114303 Actual update 2000 of 5000, Stored update 2000 of 5000 -2 * Loglike = 694.173358 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 701.565578 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 723.628695 Actual update 2050 of 5000, Stored update 2050 of 5000 -2 * Loglike = 695.330858 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 721.055278 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 698.719231 Actual update 2100 of 5000, Stored update 2100 of 5000 -2 * Loglike = 694.846116 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 703.115391 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 723.431906 Actual update 2150 of 5000, Stored update 2150 of 5000 -2 * Loglike = 698.047421 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 725.257620 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 702.913280 Actual update 2200 of 5000, Stored update 2200 of 5000 -2 * Loglike = 705.407036 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 726.122448 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 700.788611 Actual update 2250 of 5000, Stored update 2250 of 5000 -2 * Loglike = 724.857778 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 694.382248 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 701.145428 Actual update 2300 of 5000, Stored update 2300 of 5000 -2 * Loglike = 721.818178 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 694.983051 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 704.364156 Actual update 2350 of 5000, Stored update 2350 of 5000 -2 * Loglike = 691.899526 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 734.967032 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.366194 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 709.014564 Actual update 2400 of 5000, Stored update 2400 of 5000 -2 * Loglike = 695.590090 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 721.493094 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 687.157802 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 691.93 S.D. = 4.0550 S.E.M. = 0.057347 ECHO 0 Execution completed -2 * Loglike = 696.729681 Actual update 2450 of 5000, Stored update 2450 of 5000 -2 * Loglike = 721.161331 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 692.695342 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 694.168924 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 699.654758 Actual update 2500 of 5000, Stored update 2500 of 5000 -2 * Loglike = 724.999216 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 700.345209 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 726.222778 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 697.945071 Actual update 2550 of 5000, Stored update 2550 of 5000 -2 * Loglike = 720.604472 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 699.005341 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 716.485177 Actual update 2600 of 5000, Stored update 2600 of 5000 -2 * Loglike = 724.987103 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 704.272062 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 722.861090 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 704.378882 Actual update 2650 of 5000, Stored update 2650 of 5000 -2 * Loglike = 728.625453 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 691.661517 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 725.664436 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 702.178311 Actual update 2700 of 5000, Stored update 2700 of 5000 -2 * Loglike = 698.244385 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 722.897266 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 697.904610 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 698.715645 Actual update 2750 of 5000, Stored update 2750 of 5000 -2 * Loglike = 726.829914 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 697.768341 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 721.592823 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 704.574112 Actual update 2800 of 5000, Stored update 2800 of 5000 -2 * Loglike = 722.672179 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 701.421146 Actual update 2850 of 5000, Stored update 2850 of 5000 -2 * Loglike = 722.576023 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 690.104641 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 699.124626 Actual update 2900 of 5000, Stored update 2900 of 5000 -2 * Loglike = 723.210428 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 690.810554 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.331765 Actual update 2950 of 5000, Stored update 2950 of 5000 -2 * Loglike = 722.907692 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 691.363092 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 708.605683 Actual update 3000 of 5000, Stored update 3000 of 5000 -2 * Loglike = 722.882164 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 699.719949 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 695.908934 Actual update 3050 of 5000, Stored update 3050 of 5000 -2 * Loglike = 727.863459 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 690.705344 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 697.643405 Actual update 3100 of 5000, Stored update 3100 of 5000 -2 * Loglike = 734.264533 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 700.016488 Actual update 3150 of 5000, Stored update 3150 of 5000 -2 * Loglike = 698.462345 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 721.394469 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 697.972920 Actual update 3200 of 5000, Stored update 3200 of 5000 -2 * Loglike = 728.372622 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 702.854120 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 696.825022 Actual update 3250 of 5000, Stored update 3250 of 5000 -2 * Loglike = 723.324734 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 702.849153 Actual update 3300 of 5000, Stored update 3300 of 5000 -2 * Loglike = 701.005320 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 725.371638 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 713.784672 Actual update 3350 of 5000, Stored update 3350 of 5000 -2 * Loglike = 719.349233 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 697.236467 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 698.349544 Actual update 3400 of 5000, Stored update 3400 of 5000 -2 * Loglike = 719.899287 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 702.817177 Actual update 3450 of 5000, Stored update 3450 of 5000 -2 * Loglike = 692.093750 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 720.785543 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 698.421781 Actual update 3500 of 5000, Stored update 3500 of 5000 -2 * Loglike = 728.010840 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 693.395071 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 702.066472 Actual update 3550 of 5000, Stored update 3550 of 5000 -2 * Loglike = 722.621002 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 700.947336 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 695.616119 Actual update 3600 of 5000, Stored update 3600 of 5000 -2 * Loglike = 728.151795 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 697.138400 Actual update 3650 of 5000, Stored update 3650 of 5000 -2 * Loglike = 692.748394 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 728.648084 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 698.678940 Actual update 3700 of 5000, Stored update 3700 of 5000 -2 * Loglike = 691.332092 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 704.142301 Actual update 3750 of 5000, Stored update 3750 of 5000 -2 * Loglike = 724.968126 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 700.343557 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 700.168379 Actual update 3800 of 5000, Stored update 3800 of 5000 -2 * Loglike = 695.285394 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 729.250308 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 708.345728 Actual update 3850 of 5000, Stored update 3850 of 5000 -2 * Loglike = 700.039444 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 716.053930 Actual update 3900 of 5000, Stored update 3900 of 5000 -2 * Loglike = 720.882496 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 699.499404 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 712.399997 Actual update 3950 of 5000, Stored update 3950 of 5000 -2 * Loglike = 690.859552 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 723.037050 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 705.176798 Actual update 4000 of 5000, Stored update 4000 of 5000 -2 * Loglike = 701.763171 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 732.151507 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 709.068634 Actual update 4050 of 5000, Stored update 4050 of 5000 -2 * Loglike = 700.002702 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 697.934957 Actual update 4100 of 5000, Stored update 4100 of 5000 -2 * Loglike = 721.569747 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 691.942418 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 708.488445 Actual update 4150 of 5000, Stored update 4150 of 5000 -2 * Loglike = 719.712445 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 700.060187 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 697.703552 Actual update 4200 of 5000, Stored update 4200 of 5000 -2 * Loglike = 731.797290 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 691.938878 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 695.026551 Actual update 4250 of 5000, Stored update 4250 of 5000 -2 * Loglike = 720.880845 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 693.631446 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 714.358211 Actual update 4300 of 5000, Stored update 4300 of 5000 -2 * Loglike = 728.143548 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 694.429091 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 696.375244 Actual update 4350 of 5000, Stored update 4350 of 5000 -2 * Loglike = 702.336780 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 725.553188 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 703.222991 Actual update 4400 of 5000, Stored update 4400 of 5000 -2 * Loglike = 695.506721 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 706.783558 Actual update 4450 of 5000, Stored update 4450 of 5000 -2 * Loglike = 722.950261 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 704.114223 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 701.008719 Actual update 4500 of 5000, Stored update 4500 of 5000 -2 * Loglike = 732.695863 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 710.479542 Actual update 4550 of 5000, Stored update 4550 of 5000 -2 * Loglike = 703.302742 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 727.051280 Actual update 4600 of 5000, Stored update 4600 of 5000 -2 * Loglike = 701.460753 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 700.308724 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 722.701460 Actual update 4650 of 5000, Stored update 4650 of 5000 -2 * Loglike = 695.715898 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 699.707808 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 727.431528 Actual update 4700 of 5000, Stored update 4700 of 5000 -2 * Loglike = 701.003940 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 720.874846 Actual update 4750 of 5000, Stored update 4750 of 5000 -2 * Loglike = 715.914673 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 711.206242 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 722.207247 Actual update 4800 of 5000, Stored update 4800 of 5000 -2 * Loglike = 702.262773 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 722.433170 Actual update 4850 of 5000, Stored update 4850 of 5000 -2 * Loglike = 730.476392 Actual update 4900 of 5000, Stored update 4900 of 5000 -2 * Loglike = 723.606779 Actual update 4950 of 5000, Stored update 4950 of 5000 -2 * Loglike = 728.735983 Actual update 5000 of 5000, Stored update 5000 of 5000 -2 * Loglike = 690.355329 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 695.81 S.D. = 4.1678 S.E.M. = 0.058942 ECHO 0 Execution completed -2 * Loglike = 695.946291 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 702.89 S.D. = 5.5708 S.E.M. = 0.078783 ECHO 0 Execution completed -2 * Loglike = 719.052784 PUPN c1003 c1004 AVER c1091 b99 b100 Count = 5000 Average = 724.88 S.D. = 4.2006 S.E.M. = 0.059406 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.86 30 -0.47 87 sigma2_u 7.57 10 -24.30 71 sigma2_e 39.00 40 -2.50 95 > cat("Simulation results using MCMC\n") Simulation results using MCMC > MCMC_results Mean_across_simus Actual Percent_bias Percent_interval_coverage beta0 29.82 30 -0.6 92 sigma2_u 13.85 10 38.5 86 sigma2_e 40.36 40 0.9 96 > > # Investigating median estimates with Gamma(epsilon, epsilon) priors > > Mean_across_simus <- round(c(mean(MCMC_median$RP2_var_Intercept), + mean(MCMC_median$RP1_var_Intercept)), 2) > Actual <- tail(Actual, -1) > Percent_bias <- round(-100 * (1 - Mean_across_simus/Actual), 2) > Percent_interval_coverage <- tail(Percent_interval_coverage, -1) > MCMC_results2 <- cbind(Mean_across_simus, Actual, Percent_bias, Percent_interval_coverage) > rownames(MCMC_results2) <- c("sigma2_u", "sigma2_e") > cat("Simulation results based on median MCMC estimates\n") Simulation results based on median MCMC estimates > MCMC_results2 Mean_across_simus Actual Percent_bias Percent_interval_coverage sigma2_u 9.20 10 -8.00 86 sigma2_e 39.79 40 -0.52 96 > > # Chapter learning outcomes . . . . . . . . . . . . . . . . . . . . . . . 96 > > > > > > ############################################################################ > > proc.time() user system elapsed 3.67 0.35 23.53